/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Rose primary palette */
    --p-50:  #fff1f2;
    --p-100: #ffe4e6;
    --p-200: #fecdd3;
    --p-300: #fda4af;
    --p-400: #fb7185;
    --p-500: #f43f5e;
    --p-600: #e11d48;
    --p-700: #be123c;
    --p-800: #9f1239;
    --p-900: #881337;

    /* Surface – Light */
    --bg:            #ffffff;
    --bg-secondary:  #f8f9fb;
    --surface:       #ffffff;
    --surface-alt:   #f1f3f7;
    --border:        #e8eaef;
    --text-primary:  #0f172a;
    --text-secondary:#64748b;
    --text-muted:    #94a3b8;

    /* Radius */
    --radius-sm:  0.375rem;
    --radius-md:  0.5rem;
    --radius-lg:  0.75rem;
    --radius-xl:  1rem;
    --radius-2xl: 1.25rem;
    --radius-3xl: 1.75rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);

    --nav-h:    68px;
    --transition: 0.2s ease;
}

.dark {
    --bg:            #080d18;
    --bg-secondary:  #0d1422;
    --surface:       #101826;
    --surface-alt:   #161f30;
    --border:        #1c2a40;
    --text-primary:  #f1f5f9;
    --text-secondary:#94a3b8;
    --text-muted:    #475569;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.35);
    --shadow-md: 0 4px 12px rgba(0,0,0,.45);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.55);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.65);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
}

a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--p-500); border-radius: 999px; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3 { line-height: 1.15; font-weight: 800; letter-spacing: -0.025em; }

.gradient-text {
    background: linear-gradient(135deg, var(--p-400) 0%, var(--p-600) 60%, var(--p-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
section  { padding: 5rem 0; }

/* ── Reveal animation ─────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.dark .navbar { background: rgba(8,13,24,0.88); }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 34px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 2px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--p-500);
    border-radius: 999px;
    transform: scaleX(0);
    transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--p-600); }
.dark .nav-links a:hover,
.dark .nav-links a.active { color: var(--p-400); }
.nav-links a.active::after { transform: scaleX(1); }
.dark .nav-links a.active::after { background: var(--p-400); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

/* ── Nav buttons ── */
.btn-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text-secondary);
    transition: all var(--transition);
    flex-shrink: 0;
}
.btn-icon:hover { border-color: var(--p-300); color: var(--p-600); }
.dark .btn-icon:hover { border-color: rgba(244,63,94,.35); color: var(--p-400); }

.btn-ghost-sm {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.45rem 0.875rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    background: var(--surface);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-ghost-sm:hover { border-color: var(--p-300); color: var(--p-600); }
.dark .btn-ghost-sm:hover { border-color: rgba(244,63,94,.35); color: var(--p-400); }

.btn-primary-sm {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    padding: 0.45rem 0.875rem;
    border-radius: var(--radius-lg);
    background: var(--p-600);
    box-shadow: 0 3px 12px rgba(225,29,72,.3);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary-sm:hover {
    background: var(--p-700);
    box-shadow: 0 5px 18px rgba(225,29,72,.4);
    transform: translateY(-1px);
}

/* theme toggle icons */
.icon-sun, .icon-moon { display: block; }
.dark .icon-moon { display: none; }
.icon-sun         { display: none; }
.dark .icon-sun   { display: block; }

/* hamburger – shown only on mobile */
.hamburger { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════════════════════════════════════ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 190;
    background: var(--bg);
    padding-top: var(--nav-h);
    overflow-y: auto;
}
.mobile-menu.open { display: block; }

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem 2rem;
    gap: 0.25rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: var(--radius-xl);
    transition: background var(--transition), color var(--transition);
}
.mobile-link:hover,
.mobile-link.active { background: var(--surface-alt); color: var(--p-600); }
.dark .mobile-link.active { color: var(--p-400); }

.mobile-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }

.mobile-cta {
    background: var(--p-600);
    color: #fff !important;
    justify-content: center;
    margin-top: 0.5rem;
    box-shadow: 0 4px 16px rgba(225,29,72,.3);
}
.mobile-cta:hover { background: var(--p-700) !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.orb-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(225,29,72,.12) 0%, transparent 70%);
    top: -250px; left: 50%;
    transform: translateX(-50%);
}
.orb-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(124,58,237,.08) 0%, transparent 70%);
    bottom: -100px; right: -100px;
}
.dark .orb-1 { background: radial-gradient(circle, rgba(225,29,72,.08) 0%, transparent 70%); }
.dark .orb-2 { background: radial-gradient(circle, rgba(124,58,237,.06) 0%, transparent 70%); }

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.dark .hero-grid { opacity: 0.2; }

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

