/* ═══════════════════════════════════════════════════════
   DINBOX.TV — styles.css
   One unified stylesheet for the full page
   Updated with new glass button design (16px text, compact size)
═══════════════════════════════════════════════════════ */

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

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

@font-face {
    font-family: 'Mona Sans';
    src: url('fonts/MonaSans-Light.woff2') format('woff2');
    font-weight: 200 900;
    font-stretch: 75% 125%;
    font-display: swap;
}

/* ── Root variables ── */
:root {
    --orange: #C55518;
    --orange-light: #FF8C55;
    --fh: 'Plus Jakarta Sans', sans-serif;
    --fm: 'Poppins', 'Mona Sans', 'Plus Jakarta Sans', sans-serif;
    --fb: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
}

/* ── Base ── */
html {
    overflow-x: hidden;
    overflow-x: clip;
    background: #000;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
    overflow-x: clip;
    font-family: var(--fm);
    margin: 0;
    padding: 0;
}

/* ── Global typography ── */
h2,
h3 {
    font-family: var(--fh);
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.78) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    font-family: var(--fm);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Unified ambient background system ──
   All sections share black base.
   Each gets a unique orange glow via ::before pseudo-element.
── */
#s2,
#s3,
#s4,
#s6,
#s7,
#s8 {
    background: #000 !important;
    background-color: #000 !important;
    background-image: none !important;
}

/* Individual ambient glows per section */
#s2::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 55% 50% at 6% 28%, rgba(197, 85, 24, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 94% 72%, rgba(140, 50, 8, 0.14) 0%, transparent 55%);
}

#s3::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 60% 60% at 0% 58%, rgba(197, 85, 24, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 88% 20%, rgba(120, 40, 5, 0.16) 0%, transparent 52%);
}

#s4::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 50% 55% at 96% 38%, rgba(197, 85, 24, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 4% 78%, rgba(150, 55, 8, 0.16) 0%, transparent 52%);
}

#s6::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 50% 48% at 16% 22%, rgba(197, 85, 24, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 45% 42% at 84% 78%, rgba(150, 55, 8, 0.18) 0%, transparent 52%);
}

#s7::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 55% 52% at 87% 32%, rgba(197, 85, 24, 0.24) 0%, transparent 57%),
    radial-gradient(ellipse 42% 38% at 8% 68%, rgba(130, 45, 6, 0.16) 0%, transparent 50%);
}

#s8::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 52% 68% at 0% 58%, rgba(197, 85, 24, 0.3) 0%, transparent 58%),
    radial-gradient(ellipse 38% 32% at 92% 22%, rgba(110, 35, 5, 0.14) 0%, transparent 50%);
}

/* Sections must be position:relative to support ::before */
#s2,
#s3,
#s4,
#s6,
#s7,
#s8 {
    position: relative;
    overflow: visible;
    contain: layout style;
}


/* ─── SECTION STRIPS — glass background per section ─── */
.section-strips {
    position: absolute;
    inset: 0;
    display: flex;
    pointer-events: none;
    z-index: 0;
}

.global-strip {
    flex: 1;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.global-strip:nth-child(3n+1) {
    background: rgba(255, 255, 255, 0.008);
}

.global-strip:nth-child(3n+2) {
    background: rgba(0, 0, 0, 0.05);
}

.global-strip:nth-child(3n) {
    background: rgba(0, 0, 0, 0.03);
}

/* ══════════════════ HERO ══════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FIX 1: single p definition, removed duplicate */
p,
.sub,
.lang {
    font-family: var(--fm);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* ─── HERO WRAPPER ─── */
#hero {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: clip;
    background: #0a0810;
}

#hero video {
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: 1;
    opacity: 0.45;
    transform: scale(1.1);
    transform-origin: center center;
}

/* ─── HERO GLOW — orbiting radials between video and strips ─── */
.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    transform: translateZ(0);
}

/* Orange orbs — pre-blurred gradients (no runtime filter: blur) */
.hero-glow-1 {
    width: 700px;
    height: 700px;
    top: 5%;
    left: -10%;
    background: radial-gradient(circle, rgba(197, 85, 24, 0.35) 0%, rgba(197, 85, 24, 0.08) 30%, transparent 55%);
    animation: hero-orb-1 14s ease-in-out infinite;
}

.hero-glow-2 {
    width: 600px;
    height: 600px;
    top: 55%;
    left: 65%;
    background: radial-gradient(circle, rgba(255, 140, 85, 0.25) 0%, rgba(197, 85, 24, 0.06) 30%, transparent 55%);
    animation: hero-orb-2 18s ease-in-out infinite;
}

/* GPU-composited keyframes: transform only, no top/left */
@keyframes hero-orb-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    20% {
        transform: translate(35%, -20%) scale(1.3);
    }
    40% {
        transform: translate(70%, 10%) scale(0.9);
    }
    60% {
        transform: translate(55%, 45%) scale(1.4);
    }
    80% {
        transform: translate(10%, 30%) scale(0.85);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes hero-orb-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(15%, -45%) scale(1.4);
    }
    50% {
        transform: translate(-50%, -65%) scale(0.8);
    }
    75% {
        transform: translate(-75%, -15%) scale(1.3);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* ─── GLASS STRIPS — alternating bright/dark wave + slow drift ─── */
#strips {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    display: flex;
    z-index: 3;
    pointer-events: none;
    animation: strips-slide 30s linear infinite;
}

@keyframes strips-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(14.28%);
    }
}

.gs {
    flex: 1;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    animation: gs-bright 4s ease-in-out infinite;
}

@keyframes gs-bright {
    0%, 100% {
        background: rgba(255, 255, 255, 0.03);
    }
    50% {
        background: rgba(0, 0, 0, 0.1);
    }
}

@keyframes gs-dark {
    0%, 100% {
        background: rgba(0, 0, 0, 0.08);
    }
    50% {
        background: rgba(255, 255, 255, 0.02);
    }
}

/* ─── VIGNETTES ─── */
#vign-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent);
    z-index: 4;
    pointer-events: none;
}

#vign-bot {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0.93) 78%, #000 100%);
    z-index: 4;
    pointer-events: none;
}

/* ─── POPCORN ─── */
#popcorn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.pc {
    position: absolute;
}

.pc img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pc1 {
    top: 0%;
    right: -10px;
    width: 175px;
    height: 175px;
    animation: pf1 9s ease-in-out infinite;
}

.pc2 {
    top: 36%;
    right: 0%;
    width: 110px;
    height: 110px;
    animation: pf2 11s ease-in-out infinite;
}

.pc3 {
    top: 2%;
    left: -14px;
    width: 125px;
    height: 125px;
    animation: pf3 10s ease-in-out infinite;
}

.pc4 {
    top: 62%;
    left: 2%;
    width: 88px;
    height: 88px;
    animation: pf4 13s ease-in-out infinite;
    opacity: .85;
}

.pc5 {
    top: 18%;
    left: 8%;
    width: 70px;
    height: 70px;
    animation: pf5 14s ease-in-out infinite;
    opacity: .7;
}

.pc6 {
    top: 55%;
    right: 3%;
    width: 80px;
    height: 80px;
    animation: pf6 12s ease-in-out infinite;
    opacity: .75;
}

.pc7 {
    top: 72%;
    right: 18%;
    width: 60px;
    height: 60px;
    animation: pf7 15s ease-in-out infinite;
    opacity: .6;
}

@keyframes pf1 {

    0%,
    100% {
        transform: translateY(0) rotate(-6deg);
    }

    50% {
        transform: translateY(-18px) rotate(-2deg);
    }
}

@keyframes pf2 {

    0%,
    100% {
        transform: translateY(0) rotate(8deg);
    }

    50% {
        transform: translateY(-13px) rotate(13deg);
    }
}

@keyframes pf3 {

    0%,
    100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-20px) rotate(9deg);
    }
}

@keyframes pf4 {

    0%,
    100% {
        transform: translateY(0) rotate(-12deg);
    }

    50% {
        transform: translateY(-10px) rotate(-6deg);
    }
}

@keyframes pf5 {

    0%,
    100% {
        transform: translateY(0) rotate(20deg);
    }

    50% {
        transform: translateY(-14px) rotate(14deg);
    }
}

@keyframes pf6 {

    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-11px) rotate(2deg);
    }
}

@keyframes pf7 {

    0%,
    100% {
        transform: translateY(0) rotate(10deg);
    }

    50% {
        transform: translateY(-8px) rotate(16deg);
    }
}

/* ─── CONTENT LAYER ─── */
#content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    background: transparent;
    touch-action: pan-y;
}

/* ─── NAV ─── */
#nav {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 52px;
    gap: 12px;
    flex-shrink: 0;
    background: transparent;
}

.logo img {
    height: 40px;
}

.l1 {
    color: #fff;
}

.l2 {
    color: var(--orange);
}

.l3 {
    color: #fff;
}

.nav-c,
.nav-r {
    display: flex;
    align-items: center;
    gap: 9px;
}

.lang {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 400;
    padding: 4px 2px;
    transition: color 0.2s;
    text-align: left;
}

.lang:hover {
    color: #fff;
}

