/* ==========================================================================
   LOVEMETRICS MASTER STYLESHEET (MOBILE OPTIMIZED V2.0)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* --- ANA RENK PALETİ --- */
    --bg-dark: #050002;
    --surface: #0F0205;
    --primary: #FF2E63;
    --primary-hover: #D61C4E;
    --primary-glow: rgba(255, 46, 99, 0.5);
    
    /* --- YARDIMCI RENKLER --- */
    --text-main: #FFFFFF;
    --text-muted: #FFCCD5;
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 46, 99, 0.5);
    
    /* --- EFEKTLER --- */
    --glass-bg: rgba(20, 0, 5, 0.6);
    --card-bg: rgba(255, 255, 255, 0.03);

    /* --- BENTO İKONLARI --- */
    --c-purple: #D500F9;
    --c-orange: #FF9F1C;
    --c-blue: #00E5FF;
    --c-green: #00E676;
    --c-gold: #FFD700;

    /* --- TİPOGRAFİ --- */
    --font: 'Outfit', sans-serif;
}

/* --- TEMEL AYARLAR --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font); }

html { scroll-behavior: smooth; width: 100%; overflow-x: hidden; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden !important;
    line-height: 1.6;
    font-size: 16px;
    position: relative;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }

/* --- ARKA PLAN EFEKTLERİ --- */
.ambient-glow {
    position: fixed; top: -20%; left: 20%; width: 70vw; height: 70vw;
    background: radial-gradient(circle, var(--primary-glow), transparent 60%);
    opacity: 0.2; z-index: -2; pointer-events: none; filter: blur(80px);
}

.grid-pattern {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px; z-index: -1; pointer-events: none; opacity: 0.4;
}

/* --- NAVBAR --- */
.sp-navbar {
    position: fixed; top: 0; width: 100%; height: 80px; z-index: 1000;
    background: rgba(5, 0, 2, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); display: flex; align-items: center; transition: all 0.3s ease;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-brand { display: flex; align-items: center; gap: 15px; }
.back-link { text-decoration: none; color: var(--text-muted); font-weight: 500; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; transition: 0.3s; opacity: 0.7; }
.back-link:hover { color: white; opacity: 1; }
.nav-sep { color: var(--border); font-size: 1.2rem; opacity: 0.5; }
.logo-link { text-decoration: none; color: white; font-weight: 800; font-size: 1.4rem; display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px; }
.logo-link i { color: var(--primary); font-size: 1.5rem; animation: pulse 2s infinite; }

.nav-menu { display: flex; gap: 35px; }
.nav-menu a { text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: 0.95rem; transition: 0.3s; position: relative; }
.nav-menu a:hover { color: white; }
.nav-menu a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
.nav-menu a:hover::after { width: 100%; }

.btn-download {
    background: var(--primary); color: white; padding: 12px 28px; border-radius: 30px;
    text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 46, 99, 0.3); border: 1px solid transparent; white-space: nowrap;
}
.btn-download:hover { transform: translateY(-2px); background: #ff477e; box-shadow: 0 6px 20px rgba(255, 46, 99, 0.5); }

/* --- HERO SECTION --- */
.hero { padding-top: 160px; padding-bottom: 100px; min-height: 100vh; display: flex; align-items: center; position: relative; }
.hero-wrapper { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }

.badge-pill {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 46, 99, 0.1);
    border: 1px solid rgba(255, 46, 99, 0.3); color: var(--primary); padding: 8px 18px;
    border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 30px; letter-spacing: 0.5px;
}
.dot-pulse { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); animation: pulse 2s infinite; }