/* ── Hero content ── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--p-600);
    background: rgba(225,29,72,.07);
    border: 1.5px solid rgba(225,29,72,.18);
    padding: 0.35rem 0.875rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.dark .hero-eyebrow {
    color: var(--p-300);
    background: rgba(244,63,94,.1);
    border-color: rgba(244,63,94,.2);
}

.eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--p-500);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.4); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.25rem;
    max-width: 30rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--p-600);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(225,29,72,.35);
    transition: all var(--transition);
}
.btn-hero-primary:hover {
    background: var(--p-700);
    box-shadow: 0 8px 28px rgba(225,29,72,.45);
    transform: translateY(-2px);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition);
}
.btn-hero-ghost:hover {
    border-color: rgba(225,29,72,.3);
    background: var(--p-50);
    color: var(--p-700);
    transform: translateY(-2px);
}
.dark .btn-hero-ghost:hover {
    background: rgba(244,63,94,.08);
    border-color: rgba(244,63,94,.3);
    color: var(--p-300);
}

/* ── TV Mockup ── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-mockup {
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.tv-screen {
    background: #0d1220;
    border-radius: var(--radius-2xl) var(--radius-2xl) var(--radius-lg) var(--radius-lg);
    border: 2px solid #1e2d45;
    box-shadow:
        0 0 0 4px #0a0f1c,
        var(--shadow-xl),
        0 0 60px rgba(225,29,72,.08);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.tv-content {
    display: grid;
    grid-template-columns: 40% 1fr;
    height: 100%;
}

.tv-channels {
    background: #080d18;
    border-right: 1px solid rgba(255,255,255,.06);
    padding: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ch-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    border-radius: 0.25rem;
    margin: 0 0.25rem;
    transition: all 0.15s;
}
.ch-item.active {
    background: rgba(225,29,72,.15);
    color: rgba(255,255,255,.9);
}

.ch-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
}
.ch-dot.live {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34,197,94,.6);
    animation: pulse 2s infinite;
}

.tv-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0f1829 0%, #141e35 100%);
    position: relative;
    overflow: hidden;
}
.tv-player::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(225,29,72,.06) 0%, transparent 70%);
}

.tv-play {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--p-500), var(--p-700));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(225,29,72,.4);
    position: relative;
    z-index: 1;
}
.tv-play svg { width: 22px; height: 22px; margin-left: 3px; }

.tv-meta {
    display: flex;
    gap: 0.375rem;
    position: relative;
    z-index: 1;
}

.tv-badge {
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.45rem;
    border-radius: 0.25rem;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.1);
}
.live-badge {
    background: rgba(225,29,72,.3);
    color: #fb7185;
    border-color: rgba(225,29,72,.4);
}

.tv-stand {
    width: 28%;
    margin: 0 auto;
    height: 18px;
    background: linear-gradient(to bottom, #1a2235, #0f1726);
    border-radius: 0 0 6px 6px;
}
.tv-stand::after {
    content: '';
    display: block;
    width: 150%;
    height: 4px;
    background: #1a2235;
    border-radius: 999px;
    margin: 0 auto;
    margin-top: 14px;
    transform: translateX(-16.7%);
}

/* ── Float cards ── */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 0.65rem 1rem;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
}
.card-a { top: -16px; left: -20px; animation-delay: 0.8s; }
.card-b { bottom: 24px; right: -24px; animation-delay: 1.8s; }