/* ── Language dropdown ── */
.lang-dropdown {
    position: fixed;
    min-width: 90px;
    padding: 6px;
    border-radius: 12px;
    background: rgba(25, 18, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: none;
    opacity: 0;
    z-index: 99999;
}

.lang-dropdown.open {
    display: block;
    opacity: 1;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--fb);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lang-option.active {
    color: #fff;
    background: rgba(197, 85, 24, 0.2);
}

/* ── Mobile language switcher (burger menu) ── */
.mobile-lang-switcher {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-lang-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mobile-lang-btn.active {
    border-color: rgba(197, 85, 24, 0.4);
    background: rgba(197, 85, 24, 0.15);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════
   NEW GLASS BUTTON DESIGN (16px text, compact size)
═══════════════════════════════════════════════════════ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    height: 46px;
    min-width: 140px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    background: transparent;
    font-family: var(--fb);
    overflow: hidden;
    isolation: isolate;
    white-space: nowrap;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: scale(0.97) !important;
    transition-duration: 0.08s;
}

/* Button layers */
.b-blur {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(15, 12, 8, 0.75);
    transition: background 0.45s ease;
}

.b-base {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: background 0.45s ease;
}

.b-ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 0.45s, box-shadow 0.45s;
}

.b-bt {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72%;
    height: 55%;
    border-radius: 50%;
    pointer-events: none;
    transition: background 0.45s ease;
}

.b-tt {
    position: absolute;
    top: -8px;
    left: 28px;
    width: 44%;
    height: 50%;
    border-radius: 50%;
    pointer-events: none;
    transition: background 0.45s ease;
}

.b-sp {
    position: absolute;
    top: 0;
    left: 40px;
    right: 70px;
    height: 30%;
    border-radius: 0 0 50% 50%;
    pointer-events: none;
    transition: background 0.45s ease;
}

.b-dp {
    position: absolute;
    inset: 4px;
    border-radius: calc(100px - 4px);
    box-shadow: inset 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 -4px 10px rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.b-sh {
    position: absolute;
    inset: 0;
    transform: translateX(-180%);
    pointer-events: none;
    transition: none;
    z-index: 2;
}

.b-lbl {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

.b-ico {
    width: 14px;
    height: 14px;
    opacity: 0.9;
    flex-shrink: 0;
}

.btn:hover .b-lbl {
    transform: none;
}

/* ═══════════════════════════════════════════════════
   GLASS BUTTON SYSTEM — 4 variants
   .vg  = Black glass → #C55518 hover  (nav ghost, pricing, footer)
   .vo  = #C55518 → Gray hover         (nav "Contul meu")
   .vd  = #D9D9D9 → #C55518 hover      (section 4 CTA)
   .vdn = #D9D9D9 → Black hover        (nav first 3 pills)
═══════════════════════════════════════════════════ */

/* ── Base layers (all variants) ── */
.b-blur {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(15, 12, 8, 0.75);
}

.b-base {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: background 0.45s ease;
}

.b-ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 0.45s, box-shadow 0.45s;
}

.b-bt {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72%;
    height: 55%;
    border-radius: 50%;
    pointer-events: none;
    transition: background 0.45s ease;
}

.b-tt {
    position: absolute;
    top: -8px;
    left: 28px;
    width: 44%;
    height: 50%;
    border-radius: 50%;
    pointer-events: none;
    transition: background 0.45s ease;
}

.b-sp {
    position: absolute;
    top: 0;
    left: 40px;
    right: 70px;
    height: 30%;
    border-radius: 0 0 50% 50%;
    pointer-events: none;
    transition: background 0.45s ease;
}

.b-dp {
    position: absolute;
    inset: 4px;
    border-radius: calc(100px - 4px);
    box-shadow: inset 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 -4px 10px rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.b-sh {
    position: absolute;
    inset: 0;
    transform: translateX(-180%);
    pointer-events: none;
    transition: none;
    z-index: 2;
}

.b-lbl {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.b-ico {
    width: 14px;
    height: 14px;
    opacity: 0.92;
    flex-shrink: 0;
}

/* ────────────────────────────────────────────────
   VARIANT 1 — .vg  Black glass → #C55518 on hover
   Used: nav ghost pills, pricing cards, footer, s7
──────────────────────────────────────────────── */
.vg .b-base {
    background: rgba(10, 10, 16, 0.25);
}

.vg .b-ring {
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.5), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vg .b-bt {
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12) 0%, transparent 75%);
}

.vg .b-tt {
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.10) 0%, transparent 80%);
}

.vg .b-sp {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.28) 0%, transparent 100%);
}

.vg .b-sh {
    background: linear-gradient(108deg, transparent 10%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.06) 52%, transparent 76%);
}

.vg:hover .b-base {
    background: rgba(197, 85, 24, 0.28);
}

.vg:hover .b-ring {
    border-color: rgba(197, 85, 24, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 180, 100, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.6), 0 0 50px rgba(197, 85, 24, 0.25), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vg:hover .b-bt {
    background: radial-gradient(ellipse, rgba(197, 85, 24, 0.38) 0%, transparent 75%);
}

.vg:hover .b-tt {
    background: radial-gradient(ellipse, rgba(230, 120, 50, 0.28) 0%, transparent 80%);
}

.vg:hover .b-sp {
    background: linear-gradient(to bottom, rgba(255, 180, 100, 0.45) 0%, transparent 100%);
}

/* ────────────────────────────────────────────────
   VARIANT 2 — .vo  #C55518 → Gray on hover
   Used: nav "Contul meu"
──────────────────────────────────────────────── */
.vo .b-base {
    background: rgba(197, 85, 24, 0.28);
}

.vo .b-ring {
    border: 1px solid rgba(197, 85, 24, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 180, 100, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.5), 0 0 40px rgba(197, 85, 24, 0.2), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vo .b-bt {
    background: radial-gradient(ellipse, rgba(197, 85, 24, 0.35) 0%, transparent 75%);
}

.vo .b-tt {
    background: radial-gradient(ellipse, rgba(230, 120, 50, 0.28) 0%, transparent 80%);
}

.vo .b-sp {
    background: linear-gradient(to bottom, rgba(255, 180, 100, 0.42) 0%, transparent 100%);
}

.vo .b-sh {
    background: linear-gradient(108deg, transparent 10%, rgba(255, 160, 80, 0.22) 40%, rgba(255, 130, 50, 0.09) 52%, transparent 76%);
}

.vo:hover .b-base {
    background: rgba(180, 180, 195, 0.22);
}

.vo:hover .b-ring {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.5), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vo:hover .b-bt {
    background: radial-gradient(ellipse, rgba(200, 200, 220, 0.25) 0%, transparent 75%);
}

.vo:hover .b-tt {
    background: radial-gradient(ellipse, rgba(220, 220, 235, 0.18) 0%, transparent 80%);
}

.vo:hover .b-sp {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.32) 0%, transparent 100%);
}

/* ────────────────────────────────────────────────
   VARIANT 3 — .vd  #D9D9D9 → #C55518 on hover
   Used: section 4 "Abonează-te acum"
──────────────────────────────────────────────── */
.vd .b-base {
    background: rgba(217, 217, 217, 0.18);
}

.vd .b-ring {
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), inset 0 -1px 0 rgba(0, 0, 0, 0.3), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vd .b-bt {
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.28) 0%, transparent 75%);
}

.vd .b-tt {
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.22) 0%, transparent 80%);
}

.vd .b-sp {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.58) 0%, transparent 100%);
}

.vd .b-sh {
    background: linear-gradient(108deg, transparent 10%, rgba(255, 255, 255, 0.28) 40%, rgba(255, 255, 255, 0.10) 52%, transparent 76%);
}

.vd:hover .b-base {
    background: rgba(197, 85, 24, 0.28);
}

.vd:hover .b-ring {
    border-color: rgba(197, 85, 24, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 180, 100, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.6), 0 0 50px rgba(197, 85, 24, 0.25), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vd:hover .b-bt {
    background: radial-gradient(ellipse, rgba(197, 85, 24, 0.38) 0%, transparent 75%);
}

.vd:hover .b-tt {
    background: radial-gradient(ellipse, rgba(230, 120, 50, 0.28) 0%, transparent 80%);
}

.vd:hover .b-sp {
    background: linear-gradient(to bottom, rgba(255, 180, 100, 0.45) 0%, transparent 100%);
}

/* ────────────────────────────────────────────────
   VARIANT 4 — .vdn  #D9D9D9 → Black on hover
   Used: nav first 3 pills (Support, Support, Instalează)
──────────────────────────────────────────────── */
.vdn .b-base {
    background: rgba(217, 217, 217, 0.18);
}

.vdn .b-ring {
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), inset 0 -1px 0 rgba(0, 0, 0, 0.3), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.vdn .b-bt {
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.28) 0%, transparent 75%);
}

.vdn .b-tt {
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.22) 0%, transparent 80%);
}

.vdn .b-sp {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.58) 0%, transparent 100%);
}

.vdn .b-sh {
    background: linear-gradient(108deg, transparent 10%, rgba(255, 255, 255, 0.28) 40%, rgba(255, 255, 255, 0.10) 52%, transparent 76%);
}

.vdn:hover .b-base {
    background: rgba(10, 10, 16, 0.30);
}