h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; font-weight: 900; letter-spacing: -1.5px; color: white; }
.gradient-text { background: linear-gradient(135deg, var(--primary), #FFAB91); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.lead-text { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 45px; max-width: 580px; line-height: 1.7; }

.store-buttons { display: flex; gap: 15px; margin-bottom: 50px; }
.btn-store {
    display: flex; align-items: center; gap: 12px; padding: 14px 30px; background: white;
    color: black; border: none; border-radius: 16px; cursor: pointer; transition: all 0.3s ease;
}
.btn-store.outline { background: rgba(255,255,255,0.05); color: white; border: 1px solid var(--border); backdrop-filter: blur(5px); }
.btn-store:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255,255,255,0.1); }
.btn-store i { font-size: 1.8rem; }
.btn-text { display: flex; flex-direction: column; align-items: flex-start; }
.btn-text small { font-size: 0.7rem; opacity: 0.8; font-weight: 500; }
.btn-text span { font-size: 1rem; font-weight: 800; line-height: 1.1; }

.social-proof { display: flex; align-items: center; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.avatars { display: flex; }
.avatars img { width: 45px; height: 45px; border-radius: 50%; border: 3px solid var(--bg-dark); margin-left: -18px; transition: 0.3s; }
.avatars img:first-child { margin-left: 0; }
.social-proof p { font-size: 0.95rem; color: var(--text-muted); }
.social-proof strong { color: white; font-weight: 700; }

/* --- 3D PHONE --- */
.phone-container { position: relative; perspective: 1200px; z-index: 2; }
.phone-body {
    width: 340px; height: 680px; background: #000; border-radius: 60px; border: 10px solid #180305;
    position: relative; overflow: hidden; margin: 0 auto;
    box-shadow: 0 0 0 2px #333, 0 50px 120px rgba(255, 46, 99, 0.25);
    transform: rotateY(-12deg) rotateX(5deg); transition: transform 0.2s ease-out; z-index: 2;
}
.phone-body:hover { transform: rotateY(0deg) rotateX(0deg); }
.dynamic-island { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 110px; height: 32px; background: #000; border-radius: 20px; z-index: 20; }
.screen-content { width: 100%; height: 100%; background: linear-gradient(180deg, #1a0205 0%, #000000 100%); padding: 60px 24px 24px; color: white; position: relative; overflow: hidden; }

/* Phone Inner Widgets */
.app-top-bar { display: flex; justify-content: space-between; margin-bottom: 30px; font-weight: 700; font-size: 1.1rem; opacity: 0.9; }
.widget-pet { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 18px; display: flex; align-items: center; gap: 18px; margin-bottom: 20px; backdrop-filter: blur(10px); }
.pet-avatar { width: 65px; height: 65px; background: rgba(255, 46, 99, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; position: relative; }
.pet-info { flex: 1; }
.pet-info strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.pet-info span { display: block; font-size: 0.8rem; opacity: 0.7; margin-bottom: 8px; }
.xp-track { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.xp-fill { height: 100%; background: var(--primary); border-radius: 3px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 20px; }
.stat-card { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 20px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.stat-card i { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.stat-card.pink i { color: var(--primary); }
.stat-card.purple i { color: var(--c-purple); }
.stat-card strong { display: block; font-size: 1.2rem; font-weight: 800; }
.stat-card small { font-size: 0.75rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 1px; }

/* Screen Switcher */
.app-screen { position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 0; transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1); padding-top: 60px; transform: translateY(20px); }
.app-screen.active { opacity: 1; transform: translateY(0); z-index: 5; }
.story-view { text-align: center; padding-top: 20px; }
.story-bars { display: flex; gap: 5px; margin-bottom: 40px; padding: 0 10px; }
.s-bar { flex: 1; height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px; }
.s-bar.active { background: white; }
.big-icon { font-size: 5rem; color: var(--primary); margin-bottom: 30px; display: inline-block; filter: drop-shadow(0 0 20px var(--primary-glow)); }
.story-main h2 { font-size: 2rem; margin-bottom: 15px; }
.story-main p { font-size: 1rem; color: var(--text-muted); margin-bottom: 30px; }
.big-stat { font-size: 3.5rem; font-weight: 900; color: var(--primary); letter-spacing: -2px; }

/* Floaters */
.float-card {
    position: absolute; padding: 14px 24px; background: rgba(20, 5, 10, 0.95);
    border: 1px solid var(--primary); border-radius: 16px; backdrop-filter: blur(12px);
    display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.95rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5); z-index: 3; animation: float 6s infinite ease-in-out;
}
.float-card i { color: var(--primary); font-size: 1.2rem; }
.card-1 { top: 100px; left: -50px; animation-delay: 0s; }
.card-2 { bottom: 140px; right: -40px; animation-delay: 3s; }
.glow-behind { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 350px; height: 600px; background: var(--primary); filter: blur(120px); opacity: 0.15; z-index: 1; pointer-events: none; }

/* --- REVIEWS MARQUEE --- */
.reviews-section { padding: 40px 0; background: rgba(255, 255, 255, 0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; white-space: nowrap; position: relative; }
.marquee-wrapper { display: flex; overflow: hidden; }
.marquee-track { display: flex; gap: 30px; animation: scroll 20s linear infinite; }
.review-card { background: var(--glass-bg); border: 1px solid var(--border); padding: 15px 25px; border-radius: 50px; color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: center; backdrop-filter: blur(5px); }

/* --- CALCULATOR --- */
.calculator-section { padding: 100px 0; text-align: center; }
.calc-container { display: flex; justify-content: center; }
.calc-content { max-width: 600px; width: 100%; }
.calc-badge { display: inline-block; padding: 5px 15px; background: rgba(0, 229, 255, 0.1); color: #00E5FF; border: 1px solid rgba(0, 229, 255, 0.3); border-radius: 20px; font-size: 0.75rem; font-weight: 800; margin-bottom: 20px; }
.calc-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: 30px; padding: 40px; margin-top: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.input-group { display: flex; gap: 15px; align-items: center; margin-bottom: 25px; }
.input-group input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border); padding: 15px; border-radius: 15px; color: white; text-align: center; font-weight: bold; font-family: var(--font); outline: none; transition: 0.3s; }
.input-group input:focus { border-color: var(--primary); background: rgba(255, 46, 99, 0.05); }
.plus { font-size: 1.5rem; color: var(--text-muted); }
.btn-calc { width: 100%; padding: 15px; background: var(--primary); color: white; border: none; border-radius: 15px; font-weight: 800; font-size: 1.1rem; cursor: pointer; transition: 0.3s; }
.btn-calc:hover { transform: scale(1.02); box-shadow: 0 0 20px var(--primary-glow); }
.result-display { margin-top: 20px; font-size: 1.5rem; font-weight: 900; color: white; min-height: 30px; opacity: 0; transition: 0.5s; }
.result-display.show { opacity: 1; }
.calc-note { margin-top: 20px; font-size: 0.8rem; color: var(--text-muted); opacity: 0.6; }

/* --- BENTO GRID --- */
.section { padding: 140px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.text-highlight { color: var(--primary); }
.section-header p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.bento-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-auto-rows: minmax(280px, auto); gap: 25px; }
.bento-card { background: var(--glass-bg); border: 1px solid var(--border); border-radius: 35px; padding: 40px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.bento-card:hover { border-color: var(--primary); box-shadow: 0 20px 60px rgba(255, 46, 99, 0.1); transform: translateY(-8px); background: rgba(30, 5, 10, 0.8); }
.large { grid-column: span 1; grid-row: span 2; }
.wide { grid-column: span 2; }

.icon-box { width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 30px; }
.pink { background: rgba(255, 46, 99, 0.1); color: var(--primary); }
.orange { background: rgba(255, 159, 28, 0.1); color: var(--c-orange); }
.purple { background: rgba(213, 0, 249, 0.1); color: var(--c-purple); }
.blue { background: rgba(0, 229, 255, 0.1); color: var(--c-blue); }
.green { background: rgba(0, 230, 118, 0.1); color: var(--c-green); }
.gold { background: rgba(255, 215, 0, 0.1); color: var(--c-gold); }

.bento-card h3 { font-size: 1.8rem; margin-bottom: 12px; font-weight: 700; color: white; }
.bento-card p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.tags span { padding: 6px 14px; background: rgba(255,255,255,0.05); border-radius: 12px; font-size: 0.85rem; border: 1px solid var(--border); color: rgba(255,255,255,0.8); }

.visual-chart { display: flex; gap: 10px; align-items: flex-end; height: 120px; margin-top: 40px; opacity: 0.6; }
.bar { flex: 1; background: #333; border-radius: 6px 6px 0 0; transition: 0.5s; }
.bento-card:hover .b1 { height: 50%; } .bento-card:hover .b2 { height: 80%; background: var(--primary); } .bento-card:hover .b3 { height: 60%; } .bento-card:hover .b4 { height: 90%; }
.b1 { height: 40%; } .b2 { height: 70%; background: var(--primary); } .b3 { height: 50%; } .b4 { height: 80%; }
.card-row { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 100%; }
.premium-visual span { font-size: 2rem; font-weight: 900; color: white; opacity: 0.05; letter-spacing: 4px; border: 4px solid white; padding: 20px; border-radius: 20px; transform: rotate(-10deg); display: block; }

/* --- PRICING --- */
.pricing-section { background: linear-gradient(180deg, transparent 0%, rgba(20,0,5,0.3) 100%); padding-bottom: 160px; }
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 100px; }
.p-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 30px; padding: 50px 35px; position: relative; transition: 0.4s ease; display: flex; flex-direction: column; backdrop-filter: blur(10px); }
.p-card:hover { transform: translateY(-15px); }
.p-card.free:hover { border-color: rgba(255,255,255,0.3); }
.p-card.personal:hover { border-color: var(--primary); box-shadow: 0 15px 50px rgba(255, 46, 99, 0.15); }
.p-card.partner { background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(50, 40, 20, 0.5)); border: 1px solid rgba(255, 215, 0, 0.3); transform: scale(1.05); z-index: 2; }
.p-card.partner:hover { transform: scale(1.05) translateY(-10px); border-color: var(--c-gold); box-shadow: 0 15px 50px rgba(255, 215, 0, 0.15); }

.p-head { text-align: center; margin-bottom: 40px; }
.p-head h3 { font-size: 1.5rem; margin-bottom: 15px; color: white; font-weight: 700; }
.p-head .price { font-size: 3rem; font-weight: 900; color: white; margin-bottom: 5px; }
.p-head .price small { font-size: 1.1rem; font-weight: 500; color: var(--text-muted); }
.p-head p { font-size: 0.95rem; color: var(--text-muted); }
.p-badge { display: inline-block; background: var(--primary); color: white; font-size: 0.75rem; font-weight: 800; padding: 5px 15px; border-radius: 12px; margin-bottom: 20px; letter-spacing: 1px; }
.p-badge.gold { background: var(--c-gold); color: black; }
.p-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.p-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 1rem; color: rgba(255,255,255,0.9); }
.p-features i { color: var(--primary); font-size: 1.3rem; }
.p-features li.locked { color: rgba(255,255,255,0.3); text-decoration: line-through; }
.p-features li.locked i { color: rgba(255,255,255,0.2); }
.gold-icon { color: var(--c-gold) !important; }
.btn-plan { width: 100%; padding: 18px; border-radius: 18px; font-weight: 800; cursor: pointer; transition: 0.3s; text-align: center; text-decoration: none; display: block; font-size: 1.05rem; }
.btn-plan.basic { background: transparent; border: 1px solid var(--border); color: white; }
.btn-plan.basic:hover { border-color: white; }
.btn-plan.personal-btn { background: var(--primary); color: white; border: none; }
.btn-plan.personal-btn:hover { background: #ff477e; }
.btn-plan.partner-btn { background: linear-gradient(45deg, #FFD700, #FFA000); color: black; border: none; box-shadow: 0 5px 25px rgba(255, 215, 0, 0.25); }
.btn-plan.partner-btn:hover { transform: scale(1.02); box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4); }

/* --- COMPARISON TABLE --- */
.comparison-table h3 { text-align: center; font-size: 2.2rem; margin-bottom: 50px; font-weight: 800; }
.table-wrapper { overflow-x: auto; border-radius: 25px; border: 1px solid var(--border); background: rgba(255,255,255,0.02); padding: 10px; }
table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 700px; }
th, td { padding: 25px; text-align: center; border-bottom: 1px solid var(--border); color: rgba(255,255,255,0.8); font-size: 1.05rem; }
th { background: rgba(255,255,255,0.05); font-weight: 800; color: white; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
td:first-child, th:first-child { text-align: left; padding-left: 40px; font-weight: 700; color: white; position: sticky; left: 0; background: inherit; }
.highlight-th { color: var(--c-gold); background: rgba(255, 215, 0, 0.08); }
td:last-child { background: rgba(255, 215, 0, 0.03); font-weight: 700; color: white; border-bottom-color: rgba(255, 215, 0, 0.1); }
tr:last-child td { border-bottom: none; }

/* --- FAQ --- */
.faq-section { padding: 100px 0; position: relative; }
.faq-grid { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; margin-top: 50px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: var(--primary); transform: translateX(5px); }
.faq-item.active { background: rgba(255, 46, 99, 0.05); border-color: var(--primary); }
.faq-question { padding: 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 1.15rem; color: white; }
.faq-question i { color: var(--primary); font-size: 1.5rem; transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; padding: 0 25px; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 25px; }
.faq-answer p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; }

/* --- FOOTER --- */
footer { border-top: 1px solid var(--border); padding: 80px 0 40px; background: #020001; margin-top: 50px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-brand h3 { font-size: 2rem; margin-bottom: 10px; font-weight: 900; color: white; }
.footer-brand p { color: var(--text-muted); font-size: 1rem; }
.footer-brand a { color: var(--primary); text-decoration: none; font-weight: 700; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; transition: 0.3s; text-decoration: none; }
.footer-socials a:hover { background: var(--primary); transform: translateY(-5px); }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* --- ANIMATIONS --- */
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.fade-up { opacity: 1 !important; transform: none !important; }
html.js-loaded .fade-up { opacity: 0 !important; transform: translateY(40px) !important; transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
html.js-loaded .fade-up.visible { opacity: 1 !important; transform: translateY(0) !important; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }


/* ==========================================================================
   MOBILE & TABLET OPTIMIZATIONS (CRITICAL)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-content { max-width: 700px; margin: 0 auto; }
    .lead-text { margin: 0 auto 40px; }
    .store-buttons, .social-proof { justify-content: center; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .large { grid-column: span 2; grid-row: auto; }
    .wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    /* Navbar Simplify */
    .nav-menu { display: none; }
    .nav-container { padding: 0 15px; }
    .logo-link { font-size: 1.2rem; }
    .btn-download { padding: 8px 16px; font-size: 0.8rem; }
    
    /* Hero Adjustments */
    .hero { padding-top: 120px; }
    h1 { font-size: 3rem; }
    
    /* 3D Phone Scale Down */
    .phone-body { width: 300px; height: 600px; transform: none !important; margin-bottom: 20px; }
    .phone-container { transform: scale(0.9); margin-top: -30px; }
    .float-card { display: none; } /* Hide floating cards on mobile to save space */
    
    /* Grids & Flex Stacking */
    .bento-grid { grid-template-columns: 1fr; }
    .large, .wide { grid-column: span 1; }
    
    .pricing-cards { grid-template-columns: 1fr; }
    .p-card.partner { transform: scale(1); }
    
    /* Calculator */
    .input-group { flex-direction: column; }
    .plus { transform: rotate(90deg); margin: 10px 0; }
    
    /* Footer */
    .footer-top { flex-direction: column; gap: 30px; text-align: center; }
    
    /* Table Hint */
    .table-wrapper::after { content: '← Tabloyu Kaydır →'; display: block; text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; opacity: 0.7; }
    
    /* Section Headers */
    .section-header h2 { font-size: 2.5rem; }
}