.hfc-icon {
    width: 32px; height: 32px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hfc-icon.green { background: rgba(34,197,94,.12); color: #16a34a; }
.hfc-icon.rose  { background: rgba(225,29,72,.1);  color: var(--p-600); }

.hfc-title { font-size: 0.75rem; font-weight: 700; color: var(--text-primary); }
.hfc-sub   { font-size: 0.6875rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════════════════ */
.stats-bar {
    padding: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--p-500), var(--p-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 2.5rem;
    background: var(--border);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════════════════════════════ */
.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p-600);
    background: rgba(225,29,72,.07);
    border: 1.5px solid rgba(225,29,72,.18);
    padding: 0.3rem 0.875rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.dark .section-label {
    color: var(--p-300);
    background: rgba(244,63,94,.1);
    border-color: rgba(244,63,94,.2);
}

.section-head h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 0.875rem;
}

.section-head p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES / BENTO GRID
═══════════════════════════════════════════════════════════════════════════ */
.features-section { background: var(--bg-secondary); }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 1rem;
}

.bento-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(225,29,72,.2);
}

/* Wide card spans 2 columns */
.bento-wide {
    grid-column: span 2;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

/* Tall card spans 2 rows */
.bento-tall {
    grid-row: span 2;
}

.bento-icon-lg {
    width: 60px; height: 60px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1.25rem;
}

.bento-wide .bento-icon-lg {
    width: 70px; height: 70px;
    margin-bottom: 0;
    margin-top: 0.25rem;
}

.bento-icon-sm {
    width: 44px; height: 44px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.bento-content { flex: 1; min-width: 0; }

.bento-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.015em;
}

.bento-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 1rem;
}

.tag {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: rgba(225,29,72,.08);
    color: var(--p-600);
    border: 1px solid rgba(225,29,72,.15);
}
.dark .tag {
    background: rgba(244,63,94,.12);
    color: var(--p-300);
    border-color: rgba(244,63,94,.2);
}

.bento-stat {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--p-400), var(--p-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--p-600);
    margin-top: 1rem;
    transition: gap var(--transition);
}
.bento-link:hover { gap: 0.5rem; }
.dark .bento-link { color: var(--p-400); }

.bento-deco {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    right: -60px;
    bottom: -60px;
}
.bento-deco-rose { background: rgba(225,29,72,.08); }
.dark .bento-deco-rose { background: rgba(225,29,72,.05); }

/* Speed bars */
.speed-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.speed-bar {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
}
.speed-bar span:last-child { min-width: 2rem; text-align: right; }

.bar-track {
    flex: 1;
    height: 5px;
    background: var(--surface-alt);
    border-radius: 999px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--p-500), var(--p-400));
    border-radius: 999px;
    transition: width 1s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════════════════ */
.how-section { background: var(--bg); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: calc(33.33% - 0.75rem);
    right: calc(33.33% - 0.75rem);
    height: 1.5px;
    background: linear-gradient(90deg, var(--border), var(--p-300), var(--border));
    pointer-events: none;
}
.dark .steps-grid::before { background: linear-gradient(90deg, var(--border), rgba(225,29,72,.3), var(--border)); }

.step-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.75rem;
    position: relative;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(225,29,72,.2);
}

.step-number {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.step-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-xl);
    background: rgba(225,29,72,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-arrow {
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--p-400);
    display: flex;
    align-items: center;
    z-index: 5;
    background: var(--bg);
    width: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════════════════════ */
.cta-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.cta-card {
    background: linear-gradient(135deg, var(--p-700) 0%, var(--p-900) 100%);
    border-radius: var(--radius-3xl);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px; right: -150px;
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-card h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.875rem;
}

.cta-card p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.72);
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #fff;
    color: var(--p-700);
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    transition: all var(--transition);
}
.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition);
}
.btn-cta-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT / FOOTER SECTION
═══════════════════════════════════════════════════════════════════════════ */
.contact-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.contact-logo {
    height: 36px;
    width: auto;
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 22rem;
    margin-bottom: 1.25rem;
}

.contact-socials { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--transition);
    border: 1.5px solid var(--border);
    color: var(--text-primary);
    background: var(--surface);
}
.social-btn:hover { border-color: var(--p-300); color: var(--p-600); }
.dark .social-btn:hover { border-color: rgba(244,63,94,.35); color: var(--p-300); }