.vdn:hover .b-ring {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), inset 0 -1px 0 rgba(0, 0, 0, 0.7), 0 20px 50px rgba(0, 0, 0, 0.7);
}

.vdn:hover .b-bt {
    background: radial-gradient(ellipse, rgba(200, 200, 215, 0.15) 0%, transparent 75%);
}

.vdn:hover .b-tt {
    background: radial-gradient(ellipse, rgba(220, 220, 235, 0.12) 0%, transparent 80%);
}

.vdn:hover .b-sp {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.22) 0%, transparent 100%);
}

/* ── Large Button ── */
.btn-lg {
    height: 50px;
    padding: 0 30px;
    min-width: 200px;
}

.btn-lg .b-lbl {
    font-size: 16px;
    font-weight: 400;
}

/* ─── MIDDLE TEXT ─── */
#middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 48px;
    gap: 10px;
}

/* ─── Hero Badge ─── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 14px;
    border-radius: 100px;
    border: 1px solid rgba(197, 85, 24, 0.3);
    background: rgba(197, 85, 24, 0.08);
    font-family: var(--fh);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #FF8C55;
    margin-bottom: 8px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF8C55;
    box-shadow: 0 0 8px rgba(255, 140, 85, 0.6);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(255, 140, 85, 0.6);
    }
    50% {
        opacity: 0.5;
        box-shadow: 0 0 16px rgba(255, 140, 85, 0.3);
    }
}

h1 {
    font-family: var(--fh);
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    max-width: 860px;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* ─── Scroll indicator ─── */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-bottom: 20px;
    font-family: var(--fh);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    animation: hint-pulse 2.5s ease-in-out infinite;
    cursor: pointer;
    transition: color 0.3s;
}

.scroll-hint:hover {
    color: rgba(255, 255, 255, 0.6);
}

.scroll-hint svg {
    animation: hint-bounce 2.5s ease-in-out infinite;
}

@keyframes hint-pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes hint-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-invite-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.hero-invite-link:hover {
    color: #fff;
}

.hero-invite-link svg {
    transition: transform 0.3s ease;
}

.hero-invite-link:hover svg {
    transform: translateX(4px);
}

.cta .btn-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ─── FEATURES ─── */
#feats {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 52px 60px;
    gap: 0;
    flex-shrink: 0;
}

/* When JS wraps .feat items in #feats-track, apply grid there instead */
#feats-track, #feats:not(:has(#feats-track)) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* Hide cloned carousel items on desktop — only first 4 should show */
#feats-track .feat:nth-child(n+5) {
    display: none;
}

@media (max-width: 768px) {
    #feats-track .feat:nth-child(n+5) {
        display: flex;
    }
}

.feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 20px;
    gap: 12px;
}

.feat-ico {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feat:hover .feat-ico img {
    transform: translateY(-6px) scale(1.12);
}

.feat-t {
    font-family: var(--fh);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
}

@media (max-width: 920px) {
    #nav {
        padding: 20px 24px;
    }

    .nav-c {
        display: none;
    }

    h1 {
        font-size: 42px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px 6px 10px;
    }

    #feats {
        padding: 0 24px 48px;
    }

    #feats-track, #feats:not(:has(#feats-track)) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    h1 {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 10px;
    }

    #feats-track, #feats:not(:has(#feats-track)) {
        grid-template-columns: 1fr 1fr;
    }
}

/* ══════════════════ SECTION 2 — Films Slider ══════════════════ */
/* ═══════════════════════════════════
   SECTION 2
═══════════════════════════════════ */
#s2 {
    position: relative;
    width: 100%;
    background: #000;
    padding: 20px 0 70px;
    margin-top: 40px;
    overflow: visible;
}

/* ── Popcorn ── */
.s2-pc {
    position: absolute;
    pointer-events: none;
    z-index: 10;
}

.s2-pc img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.s2-pc1 {
    bottom: 12%;
    left: 3%;
    width: 130px;
    height: 130px;
    animation: spc1 8s ease-in-out infinite;
}

.s2-pc2 {
    top: 8%;
    right: 2%;
    width: 110px;
    height: 110px;
    animation: spc2 10s ease-in-out infinite;
}

@keyframes spc1 {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-20px) rotate(-3deg);
    }
}

@keyframes spc2 {

    0%,
    100% {
        transform: translateY(0) rotate(10deg);
    }

    50% {
        transform: translateY(-16px) rotate(4deg);
    }
}

/* ── Header ── */
.s2-head {
    text-align: center;
    padding: 0 40px 48px;
    max-width: 860px;
    margin: 0 auto;
}

.s2-head h2 {
    font-family: var(--fh);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}

.s2-head p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 640px;
    margin: 0 auto;
}

/* ══ SLIDER ══ */
.slider-wrap {
    position: relative;
    width: 100%;
    overflow: visible;
}

.slider-track {
    display: flex;
    gap: 14px;
    padding: 10px 10px 20px;
    will-change: transform;
}

/* ── Card ── */
.card {
    position: relative;
    flex-shrink: 0;
    width: 240px;
    height: 355px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.75);
    transform: translateY(-6px);
    z-index: 2;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover img {
    transform: scale(1.1);
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    pointer-events: none;
    border-radius: 0 0 16px 16px;
}

/* ══ PILL INDICATORS ══ */
.pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding-bottom: 10px;
}

.pill {
    position: relative;
    height: 14px;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: width 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 36px;
}

.pill.active {
    width: 88px;
}

.pill .p-blur {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(10, 10, 16, 0.7);
}

.pill .p-base {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.45s ease;
}

.pill .p-ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 0, 0, 0.35), 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: border-color 0.45s, box-shadow 0.45s;
    pointer-events: none;
}

.pill .p-bt {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 75%);
    pointer-events: none;
    transition: background 0.45s;
}

.pill .p-sp {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 45%;
    border-radius: 0 0 50% 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
    pointer-events: none;
    transition: background 0.45s;
}

.pill .p-dp {
    position: absolute;
    inset: 2px;
    border-radius: calc(100px - 2px);
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.pill .p-fill {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: transparent;
    transform: translateX(-100%);
    transition: none;
    z-index: 1;
    pointer-events: none;
}

.pill.active .p-base {
    background: rgba(255, 255, 255, 0.08);
}

.pill.active .p-ring {
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), inset 0 -1px 0 rgba(0, 0, 0, 0.4), 0 0 22px rgba(255, 255, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.pill.active .p-bt {
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.18) 0%, transparent 75%);
}

.pill.active .p-sp {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.32) 0%, transparent 100%);
}

.pill.active .p-fill {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.45) 40%, rgba(255, 255, 255, 0.38) 100%);
    transform: translateX(0%);
    transition: transform var(--pill-duration, 4s) linear;
}

.pill:not(.active):hover .p-base {
    background: rgba(255, 255, 255, 0.14);
}

.pill:not(.active):hover .p-ring {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -1px 0 rgba(0, 0, 0, 0.35), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.pill:not(.active):hover .p-sp {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.22) 0%, transparent 100%);
}

/* ══════════════════ SECTION 3 — Platform Devices ══════════════════ */
#s3 {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    padding: 20px 0 80px;
    margin-top: 40px;
}

/* Orange warm glow bottom-left — pre-blurred gradient, no runtime filter */
#s3::before {
    content: '';
    position: absolute;
    left: -60px;
    bottom: 0;
    width: 700px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(ellipse,
    rgba(197, 85, 24, 0.25) 0%,
    rgba(140, 50, 8, 0.06) 35%,
    transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* ── Popcorn ── */
.s3-pc {
    position: absolute;
    pointer-events: none;
    z-index: 20;
}

.s3-pc img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.s3-pc1 {
    top: 6%;
    left: 42%;
    width: 145px;
    height: 145px;
    animation: sp1 9s ease-in-out infinite;
}

.s3-pc2 {
    top: 5%;
    right: 2%;
    width: 82px;
    height: 82px;
    animation: sp2 11s ease-in-out infinite;
}

@keyframes sp1 {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-18px) rotate(1deg);
    }
}

@keyframes sp2 {

    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-12px) rotate(6deg);
    }
}

/* ROW 1 — TV left (bleeds) + Text right (boxed) */
.s3-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    gap: 0;
}

.s3-platforms-title {
    grid-column: 1 / -1;
    font-family: var(--fh);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.s3-platforms {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    flex: 1;
    padding: 0 max(40px, calc((100vw - 1320px) / 2)) 0 40px;
}

#pcard-dots {
    display: none;
}

#prc-dots {
    display: none;
}

.s3-platforms .pcard {
    width: auto;
    height: auto;
    aspect-ratio: 1;
}

.s3-row1 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 52px 0 0;
}

/* TV — left column, bleeds off left edge of viewport */
.s3-tv {
    position: relative;
    width: 60%;
    flex-shrink: 0;
    margin-left: -12%;
    z-index: 0;
}

.s3-tv-img {
    width: 100%;
    display: block;
    border-radius: 4px;
    filter: saturate(0.6) contrast(1.15) brightness(0.85) sepia(0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(197, 85, 24, 0.15),
    0 0 150px rgba(197, 85, 24, 0.08);
    animation: tv-float 6s ease-in-out infinite;
}

@keyframes tv-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.01);
    }
}