.contact-links-group h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contact-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.contact-links-group a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}
.contact-links-group a:hover { color: var(--p-600); }
.dark .contact-links-group a:hover { color: var(--p-400); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-made { font-style: italic; }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO (paketler.php inner page header)
═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
    padding-top: calc(var(--nav-h) + 3rem);
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.page-breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.page-breadcrumb a:hover { color: var(--p-600); }
.page-breadcrumb svg { color: var(--border); flex-shrink: 0; }

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.page-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

/* ── Billing toggle ── */
.billing-toggle {
    display: inline-flex;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 0.25rem;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.billing-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    transition: all var(--transition);
}
.billing-btn.active {
    background: var(--p-600);
    color: #fff;
    box-shadow: 0 2px 8px rgba(225,29,72,.3);
}

.save-badge {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: rgba(34,197,94,.15);
    color: #16a34a;
    border: 1px solid rgba(34,197,94,.25);
}
.billing-btn.active .save-badge {
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING CARDS
═══════════════════════════════════════════════════════════════════════════ */
.pricing-section { background: var(--bg); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(225,29,72,.2);
}

.pricing-popular {
    border-color: var(--p-500);
    box-shadow: 0 0 0 3px rgba(225,29,72,.12), var(--shadow-xl);
}
.pricing-popular:hover {
    box-shadow: 0 0 0 3px rgba(225,29,72,.18), 0 32px 80px rgba(225,29,72,.2);
    border-color: var(--p-500);
}

.pricing-popular-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, var(--p-500), var(--p-700));
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.625rem 1rem;
}

.pricing-header {
    padding: 1.75rem 1.75rem 1.5rem;
    border-bottom: 1.5px solid var(--border);
}
.pricing-popular .pricing-header { border-color: rgba(225,29,72,.15); }

.pricing-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.pricing-popular .pricing-name { color: var(--p-500); }

.pricing-price-wrap {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    margin-bottom: 0.375rem;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.price-cur {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 0.375rem;
    margin-right: 0.2rem;
}

.price-val {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text-primary);
}

.pricing-popular .price-cur,
.pricing-popular .price-val { color: var(--p-600); }
.dark .pricing-popular .price-cur,
.dark .pricing-popular .price-val { color: var(--p-400); }

.pricing-sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.9375rem;
    font-weight: 700;
    transition: all var(--transition);
}

.btn-pricing-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-primary);
}
.btn-pricing-outline:hover {
    background: var(--p-600);
    border-color: var(--p-600);
    color: #fff;
    transform: translateY(-1px);
}

.btn-pricing-primary {
    background: var(--p-600);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(225,29,72,.3);
}
.btn-pricing-primary:hover {
    background: var(--p-700);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(225,29,72,.4);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.75rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }

.feat-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(225,29,72,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pricing-popular .feat-check { background: rgba(225,29,72,.12); }
.feat-check svg { width: 11px; height: 11px; stroke: var(--p-600); fill: none; }

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPARE TABLE
═══════════════════════════════════════════════════════════════════════════ */
.compare-section { background: var(--bg-secondary); }

.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-2xl);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.compare-table thead { background: var(--surface-alt); }

.compare-table th,
.compare-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.compare-table th {
    font-weight: 800;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.compare-table td { color: var(--text-secondary); font-weight: 500; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(225,29,72,.025); }

.feature-col {
    text-align: left !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    width: 30%;
}

.col-popular {
    background: rgba(225,29,72,.04);
}
.col-popular th { color: var(--p-600) !important; }
.dark .col-popular { background: rgba(225,29,72,.06); }
.dark .col-popular th { color: var(--p-400) !important; }

.th-badge {
    display: inline-block;
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.15rem 0.45rem;
    background: var(--p-600);
    color: #fff;
    border-radius: 999px;
    margin-left: 0.4rem;
    vertical-align: middle;
}

.check-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(34,197,94,.1);
    color: #16a34a;
}

.check-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(100,116,139,.08);
    color: var(--text-muted);
}

.action-row td { padding: 1.25rem; }

.btn-table {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    font-weight: 700;
    transition: all var(--transition);
}

.btn-table-primary {
    background: var(--p-600);
    color: #fff;
    box-shadow: 0 3px 10px rgba(225,29,72,.25);
}
.btn-table-primary:hover { background: var(--p-700); transform: translateY(-1px); }

.btn-table-ghost {
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-primary);
}
.btn-table-ghost:hover { border-color: var(--p-400); color: var(--p-600); }

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════════════════ */
.faq-section { background: var(--bg); }

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

.faq-left h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--text-primary);
    margin: 0.75rem 0;
}