.s3-tv::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -15%;
    width: 130%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(197, 85, 24, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: tv-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes tv-glow-pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.s3-tv-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
    border-radius: 0 0 4px 4px;
}

.s3-tv-overlay .s3-line {
    font-family: var(--fh);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.tv-frame {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Orange radiant glow behind the TV — animated, extends behind titles */
.tv-glow {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 130%;
    height: 160%;
    z-index: 0;
    pointer-events: none;
}

.tv-glow::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 85, 24, 0.35) 0%, rgba(197, 85, 24, 0.08) 30%, transparent 55%);
    will-change: transform;
    animation: glow-orbit-1 12s ease-in-out infinite;
}

.tv-glow::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 60%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 85, 0.25) 0%, rgba(197, 85, 24, 0.06) 30%, transparent 55%);
    will-change: transform;
    animation: glow-orbit-2 15s ease-in-out infinite;
}

/* GPU-composited: transform only, no top/left */
@keyframes glow-orbit-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    20% {
        transform: translate(35%, -25%) scale(1.2);
    }
    40% {
        transform: translate(70%, -5%) scale(0.9);
    }
    60% {
        transform: translate(55%, 40%) scale(1.3);
    }
    80% {
        transform: translate(5%, 30%) scale(0.85);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes glow-orbit-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20%, -40%) scale(1.4);
    }
    50% {
        transform: translate(-30%, -70%) scale(0.8);
    }
    75% {
        transform: translate(-60%, -20%) scale(1.2);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* TV bezel — dark frame around the screen */
.tv-bezel {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 40%, #080808 100%);
    border-radius: 14px;
    padding: 12px 12px 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9),
    0 0 100px rgba(197, 85, 24, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -2px 0 rgba(0, 0, 0, 0.9),
    inset 1px 0 0 rgba(255, 255, 255, 0.03),
    inset -1px 0 0 rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Subtle top reflection for realism */
.tv-bezel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 100%;
    z-index: 5;
}

/* Video screen inside bezel */
.tv-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Stand */
.tv-stand {
    position: relative;
    z-index: 1;
    width: 40%;
    height: 6px;
    background: linear-gradient(180deg, #222 0%, #111 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.tv-stand::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
    border-radius: 0 0 4px 4px;
}

/* Text — right column, stays boxed, left-aligned */
.s3-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    z-index: 2;
    padding: 60px 0 60px 40px;
    min-width: 0;
    text-align: left;
}

.s3-title {
    font-family: var(--fh);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.78) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s3-title .light {
    display: block;
    font-weight: 300;
    font-size: 42px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s3-line {
    display: block;
}

.s3-desc {
    color: rgba(255, 255, 255, 0.62);
    text-align: left;
    max-width: 660px;
}

/* Cards row — centered, overlaps TV */
.s3-cards-row {
    position: relative;
    z-index: 10;
    margin-top: -160px;
    display: flex;
    justify-content: center;
}

.s3-cards-grid-static {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1050px;
    width: 100%;
    padding: 20px 40px;
}

.s3-cards-grid-static .pcard {
    width: auto;
    height: auto;
    aspect-ratio: 1;
}

.s3-cards-container {
    display: none; /* legacy — replaced by .s3-cards-grid-static */
}

/* PLATFORM CARD */
.pcard {
    position: relative;
    border-radius: 16px;
    width: 200px;
    height: 200px;
    aspect-ratio: 1 !important;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(ellipse 90% 80% at 88% 95%,
    rgba(110, 48, 10, 0.75) 0%,
    rgba(65, 25, 5, 0.42) 38%,
    transparent 62%),
    radial-gradient(ellipse 55% 50% at 8% 88%,
            rgba(50, 20, 4, 0.4) 0%,
            transparent 55%),
    linear-gradient(155deg,
            rgba(30, 25, 20, 0.98) 0%,
            rgba(18, 14, 10, 0.99) 50%,
            rgba(24, 16, 8, 0.97) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.65),
    0 10px 30px rgba(0, 0, 0, 0.65);
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.38s ease,
    border-color 0.38s ease;
}

.pcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 42%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0%, transparent 65%);
    border-radius: 18px 0 0 0;
    pointer-events: none;
}

.pcard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: transparent;
    transition: background 0.38s;
    border-radius: 50%;
}

.pcard:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 85, 24, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(0, 0, 0, 0.6),
    0 24px 52px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(197, 85, 24, 0.1),
    0 0 38px rgba(197, 85, 24, 0.1);
}

.pcard:hover::after {
    background: linear-gradient(90deg, transparent, rgba(197, 85, 24, 0.55), transparent);
}

.pcard-logo {
    position: relative;
    z-index: 1;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pcard:hover .pcard-logo {
    transform: scale(1.1) translateY(-2px);
}

.pcard-logo img {
    max-height: 30px !important;
    max-width: 80% !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.88;
    transition: opacity 0.3s;
    display: block;
}

.pcard:hover .pcard-logo img {
    opacity: 1;
}

.ltxt {
    font-family: var(--fh);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.pcard-sub {
    font-family: var(--fm);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.pcard:hover .pcard-sub {
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1024px) {
    .s3-row1 {
        flex-direction: column;
    }

    .s3-tv {
        width: 100%;
    }

    .s3-text {
        padding: 24px 20px;
    }

    .s3-cards-scroll {
        margin-top: 12px;
    }

    .s3-title {
        font-size: 36px;
    }

    .s3-title .light {
        font-size: 30px;
    }
}


/* ══════════════════ SECTION 4 — Showcase ══════════════════ */
#s4 {
    position: relative;
    width: 100%;
    background: #000;
    padding: 20px 0 40px;
    margin-top: 40px;
    overflow: visible;
}

/* Popcorns */
.pc {
    position: absolute;
    pointer-events: none;
}

.pc img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* FRONT popcorns */
.pc1 {
    top: 2%;
    left: 0%;
    width: 145px;
    height: 145px;
    z-index: 10;
    animation: pf1 9s ease-in-out infinite;
}

.pc2 {
    top: 1%;
    right: 1%;
    width: 110px;
    height: 110px;
    z-index: 10;
    animation: pf2 11s ease-in-out infinite;
}

.pc4 {
    bottom: 8%;
    right: 1%;
    width: 120px;
    height: 120px;
    z-index: 10;
    animation: pf4 10s ease-in-out infinite;
}

.pc8 {
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    z-index: 10;
    animation: pf2 9s ease-in-out infinite;
}

/* BEHIND popcorns */
.pc3 {
    top: 25%;
    left: 0%;
    width: 160px;
    height: 160px;
    z-index: 1;
    animation: pf3 12s ease-in-out infinite;
    opacity: 0.9;
}

.pc5 {
    bottom: 12%;
    left: 1%;
    width: 140px;
    height: 140px;
    z-index: 1;
    animation: pf5 13s ease-in-out infinite;
    opacity: 0.85;
}

.pc6 {
    top: 8%;
    left: 55%;
    width: 130px;
    height: 130px;
    z-index: 1;
    animation: pf6 10s ease-in-out infinite;
    opacity: 0.8;
}

.pc7 {
    bottom: 20%;
    right: 22%;
    width: 120px;
    height: 120px;
    z-index: 1;
    animation: pf7 14s ease-in-out infinite;
    opacity: 0.75;
}

@keyframes pf1 {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-20px) rotate(-3deg);
    }
}

@keyframes pf2 {

    0%,
    100% {
        transform: translateY(0) rotate(10deg);
    }

    50% {
        transform: translateY(-16px) rotate(5deg);
    }
}

@keyframes pf3 {

    0%,
    100% {
        transform: translateY(0) rotate(-15deg);
    }

    50% {
        transform: translateY(-14px) rotate(-8deg);
    }
}

@keyframes pf4 {

    0%,
    100% {
        transform: translateY(0) rotate(6deg);
    }

    50% {
        transform: translateY(-18px) rotate(12deg);
    }
}

@keyframes pf5 {

    0%,
    100% {
        transform: translateY(0) rotate(20deg);
    }

    50% {
        transform: translateY(-12px) rotate(14deg);
    }
}

@keyframes pf6 {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-16px) rotate(-4deg);
    }
}

@keyframes pf7 {

    0%,
    100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-10px) rotate(22deg);
    }
}

.s4-top {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto 0;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.s4-faq-title {
    position: relative;
    z-index: 4;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}

#s4 .faq-list {
    margin-top: 0;
    position: relative;
    z-index: 3;
}

.s4-top img {
    width: 100%;
    display: block;
    height: 600px;
    object-fit: cover;
    object-position: center center;
}

.s4-glass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    overflow: hidden;
    height: 58%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.78) 30%, rgba(0, 0, 0, 0.92) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 40px 40px;
}

.s4-strips {
    position: absolute;
    inset: 0;
    display: flex;
    pointer-events: none;
    z-index: 0;
}

.s4-strip {
    flex: 1;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.025);
    animation: ssf 7s ease-in-out infinite;
}

.s4-strip:nth-child(3n+1) {
    background: rgba(255, 255, 255, 0.008);
    animation-delay: 0s;
}

.s4-strip:nth-child(3n+2) {
    background: rgba(0, 0, 0, 0.05);
    animation-delay: 1.4s;
}

.s4-strip:nth-child(3n) {
    background: rgba(0, 0, 0, 0.03);
    animation-delay: 2.8s;
}

.s4-strip:nth-child(5n) {
    background: rgba(0, 0, 0, 0.07);
    animation-delay: 4.2s;
}

@keyframes ssf {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.45
    }
}

.s4-glass-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    margin-top: 20px;
}

.s4-title {
    font-family: var(--fh);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s4-sub {
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    font-size: 14px;
}

.s4-bot {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Device cards — 4 inline glass cards (same style as pricing) ── */
.s4-device-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.s4-dcard {
    position: relative;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.38s;
    background: radial-gradient(ellipse 90% 80% at 88% 95%, rgba(110, 48, 10, 0.75) 0%, rgba(65, 25, 5, 0.42) 38%, transparent 62%),
    radial-gradient(ellipse 55% 50% at 8% 88%, rgba(50, 20, 4, 0.4) 0%, transparent 55%),
    linear-gradient(155deg, rgba(30, 25, 20, 0.98) 0%, rgba(18, 14, 10, 0.99) 50%, rgba(24, 16, 8, 0.97) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.65),
    0 10px 30px rgba(0, 0, 0, 0.65);
}

.s4-dcard:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 85, 24, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(0, 0, 0, 0.6),
    0 24px 52px rgba(0, 0, 0, 0.72),
    0 0 30px rgba(197, 85, 24, 0.1);
}

.s4-dcard-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 28px 16px;
}

.s4-dcard-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s4-dcard-icon svg {
    width: 100%;
    height: 100%;
    color: #FF8C55;
    filter: drop-shadow(0 4px 12px rgba(197, 85, 24, 0.3));
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.s4-dcard:hover .s4-dcard-icon svg {
    transform: scale(1.15);
}

.s4-dcard-label {
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.s4-dcard-sub {
    font-family: 'Mona Sans', 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1040px) {

    .s4-top,
    .s4-bot {
        margin-left: 24px;
        margin-right: 24px;
    }

    .s4-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {

    .s4-top img,
    .s4-bot img {
        height: 300px;
    }

    .s4-title {
        font-size: 24px;
    }

    .s4-sub {
        font-size: 14px;
    }
}

/* ══════════════════ SECTION 6 — Pricing ══════════════════ */
#basicChannels {
    display: inline-block;
    font-weight: 700;
}

.s6-glow-right {
    position: absolute;
    top: 0;
    right: -5%;
    width: 50%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.s6-glow-right::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 85, 24, 0.25) 0%, transparent 55%);
    top: 10%;
    right: 0;
    will-change: transform;
    animation: s6-glow-1 14s ease-in-out infinite;
}

.s6-glow-right::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 85, 0.15) 0%, transparent 55%);
    top: 50%;
    right: 5%;
    will-change: transform;
    animation: s6-glow-2 18s ease-in-out infinite;
}

/* GPU-composited: transform only */
@keyframes s6-glow-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-10%, 30%) scale(1.2);
    }
    66% {
        transform: translate(5%, 10%) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes s6-glow-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(10%, -35%) scale(1.3);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.s6-title {
    font-family: var(--fh);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.78) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s6-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
}

.s6-subtitle {
    font-family: var(--fm);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.s6-chars {
    width: 100%;
    margin: 10px 0;
}

.s6-chars img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
}

#s6 {
    position: relative;
    width: 100%;
    background: radial-gradient(ellipse 80% 60% at 20% 30%, rgba(140, 50, 8, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(100, 35, 4, 0.35) 0%, transparent 55%),
    #080502;
    padding: 20px 40px 60px;
    margin-top: 40px;
    overflow: visible;
}

.s6-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.s6-head h2 {
    font-family: var(--fh);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.78) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.s6-head p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.s6-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    row-gap: 10px;
    column-gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: center;
}

/* Order: text col first, premium second, basic third */
.s6-text-col {
    order: 1;
}

.prc.premium {
    order: 2;
    transform: scale(1.03);
    z-index: 2;
}

.prc:not(.premium) {
    order: 3;
}

/* PRICING CARD */
.prc {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prc:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
}

.prc-bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 0;
    background: linear-gradient(180deg,
    rgba(180, 65, 12, 0.92) 0%,
    rgba(130, 42, 6, 0.88) 25%,
    rgba(40, 14, 3, 0.97) 55%,
    rgba(18, 8, 2, 1.0) 100%);
}

.prc-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to right,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 28px,
    rgba(0, 0, 0, 0.18) 28px,
    rgba(0, 0, 0, 0.18) 29px);
    z-index: 1;
    border-radius: inherit;
}

.prc.premium .prc-bg {
    background: linear-gradient(180deg,
    rgba(200, 75, 14, 0.95) 0%,
    rgba(150, 50, 8, 0.90) 25%,
    rgba(45, 16, 3, 0.97) 55%,
    rgba(18, 8, 2, 1.0) 100%);
}

.prc::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 10;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.prc.premium .prc-inner {
    padding-top: 18px;
}

.prc-inner {
    position: relative;
    z-index: 2;
    padding: 20px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.prc-heart {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prc-heart svg {
    fill: var(--orange);
    filter: drop-shadow(0 2px 8px rgba(197, 85, 24, 0.6));
}

.prc-name {
    font-family: var(--fh);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.prc-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: -4px;
}

.prc-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fh);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.3;
}

.prc-feat-check {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
}

.prc-feat-check svg {
    width: 9px;
    height: 9px;
}

.prc-feat.dim {
    color: rgba(255, 255, 255, 0.35);
}

.prc-feat.dim .prc-feat-check {
    border-color: rgba(255, 255, 255, 0.15);
}

.prc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0 12px;
}

.prc-price {
    font-family: var(--fh);
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.prc-price-sub {
    font-family: var(--fh);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
}

.prc-pci {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pci-badge {
    background: linear-gradient(135deg, #1a6b3a, #0e4a27);
    border-radius: 4px;
    padding: 3px 6px;
    display: flex;
    align-items: center;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pci-badge span {
    font-family: var(--fb);
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}

.pci-badge .dss {
    background: #2a5aa0;
    border-radius: 2px;
    padding: 1px 4px;
    font-size: 8px;
}

.prc-pci-text {
    font-family: var(--fh);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.prc-extra-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    padding: 4px 0;
    user-select: none;
    transition: color 0.2s;
    border: none;
    background: none;
    text-align: left;
}

.prc-extra-toggle:hover {
    color: #fff;
}

.prc-extra-toggle svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.prc-extra-toggle.open svg {
    transform: rotate(45deg);
}

.prc-extras {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    padding-top: 4px;
}

.prc-extras.visible {
    display: flex;
}

.extra-row {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

/* ── Extra pack button style (pill capsule, same as auth buttons) ── */
.extra-btn {
    padding: 12px 20px;
    border-radius: 100px;
    background: rgba(10, 8, 5, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.extra-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(10, 8, 5, 0.75);
}

.extra-btn.on {
    background: #fff;
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.extra-btn.on .extra-label,
.extra-btn.on .extra-label strong {
    color: #C55518;
}

.extra-btn.on .extra-icon {
    stroke: #C55518;
}

.extra-btn.on .extra-info {
    color: #C55518;
    border-color: rgba(197, 85, 24, 0.3);
}

/* ── Extra pack icon ── */
.extra-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: rgba(255, 255, 255, 0.5);
    transition: stroke 0.3s;
}

/* ── Infinite pulse animation for checkout extras wrapper ── */
@keyframes extras-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(197, 85, 24, 0.35);
    }
    50% {
        box-shadow: 0 0 24px 6px rgba(197, 85, 24, 0.12);
    }
}

.co-extras-wrapper {
    animation: extras-pulse 2s ease-in-out infinite;
    border-radius: 16px;
}

/* ── Legacy toggle-sw (hidden, kept for backwards compat) ── */
.toggle-sw {
    display: none;
}

.extra-label {
    font-family: var(--fh);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    flex: 1;
}

.extra-label strong {
    font-weight: 700;
    color: #fff;
}

.extra-info {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--fb);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.extra-info:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.7);
}

/* ── Disable old broken CSS tooltip from enhancements.css ── */
.extra-info::after {
    display: none !important;
}

/* ── New tooltip (JS-created .extra-info-tip) ── */
.extra-info {
    position: relative;
}

.extra-info-tip {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    width: 220px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(20, 10, 4, 0.95);
    border: 1px solid rgba(197, 85, 24, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Mona Sans', 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    white-space: normal;
    text-align: left;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.25s, transform 0.25s;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(197, 85, 24, 0.1);
}

.extra-info:hover .extra-info-tip,
.extra-info.active .extra-info-tip {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}


@media (max-width: 860px) {
    .s6-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        row-gap: 10px !important;
    }

    .s6-text-col {
        grid-column: 1 / -1;
        padding-bottom: 0 !important;
    }
}

/* ══════════════════ SECTION 7 — Info Cards ══════════════════ */
#s7 {
    position: relative;
    width: 100%;
    background-color: #080502;
    background-image: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(140, 50, 8, 0.4) 0%, transparent 55%), radial-gradient(ellipse 60% 50% at 80% 50%, rgba(100, 35, 4, 0.3) 0%, transparent 55%);
    padding: 20px 40px 80px;
    margin-top: 40px;
    overflow: visible;
}