.faq-left p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.faq-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--p-600);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 16px rgba(225,29,72,.3);
    transition: all var(--transition);
}
.faq-wa-btn:hover {
    background: var(--p-700);
    box-shadow: 0 6px 22px rgba(225,29,72,.4);
    transform: translateY(-1px);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(225,29,72,.25); }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    transition: color var(--transition);
}
.faq-item.open .faq-q { color: var(--p-600); }
.dark .faq-item.open .faq-q { color: var(--p-400); }

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--p-500); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-a p {
    padding: 0 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DEVICES SECTION
═══════════════════════════════════════════════════════════════════════════ */
.devices-section { background: var(--bg-secondary); }

.devices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.device-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.device-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(225,29,72,.18);
}

.device-icon {
    width: 60px; height: 60px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.device-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.device-sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BAYILIK – HERO EXTRAS
═══════════════════════════════════════════════════════════════════════════ */
.page-hero-tall { padding-bottom: 3.5rem; }

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.bayi-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 1rem 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.bayi-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
}

.bayi-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--p-500), var(--p-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.bayi-stat-lbl {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.bayi-stat-div {
    width: 1px;
    height: 2rem;
    background: var(--border);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BAYILIK – BENEFITS
═══════════════════════════════════════════════════════════════════════════ */
.benefits-section { background: var(--bg); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.benefit-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(225,29,72,.18);
}

.benefit-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-body h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.benefit-body p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.benefit-stat {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--p-600);
    background: rgba(225,29,72,.07);
    border: 1px solid rgba(225,29,72,.15);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    align-self: flex-start;
}
.dark .benefit-stat {
    color: var(--p-300);
    background: rgba(244,63,94,.1);
    border-color: rgba(244,63,94,.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BAYILIK – COMMISSION
═══════════════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════════════
   BAYILIK – Paket kartları
═══════════════════════════════════════════════════════════════════════════ */
.bayi-packages-section { background: var(--bg-secondary); }

.bayi-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.bayi-pkg-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}
.bayi-pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(225,29,72,.2);
}

.bayi-pkg-popular {
    border-color: var(--p-500);
    box-shadow: 0 0 0 1px var(--p-500), var(--shadow-lg);
    transform: translateY(-6px);
}
.bayi-pkg-popular:hover { transform: translateY(-10px); }

.bayi-pkg-badge {
    background: linear-gradient(135deg, var(--p-500), var(--p-700));
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 0.4rem 1rem;
}

.bayi-pkg-header {
    padding: 1.75rem 1.75rem 1.5rem;
    border-bottom: 1.5px solid var(--border);
}

.bayi-pkg-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.bayi-pkg-price {
    display: flex;
    align-items: flex-start;
    gap: 0.2rem;
    margin-bottom: 0.875rem;
    line-height: 1;
}

.bayi-pkg-cur {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 0.4rem;
}

.bayi-pkg-val {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text-primary);
}

.bayi-pkg-credits {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bayi-cred-main {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.bayi-cred-bonus {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #22c55e;
}

.bayi-pkg-features {
    list-style: none;
    padding: 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.bayi-pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.bayi-pkg-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 1.75rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHANNELS – Canlı Kanal Listesi
═══════════════════════════════════════════════════════════════════════════ */
.channels-section { background: var(--bg-secondary); }

.channels-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
    margin: 2rem 0 2.5rem;
}

.channel-tab-btn {
    padding: 0.5625rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.channel-tab-btn:hover { border-color: var(--p-500); color: var(--p-500); }
.channel-tab-btn.active {
    background: var(--p-600);
    color: #fff;
    border-color: var(--p-600);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.channel-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.25rem 1.375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.625rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.channel-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--ch-accent, var(--border));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    border-color: rgba(225,29,72,.18);
}
.channel-card:hover::before { opacity: 1; }

.channel-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.channel-card:hover .channel-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--ch-accent) 30%, transparent);
}