.s7-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.s7card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 36px 32px;
    background: radial-gradient(ellipse 90% 80% at 85% 95%, rgba(160, 60, 12, 0.65) 0%, rgba(100, 35, 6, 0.4) 35%, transparent 62%), radial-gradient(ellipse 60% 55% at 10% 90%, rgba(80, 28, 4, 0.45) 0%, transparent 55%), linear-gradient(150deg, rgba(32, 22, 14, 0.98) 0%, rgba(20, 12, 6, 0.99) 50%, rgba(28, 16, 8, 0.97) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}

.s7card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(197, 85, 24, 0.1);
}

.s7card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 40%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
    border-radius: 22px 0 0 0;
    pointer-events: none;
}

.s7card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 28px, rgba(0, 0, 0, 0.14) 28px, rgba(0, 0, 0, 0.14) 29px);
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

.s7card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.s7card h3 {
    font-family: var(--fh);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    min-height: 2.4em;
    letter-spacing: -0.025em;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 260px;
}

.s7card-bottom {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.s7card p {
    font-size: 16px;
    text-align: left;
    max-width: 300px;
}

.s7card .b-lbl {
    flex: unset;

}


/* Icon slot */
.s7card-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.s7card-icon img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: brightness(0) invert(1);
}

/* Card 1 — cool dark gradient (left card) */
.s7card--dark {
    background: radial-gradient(ellipse 70% 60% at 90% 95%, rgba(60, 70, 90, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 8% 85%, rgba(30, 35, 50, 0.6) 0%, transparent 55%),
    linear-gradient(150deg,
            rgba(22, 24, 30, 0.99) 0%,
            rgba(14, 16, 22, 1.0) 50%,
            rgba(18, 20, 28, 0.98) 100%);
}

/* Card 2 — warm orange gradient (right card) */
.s7card--warm {
    background: radial-gradient(ellipse 90% 80% at 88% 98%, rgba(180, 65, 10, 0.75) 0%, rgba(120, 40, 6, 0.5) 35%, transparent 62%),
    radial-gradient(ellipse 65% 55% at 8% 90%, rgba(100, 35, 4, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(60, 20, 4, 0.35) 0%, transparent 60%),
    linear-gradient(150deg,
            rgba(35, 20, 10, 0.98) 0%,
            rgba(22, 12, 4, 0.99) 50%,
            rgba(30, 16, 6, 0.97) 100%);
}

.orbs {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
}

.orb1 {
    width: 130px;
    height: 130px;
    bottom: 10px;
    right: 30px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.orb2 {
    width: 80px;
    height: 80px;
    bottom: 100px;
    right: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.orb3 {
    width: 55px;
    height: 55px;
    bottom: 0px;
    right: 10px;
    background: rgba(197, 85, 24, 0.22);
    border: 1px solid rgba(197, 85, 24, 0.18);
    box-shadow: 0 0 24px rgba(197, 85, 24, 0.2), inset 0 1px 0 rgba(255, 170, 90, 0.2);
    filter: blur(1px);
}

.orb4 {
    width: 36px;
    height: 36px;
    bottom: 140px;
    right: 55px;
    background: rgba(255, 200, 140, 0.12);
    border: 1px solid rgba(255, 180, 100, 0.15);
    filter: blur(0.5px);
}

@media (max-width: 700px) {
    .s7-grid {
        grid-template-columns: 1fr;
    }

    .s7card h3 {
        font-size: 26px;
    }
}

/* ══════════════════ SECTION 8 — FAQ ══════════════════ */
#s8 {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 20px 40px 60px;
    margin-top: 40px;
    background-color: #060302;
    background-image: radial-gradient(ellipse 55% 70% at 0% 55%, rgba(150, 52, 8, 0.55) 0%, transparent 58%),
    radial-gradient(ellipse 40% 50% at 100% 40%, rgba(80, 25, 4, 0.3) 0%, transparent 55%);
}

#s8-strips {
    position: absolute;
    inset: 0;
    display: flex;
    pointer-events: none;
    z-index: 0;
}

.s8-strip {
    flex: 1;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    animation: ssf 7s ease-in-out infinite;
}

.s8-strip:nth-child(3n+1) {
    background: rgba(255, 255, 255, 0.008);
    animation-delay: 0s;
}

.s8-strip:nth-child(3n+2) {
    background: rgba(0, 0, 0, 0.05);
    animation-delay: 1.4s;
}

.s8-strip:nth-child(3n) {
    background: rgba(0, 0, 0, 0.03);
    animation-delay: 2.8s;
}

.s8-strip:nth-child(5n) {
    background: rgba(0, 0, 0, 0.07);
    animation-delay: 4.2s;
}

.pc-front {
    top: 2%;
    right: 0%;
    width: 180px;
    height: 180px;
    z-index: 10;
    animation: pf1 9s ease-in-out infinite;
}

.pc-back {
    bottom: 5%;
    left: -10px;
    width: 170px;
    height: 170px;
    z-index: 1;
    animation: pf2 11s ease-in-out infinite;
    opacity: 0.85;
}

.s8-head {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
}

.s8-head h2 {
    font-family: var(--fh);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.025em;
    white-space: nowrap;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.78) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}

.s8-head p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.discover-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--fh);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.25s, color 0.2s;
}

.discover-link:hover {
    gap: 16px;
    color: #fff;
}

.discover-link svg {
    transition: transform 0.25s;
}

.discover-link:hover svg {
    transform: translateX(3px);
}

.faq-list {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    transition: border-radius 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.open {
    border-radius: 24px;
}

.faq-blur {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(10, 10, 16, 0.75);
}

.faq-base {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.065);
    transition: background 0.35s;
}

.faq-item.open .faq-base {
    background: rgba(255, 255, 255, 0.09);
}

.faq-ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.35), 0 8px 30px rgba(0, 0, 0, 0.45);
    pointer-events: none;
    transition: border-color 0.35s, box-shadow 0.35s;
}

.faq-item.open .faq-ring {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 0, 0, 0.4), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.faq-shine {
    position: absolute;
    top: 0;
    left: 24px;
    right: 80px;
    height: 40%;
    border-radius: 0 0 50% 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.13) 0%, transparent 100%);
    filter: blur(2px);
    pointer-events: none;
}

.faq-depth {
    position: absolute;
    inset: 3px;
    border-radius: calc(100px - 3px);
    box-shadow: inset 0 5px 16px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    transition: border-radius 0.4s;
}

.faq-item.open .faq-depth {
    border-radius: 21px;
}

.faq-row {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 20px 32px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.faq-q {
    font-family: var(--fh);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
    flex: 1;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.faq-item.open .faq-q {
    color: #fff;
}

.faq-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.faq-btn .fb-blur {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(10, 10, 16, 0.7);
}

.faq-btn .fb-base {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.3s;
}

.faq-btn .fb-ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-btn .fb-spec {
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 45%;
    border-radius: 0 0 50% 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    filter: blur(1px);
    pointer-events: none;
}

.faq-btn .fb-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #fff;
}

.faq-item.open .faq-btn .fb-icon {
    transform: rotate(45deg);
}

.faq-item.open .faq-btn .fb-base {
    background: rgba(197, 85, 24, 0.3);
}

.faq-item.open .faq-btn .fb-ring {
    border-color: rgba(197, 85, 24, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 170, 90, 0.3), 0 0 16px rgba(197, 85, 24, 0.2), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.faq-answer {
    position: relative;
    z-index: 3;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 32px 24px;
    font-family: var(--fm);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 16px;
}

@media (max-width: 760px) {
    #s8 {
        padding: 60px 20px 80px;
    }

    .s8-head h2 {
        font-size: 38px;
    }

    .faq-q {
        font-size: 14px;
    }
}

/* ══════════════════ FOOTER ══════════════════ */
#footer {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    background: #000;
    padding: 40px 52px 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ft-nav {
    display: flex;
    gap: 40px;
    flex: 1;
}

.ft-nav-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ft-nav-title {
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.ft-nav a {
    font-family: var(--fh);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.ft-nav a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.ft-bottom {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 24px;
    position: relative;
    z-index: 2;
}

.ft-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.ft-logo {
    font-family: var(--fh);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    text-decoration: none;
}

.ft-logo .l1 {
    color: #fff;
}

.ft-logo .l2 {
    color: var(--orange);
}

.ft-logo .l3 {
    color: #fff;
}

.ft-copy {
    font-family: var(--fh);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.32);
}

.ft-payments {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.pay-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.pay-icon svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.6);
}

.pay-visa {
    font-family: var(--fh);
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2px 7px;
}

.pay-mc {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 3px 7px;
}

.mc-c1,
.mc-c2 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mc-c1 {
    background: rgba(220, 0, 0, 0.7);
    margin-right: -4px;
}

.mc-c2 {
    background: rgba(255, 150, 0, 0.7);
}

.ft-email {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.ft-email-label {
    font-family: var(--fh);
    font-size: 11px;
    font-weight: 500;
    color: var(--orange);
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}

.ft-email a {
    font-family: var(--fh);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.ft-email a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.ft-spacer {
    flex: 1;
}

.ft-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-pre {
    font-weight: 300;
    opacity: 0.7;
    margin-right: 1px;
}

@media (max-width: 960px) {
    #footer {
        padding: 40px 28px 28px;
    }

    .ft-bottom {
        flex-wrap: wrap;
        gap: 20px;
    }

    .ft-spacer {
        display: none;
    }

    .ft-ctas {
        width: 100%;
    }

    .ft-nav {
        gap: 16px;
    }
}


.s6-text-col h2 {
    font-family: var(--fh);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.78) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s6-text-col p {
    font-family: var(--fm);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
}

.prc-inner .btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — DINBOX.TV
   Breakpoints:
   1024px  — tablet landscape
   768px   — tablet portrait  → burger menu appears
   520px   — mobile
═══════════════════════════════════════════════════════ */

/* ── Burger button ── */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s;
    z-index: 100;
}

.nav-burger:hover {
    background: rgba(255, 255, 255, 0.14);
}

.nav-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile fullscreen menu overlay ── */
.nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 60px 32px 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s;
    overflow-y: auto;
}

.nav-drawer.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Entrance animations */
.nav-drawer.open .nav-drawer-logo {
    animation: drawer-fade-down 0.4s ease both;
}

.nav-drawer.open .nav-drawer-tagline {
    animation: drawer-fade-down 0.45s ease both 0.05s;
}

.nav-drawer.open .nav-drawer-items .nav-drawer-item:nth-child(1) {
    animation: drawer-fade-left 0.4s ease both 0.1s;
}

.nav-drawer.open .nav-drawer-items .nav-drawer-item:nth-child(2) {
    animation: drawer-fade-left 0.4s ease both 0.17s;
}

.nav-drawer.open .nav-drawer-items .nav-drawer-item:nth-child(3) {
    animation: drawer-fade-left 0.4s ease both 0.24s;
}

.nav-drawer.open .nav-drawer-items .nav-drawer-item:nth-child(4) {
    animation: drawer-fade-left 0.4s ease both 0.31s;
}

.nav-drawer.open .nav-drawer-item.accent {
    animation: drawer-fade-up 0.45s ease both 0.38s;
}

.nav-drawer.open .nav-drawer-bottom {
    animation: drawer-fade-up 0.5s ease both 0.3s;
}

.nav-drawer.open .nav-drawer-divider {
    animation: drawer-divider 0.6s ease both 0.15s;
}

@keyframes drawer-fade-down {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawer-fade-left {
    from {
        opacity: 0;
        transform: translateX(-25px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes drawer-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawer-divider {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Top section — logo, nav items, contul meu */
.nav-drawer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    position: relative;
    z-index: 1;
}

.nav-drawer-logo {
    margin-bottom: 8px;
}

.nav-drawer-logo img {
    height: 36px;
    width: auto;
}

.nav-drawer-tagline {
    font-family: 'Mona Sans', 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.nav-drawer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    margin: 6px 0;
}

/* Bottom section — footer links + CTAs */
.nav-drawer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 360px;
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-drawer-footer-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    margin-bottom: 20px;
}

.nav-drawer-footer-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.nav-drawer-footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2px;
}

.nav-drawer-footer-col a {
    font-family: 'Mona Sans', 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-drawer-footer-col a:hover {
    color: #FF8C55;
}

.nav-drawer-ctas {
    display: flex;
    gap: 10px;
    width: 100%;
}

.nav-drawer-ctas .btn {
    flex: 1;
    justify-content: center;
    min-width: 0;
    height: 42px;
    font-size: 13px;
}

/* Glass stripes inside overlay */
.nav-drawer-strips {
    position: absolute;
    inset: 0;
    display: flex;
    pointer-events: none;
    z-index: 0;
}

.nav-drawer-strip {
    flex: 1;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.015);
}

.nav-drawer-strip:nth-child(3n+1) {
    background: rgba(255, 255, 255, 0.004);
}

.nav-drawer-strip:nth-child(3n+2) {
    background: rgba(0, 0, 0, 0.03);
}

.nav-drawer-strip:nth-child(3n) {
    background: rgba(0, 0, 0, 0.015);
}

/* Menu items — left aligned */
.nav-drawer-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    max-width: 320px;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.nav-drawer-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    padding: 16px 0;
    font-family: var(--fh);
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    letter-spacing: -0.01em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s, transform 0.3s;
}

.nav-drawer-item:last-child {
    border-bottom: none;
}

.nav-drawer-item:hover,
.nav-drawer-item:active {
    color: #fff;
    transform: translateX(4px);
}

.nav-drawer-item svg {
    width: 20px;
    height: 20px;
    opacity: 0.45;
    flex-shrink: 0;
}

.nav-drawer-item:hover svg {
    opacity: 0.9;
}

/* Contul meu — glass button style */
.nav-drawer-item.accent {
    color: #fff;
    border-bottom: none;
    margin-top: 16px;
    padding: 0 24px;
    height: 46px;
    border-radius: 100px;
    background: transparent;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: none;
    justify-content: center;
}

.nav-drawer-item.accent .b-blur,
.nav-drawer-item.accent .b-base,
.nav-drawer-item.accent .b-ring,
.nav-drawer-item.accent .b-bt,
.nav-drawer-item.accent .b-tt,
.nav-drawer-item.accent .b-sp,
.nav-drawer-item.accent .b-dp,
.nav-drawer-item.accent .b-sh {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.nav-drawer-item.accent .b-blur {
    background: rgba(15, 12, 8, 0.75);
}

.nav-drawer-item.accent .b-base {
    background: rgba(197, 85, 24, 0.28);
}

.nav-drawer-item.accent .b-ring {
    border: 1px solid rgba(197, 85, 24, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 180, 100, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.5), 0 0 40px rgba(197, 85, 24, 0.2), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nav-drawer-item.accent .b-bt {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72%;
    height: 55%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(197, 85, 24, 0.35) 0%, transparent 75%);
    inset: auto;
    filter: blur(14px);
}

.nav-drawer-item.accent .b-tt {
    top: -8px;
    left: 28px;
    width: 44%;
    height: 50%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(230, 120, 50, 0.28) 0%, transparent 80%);
    inset: auto;
    filter: blur(11px);
}

.nav-drawer-item.accent .b-sp {
    top: 0;
    left: 40px;
    right: 70px;
    height: 30%;
    border-radius: 0 0 50% 50%;
    background: linear-gradient(to bottom, rgba(255, 180, 100, 0.42) 0%, transparent 100%);
    inset: auto;
    filter: blur(2px);
}

.nav-drawer-item.accent .b-dp {
    inset: 4px;
    border-radius: calc(100px - 4px);
    box-shadow: inset 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 -4px 10px rgba(255, 255, 255, 0.04);
}

.nav-drawer-item.accent .b-sh {
    transform: translateX(-180%);
    z-index: 2;
    background: linear-gradient(108deg, transparent 10%, rgba(255, 160, 80, 0.22) 40%, rgba(255, 130, 50, 0.09) 52%, transparent 76%);
}

.nav-drawer-item.accent svg,
.nav-drawer-item.accent span {
    position: relative;
    z-index: 3;
}

.nav-drawer-item.accent svg {
    opacity: 0.9;
    color: #fff;
}

.nav-drawer-item.accent:hover {
    transform: translateY(-2px);
}

/* Keep burger above the overlay */
.nav-burger {
    position: relative;
    z-index: 9999;
}

/* ════════════════════════════════
   1024px — Tablet landscape
════════════════════════════════ */
@media (max-width: 1024px) {

    /* Nav */
    #nav {
        width: 100%;
        padding: 18px 32px;
    }

    /* Reduce section spacing globally — watermarks handle top spacing */
    #s2, #s3, #s4, #s6, #s7, #s8 {
        margin-top: 20px !important;
        padding-top: 10px !important;
    }

    #s2 {
        padding-bottom: 20px !important;
    }

    #s3 {
        padding-bottom: 30px !important;
    }

    /* Hero */
    h1 {
        font-size: 42px !important;
    }

    #middle {
        padding: 0 32px;
    }

    .cta {
        flex-wrap: wrap;
    }

    /* Section 3 */
    .s3-row1 {
        flex-direction: column;
    }

    .s3-layout {
        flex-direction: column;
        gap: 30px;
    }

    .s3-tv {
        width: 100%;
        margin-left: 0;
        padding: 0 16px;
    }

    .s3-platforms {
        display: block !important;
        padding: 0 16px !important;
    }

    .s3-platforms-title {
        font-size: 28px !important;
        text-align: center;
        display: block !important;
        margin-bottom: 16px;
    }

    .s3-platforms .pcard {
        display: none !important;
    }

    .s3-platforms .pcard.pcard-active {
        display: flex !important;
        width: 80% !important;
        height: auto !important;
        aspect-ratio: 1 !important;
        margin: 0 auto !important;
    }

    #pcard-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    #pcard-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        transition: background 0.3s, transform 0.3s;
        cursor: pointer;
    }

    #pcard-dots span.active {
        background: #c55518;
        transform: scale(1.25);
    }

    #pcard-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    #pcard-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        transition: background 0.3s, transform 0.3s;
    }

    #pcard-dots span.active {
        background: #c55518;
        transform: scale(1.25);
    }

    .s3-text {
        padding: 32px 32px 0;
    }

    .s3-cards-wrap {
        left: 20px;
        right: 20px;
    }

    /* Section 6 pricing */
    .s6-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 10px !important;
        column-gap: 14px !important;
    }

    .s6-text-col {
        grid-column: 1 / -1;
    }

    .s6-text-col h2 {
        font-size: 44px;
    }

    .s6-text-col p {
        max-width: 420px;
        font-size: 14px;
    }

    /* Section 7 */
    .s7-grid {
        gap: 14px;
    }

    /* Footer */
    .ft-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .ft-spacer {
        display: none;
    }

    .ft-ctas {
        width: 100%;
        justify-content: flex-start;
    }

    .ft-nav {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        width: 100%;
        padding: 0 20px;
        margin-top: 20px;
        margin-bottom: 24px;
    }

    .ft-nav .ft-nav-col:last-child {
        grid-column: auto;
    }

    .ft-left {
        align-items: center;
        text-align: center;
    }

    .ft-email {
        width: 100%;
        text-align: center;
    }
}