.channel-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.channel-cat {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Kalite rozetleri */
.channel-qualities {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.25rem;
}
.channel-qualities span {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: .07em;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
}
.channel-quality--sd  { background: rgba(107,114,128,.12); color: #6b7280; }
.channel-quality--hd  { background: rgba(37,99,235,.12);   color: #2563eb; }
.channel-quality--uhd { background: rgba(124,58,237,.12);  color: #7c3aed; }
.channel-quality--4k  {
    background: linear-gradient(135deg, rgba(225,29,72,.12), rgba(217,119,6,.12));
    color: #d97706;
}

.channels-more {
    text-align: center;
    margin-top: 2.25rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}
.channels-more a {
    color: var(--p-500);
    font-weight: 700;
    text-decoration: none;
    margin-left: 0.375rem;
    transition: color var(--transition);
}
.channels-more a:hover { color: var(--p-400); }

/* ═══════════════════════════════════════════════════════════════════════════
   BAYI – Açılış Ücretleri
═══════════════════════════════════════════════════════════════════════════ */
.opening-fees-section { background: var(--bg-secondary); }

.opening-fees-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.fee-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fee-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(225,29,72,.22);
}

.fee-duration {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: .03em;
    text-transform: uppercase;
    background: var(--bg-secondary);
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
}

.fee-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.1rem;
}

.fee-cur {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.25rem;
    color: var(--p-500);
}

.fee-unlimited .fee-price { color: var(--p-500); }

.fee-gifts {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.fee-gift-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1rem 1.5rem;
    flex: 1;
    min-width: 260px;
    max-width: 420px;
}

.fee-gift-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .04em;
    border-radius: 999px;
    padding: 0.3rem 0.875rem;
    white-space: nowrap;
}
.fee-gift-badge.pro {
    background: rgba(124,58,237,.12);
    color: #7c3aed;
}
.fee-gift-badge.ultra {
    background: rgba(225,29,72,.1);
    color: var(--p-500);
}

.fee-gift-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.fee-gift-text span {
    font-weight: 700;
    color: var(--text);
}

.fee-gift-icon {
    font-size: 1.25rem;
    margin-left: auto;
    opacity: .7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS – Müşteri Yorumları
═══════════════════════════════════════════════════════════════════════════ */
.reviews-section { background: var(--bg); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.review-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars { display: flex; gap: 0.2rem; }
.review-stars svg { color: #f59e0b; }

.review-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}
.review-text::before { content: '"'; }
.review-text::after  { content: '"'; }

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 40px; height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.review-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
}
.review-city {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BAYILIK – Kazanç Hesaplayıcı
═══════════════════════════════════════════════════════════════════════════ */
.calc-section { background: var(--bg); }

.calc-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.calc-controls {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-right: 1.5px solid var(--border);
}

.calc-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    letter-spacing: .02em;
}

.calc-slider-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.calc-slider-wrap input[type=range] {
    flex: 1;
    accent-color: var(--p-600);
    height: 6px;
    cursor: pointer;
}
.calc-slider-val {
    min-width: 2.5rem;
    text-align: right;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--p-500);
}

.calc-pkg-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.calc-pkg-btn {
    padding: 0.4rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    background: transparent;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}
.calc-pkg-btn:hover { border-color: var(--p-500); color: var(--p-500); }
.calc-pkg-btn.active {
    background: var(--p-600);
    border-color: var(--p-600);
    color: #fff;
}

.calc-price-input {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color var(--transition);
}
.calc-price-input:focus-within { border-color: var(--p-500); }
.calc-price-sym {
    padding: 0.625rem 0.875rem;
    background: var(--bg-secondary);
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-right: 1.5px solid var(--border);
}
.calc-price-input input {
    flex: 1;
    padding: 0.625rem 0.875rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    outline: none;
    width: 0;
}

.calc-results {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--surface) 100%);
}

.calc-result-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.calc-result-row span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
}
.calc-result-row strong {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text);
}

.calc-result-row.calc-highlight {
    background: var(--surface);
    border: 1.5px solid rgba(225,29,72,.2);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 16px rgba(225,29,72,.08);
}
.calc-result-row.calc-highlight span { color: var(--p-500); }
.calc-result-row.calc-highlight strong {
    font-size: 2rem;
    color: var(--p-500);
}

.calc-divider {
    height: 1px;
    background: var(--border);
}

.calc-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TEST PAGE – Feature cards
═══════════════════════════════════════════════════════════════════════════ */
.test-features-section { background: var(--bg-secondary); }

.test-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.test-feature-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.test-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(225,29,72,.18);
}

.test-feature-icon {
    width: 62px; height: 62px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.125rem;
}

.test-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.015em;
}