/* ════════════════════════════════
   768px — Tablet portrait → Burger
════════════════════════════════ */
@media (max-width: 768px) {

    /* Show burger, hide nav items */
    .nav-burger {
        display: flex;
    }

    .nav-c {
        display: none !important;
    }

    .nav-r {
        display: none !important;
    }

    #nav {
        padding: 16px 24px;
        justify-content: space-between;
    }

    /* Hero */
    #hero {
        height: 600px;
        overflow: clip;
    }

    h1 {
        font-size: 44px !important;
        line-height: 1.1 !important;
    }

    .sub {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    #middle {
        padding: 20px 24px 20px;
        gap: 12px;
        text-align: center;
    }

    .sub {
        text-align: center;
        max-width: 100%;
    }

    .cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .cta .btn {
        width: 100%;
        justify-content: center;
    }

    #feats {
        overflow: hidden;
        padding: 0 0 60px;
        margin-top: 40px;
    }

    #feats-track {
        display: flex;
    }

    .feat {
        padding: 12px 14px;
        gap: 10px;
        box-sizing: border-box;
    }

    .feat-ico {
        width: 48px;
        height: 48px;
    }

    .feat-t {
        font-size: 13px;
    }

    /* Section 2 */
    #s2 {
        padding: 10px 0 20px !important;
    }

    .s2-head {
        padding: 0 24px 12px;
    }

    .s2-head h2 {
        font-size: 38px;
    }

    .s2-head p {
        font-size: 13px;
    }

    /* Section 3 */
    #s3 {
        padding-top: 10px !important;
        padding-bottom: 30px;
        margin-top: 20px !important;
    }

    .s3-text {
        padding: 24px 24px 0;
    }

    .s3-title {
        font-size: 28px;
    }

    .s3-title .light {
        font-size: 22px;
    }

    .pcard-sub {
        font-size: 0;
        visibility: hidden;
        height: 0;
    }

    /* Section 4 */
    .s4-top img {
        height: 480px;
    }

    .s4-glass {
        height: 80%;
        padding: 24px 20px 28px;
    }

    .s4-title {
        font-size: 24px;
    }

    .s4-sub {
        font-size: 13px;
    }

    .s4-top, .s4-bot {
        margin-left: 16px;
        margin-right: 16px;
    }

    .s4-glass-content .btn {
        min-width: auto;
        padding: 0 16px;
        height: 40px;
    }

    /* Popcorn decorations — scale down */
    .gpc {
        opacity: 0.5;
    }

    /* Section 6 */
    .s6-grid {
        display: block !important;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .s6-subtitle {
        margin-bottom: 0 !important;
    }

    .s6-text-col {
        display: flex !important;
        flex-direction: column;
        padding-bottom: 0;
        align-items: center;
        text-align: center;
        gap: 4px;
        margin-bottom: 24px;
    }

    .s6-text-col h2 {
        font-size: 38px !important;
    }

    #s6 {
        padding: 10px 20px 40px !important;
        margin-top: 20px !important;
    }

    .prc-inner {
        padding: 28px 24px 28px !important;
    }

    .prc {
        border-radius: 20px !important;
        margin: 0 auto !important;
        display: none !important;
        transform: scale(1) !important;
        max-width: 360px;
    }

    .prc.prc-active {
        display: block !important;
    }

    .s6-text-col {
        margin-bottom: 44px !important;
    }

    #prc-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    #prc-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        transition: background 0.3s, transform 0.3s;
        cursor: pointer;
    }

    #prc-dots span.active {
        background: #c55518;
        transform: scale(1.25);
    }

    /* Section 7 */
    .s7-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    #s7 {
        padding: 10px 20px 48px !important;
    }

    /* Section 8 */
    .s8-head h2 {
        font-size: 38px;
    }

    .faq-list {
        padding: 0 16px;
    }

    #s8 {
        padding: 60px 16px 80px;
    }

    /* Footer */
    #footer {
        padding: 40px 20px 28px;
    }

    .ft-nav {
        gap: 10px;
    }

    .ft-nav a {
        font-size: 11px;
    }

    .ft-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .ft-email {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding-top: 12px;
    }
}

/* ════════════════════════════════
   520px — Mobile
════════════════════════════════ */
@media (max-width: 520px) {

    h1 {
        font-size: 34px !important;
    }

    /* Section 2 */
    .s2-head h2 {
        font-size: 34px;
    }

    .s2-pc1, .s2-pc2 {
        display: none;
    }

    /* Section 3 */
    /* Section 4 */
    .s4-top img {
        height: 420px;
    }

    .s4-glass {
        height: 85%;
        padding: 18px 16px 22px;
    }

    .s4-title {
        font-size: 20px;
    }

    .s4-sub {
        font-size: 12px;
    }

    /* Section 8 */
    .s8-head h2 {
        font-size: 34px;
    }

    .faq-q {
        font-size: 14px;
    }

    /* Hide popcorn decorations on mobile */
    .gpc {
        display: none;
    }

    /* Footer */
    .ft-nav {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .ft-ctas {
        flex-direction: column;
    }

    .ft-ctas .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ════════════════════════════════
   375px — Small mobile
════════════════════════════════ */
@media (max-width: 400px) {

    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    /* Nav */
    #nav {
        padding: 12px 16px;
    }

    .logo img {
        height: 22px;
    }

    /* Hero */
    #middle {
        padding: 80px 16px 50px;
    }

    .sub {
        font-size: 12px !important;
    }

    #feats {
        overflow: hidden;
        padding: 0 0 50px;
        margin-top: 28px;
    }

    #feats-track {
        display: flex;
    }

    .feat {
        padding: 10px 10px;
        gap: 8px;
        box-sizing: border-box;
    }

    .feat-ico {
        width: 40px;
        height: 40px;
    }

    .feat-t {
        font-size: 12px;
    }

    /* Section 3 */
    /* Section 4 */
    .s4-top img {
        height: 380px;
    }

    .s4-top, .s4-bot {
        margin-left: 10px;
        margin-right: 10px;
    }

    .s4-glass {
        height: 88%;
        padding: 14px 14px 18px;
    }

    .s4-title {
        font-size: 18px;
    }

    .s4-sub {
        font-size: 11px;
    }

    .s4-glass-content .btn {
        height: 36px;
        padding: 0 14px;
    }

    .s4-glass-content .b-lbl {
        font-size: 12px;
    }

    /* Sections — watermarks handle top spacing */
    #s2 {
        padding: 10px 0 40px !important;
    }

    #s3 {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    /* Section 6 pricing */
    #s6 {
        padding: 10px 12px 40px !important;
    }

    .s6-grid {
        max-width: 100%;
    }

    .prc {
        padding: 24px 16px;
    }

    .prc .plan {
        font-size: 14px;
    }

    .prc .euro {
        font-size: 40px;
    }

    /* Section 7 */
    #s7 {
        padding: 10px 12px 40px !important;
    }

    .s7-grid {
        max-width: 100%;
    }

    /* Section 8 */
    #s8 {
        padding: 60px 12px 60px;
    }

    .s8-head h2 {
        font-size: 30px;
    }

    .faq-q {
        font-size: 13px;
        padding: 14px 16px;
    }

    /* Footer */
    #footer {
        padding: 30px 12px 24px;
    }

    .ft-nav a {
        font-size: 10px;
    }

    .ft-left {
        align-items: center;
        text-align: center;
    }

    /* Modals */
    .app-modal {
        padding: 56px 16px 32px;
    }

    .app-title {
        font-size: 22px;
    }

    .app-input {
        height: 42px;
        padding: 0 18px;
        font-size: 16px;
    }
}

/* ═══ PRICING FIX — overrides everything ═══ */
.s6-grid {
    row-gap: 28px !important;
}

.s6-text-col {
    padding: 0 !important;
    margin: 0 0 40px 0 !important;
    height: auto !important;
    gap: 6px !important;
}

.s6-subtitle {
    margin: 0 !important;
    padding: 0 !important;
}