.test-feature-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TEST PAGE – WhatsApp CTA & Trust Bar
═══════════════════════════════════════════════════════════════════════════ */
.btn-wa-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: #25d366;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-wa-hero:hover {
    background: #1ebe5d;
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
    transform: translateY(-2px);
    color: #fff;
}

.test-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-top: 1.25rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.trust-item svg {
    color: #22c55e;
    flex-shrink: 0;
}

.trust-sep {
    color: var(--border);
    font-size: 1rem;
    line-height: 1;
    user-select: none;
}

.test-wa-cta {
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
}

.test-wa-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.test-wa-note strong {
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TEST PAGE – Form (legacy – kept for reference)
═══════════════════════════════════════════════════════════════════════════ */
.form-section { background: var(--bg); }

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: flex-start;
}

/* ── Left info panel ── */
.form-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--text-primary);
    margin: 0.75rem 0;
}

.form-info > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.form-info-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.fi-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fi-step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--p-500), var(--p-700));
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(225,29,72,.25);
}

.fi-step strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.fi-step span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.form-info-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    background: var(--surface-alt);
    border: 1.5px solid var(--border);
    padding: 0.625rem 1rem;
    border-radius: var(--radius-xl);
}

/* ── Form card ── */
.test-form-wrap {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.test-form { display: flex; flex-direction: column; gap: 1.125rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.required { color: var(--p-500); margin-left: 0.1rem; }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--p-400);
    box-shadow: 0 0 0 3px rgba(225,29,72,.1);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2394a3b8' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

.btn-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.9rem 1.5rem;
    background: #25d366;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 16px rgba(37,211,102,.3);
    transition: all var(--transition);
    margin-top: 0.25rem;
}
.btn-form-submit:hover {
    background: #1ebe5d;
    box-shadow: 0 6px 22px rgba(37,211,102,.4);
    transform: translateY(-1px);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .tv-mockup { max-width: 420px; margin: 0 auto; }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-wide { grid-column: span 2; }
    .bento-tall { grid-row: span 1; }

    .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .faq-left { text-align: center; }
    .faq-wa-btn { margin: 0 auto; }

    .contact-grid { grid-template-columns: 1fr 1fr; }
    .contact-info { grid-column: span 2; }

    .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
    .devices-grid       { grid-template-columns: repeat(2, 1fr); }
    .bayi-pkg-grid      { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .bayi-pkg-popular   { transform: none; }
    .opening-fees-grid  { grid-template-columns: repeat(3, 1fr); }
    .channels-grid      { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid       { grid-template-columns: repeat(2, 1fr); }
    .calc-card          { grid-template-columns: 1fr; }
    .calc-controls      { border-right: none; border-bottom: 1.5px solid var(--border); }
    .test-features-grid { grid-template-columns: repeat(2, 1fr); }
    .form-layout        { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    section  { padding: 3.5rem 0; }

    .nav-links { display: none; }
    .hamburger { display: flex; }
    .btn-ghost-sm { display: none; }

    .hero-container { padding-top: 2rem; }
    .card-a { display: none; }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    .stat-divider { display: none; }
    .stat-item { padding: 0.5rem; }

    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-wide { grid-column: span 1; flex-direction: column; }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .steps-grid::before { display: none; }
    .step-arrow { display: none; }

    .pricing-grid       { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .benefits-grid      { grid-template-columns: 1fr; }
    .devices-grid       { grid-template-columns: repeat(2, 1fr); }
    .bayi-pkg-grid      { max-width: 360px; }
    .opening-fees-grid  { grid-template-columns: repeat(2, 1fr); }
    .channels-grid      { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid       { grid-template-columns: 1fr; }
    .test-features-grid { grid-template-columns: 1fr; }
    .form-row           { grid-template-columns: 1fr; }

    .bayi-hero-stats { gap: 0.25rem; padding: 0.875rem 1rem; }
    .bayi-stat-item  { padding: 0 0.875rem; }

    .cta-card { padding: 2.5rem 1.5rem; }

    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-info { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .page-hero { padding-top: calc(var(--nav-h) + 2rem); }
}

@media (max-width: 560px) {
    .hero-title { font-size: 2rem; }
    .card-b { display: none; }
    .compare-table th, .compare-table td { padding: 0.75rem; font-size: 0.8125rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
