/* ============================
   ETTEVÕTJATE KODA — Black & Gold
   Personal brand: Manfred Muuga
   Vibe: warm, bold, freedom, adventure
   ============================ */

:root {
    --gold: #f0c040;
    --gold-bright: #ffd700;
    --gold-dim: #c9a227;
    --gold-glow: rgba(240, 192, 64, 0.25);
    --cyan: #00c8ff;
    --cyan-bright: #4dd9ff;
    --cyan-glow: rgba(0, 200, 255, 0.28);
    --black: #0a0a0e;
    --dark: #111118;
    --dark-card: #16161e;
    --dark-elevated: #1c1c26;
    --dark-border: #25252f;
    --white: #f5f5f0;
    --gray: #9a9aab;
    --gray-light: #c5c5d0;
    --red-soft: #ff6b6b;
    --green-soft: #51cf66;
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

html { overflow-x: hidden; max-width: 100%; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}
img, video, iframe, svg { max-width: 100%; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s var(--ease); }
ul, ol { list-style: none; }
strong { color: var(--white); font-weight: 600; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

/* === Animations === */
[data-anim] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-anim].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* === Buttons === */
.btn-gold {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 55%, var(--gold-dim) 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: 0.4px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: background-position 0.5s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow:
        0 6px 24px var(--gold-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
    transform: translateX(-110%);
    transition: transform 0.7s var(--ease);
    pointer-events: none;
}
.btn-gold:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow:
        0 14px 44px var(--gold-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-gold:hover::after { transform: translateX(110%); }
.btn-gold:active { transform: translateY(0); }
.btn-full { width: 100%; text-align: center; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    color: var(--gray-light);
    font-weight: 500;
    border: 1px solid var(--dark-border);
    border-radius: 12px;
}
.btn-ghost:hover {
    color: var(--gold);
    border-color: var(--gold-dim);
}
.btn-ghost .arrow-down {
    transition: transform 0.3s;
}
.btn-ghost:hover .arrow-down {
    transform: translateY(3px);
}

/* === Tags / Labels === */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.new-badge {
    display: inline-block;
    padding: 4px 11px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 5px;
}
.course-eyebrow-row {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.course-section-tag {
    margin-bottom: 0 !important;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: 0.4s var(--ease);
}
.navbar.scrolled {
    background: rgba(11, 11, 15, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    border-bottom: 1px solid var(--dark-border);
}
.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo img { height: 36px; width: 36px; object-fit: contain; }
.nav-logo span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-menu a {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray);
    border-radius: 8px;
}
.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.nav-menu .nav-btn,
.nav-btn {
    background: var(--gold) !important;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.88rem;
    border-radius: 8px;
    color: var(--black) !important;
    font-weight: 700 !important;
    padding: 10px 22px !important;
    border-radius: 10px !important;
}
.nav-btn:hover { background: var(--gold-bright) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 36px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s var(--ease);
}
.nav-toggle.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.nav-toggle.active span:last-child  { transform: rotate(-45deg) translate(3px, -3px); }

/* =====================
   HERO
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: radial-gradient(ellipse at 70% 20%, rgba(240,192,64,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(240,192,64,0.03) 0%, transparent 60%),
                var(--black);
}
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-tag {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero photo stack */
.hero-photo-stack {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-video-frame {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border-radius: 24px;
    border: 1px solid var(--dark-border);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    overflow: hidden;
    background: var(--dark-card);
}
.hero-main-photo {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.hero-float-photo {
    position: absolute;
    bottom: -20px;
    left: -60px;
    width: 200px;
    height: 115px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid var(--dark-border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.6);
    z-index: 3;
}
.hero-stat-pill {
    position: absolute;
    top: 30px;
    right: -30px;
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 14px 22px;
    z-index: 3;
    text-align: center;
    backdrop-filter: blur(10px);
}
.pill-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.pill-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 4px;
    display: block;
}

/* scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* =====================
   COMPARE TABLE (shared)
   ===================== */
.freedom-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto 64px;
    align-items: start;
}
.compare-col {
    padding: 36px;
    border-radius: 20px;
    border: 1px solid var(--dark-border);
    background: var(--dark-card);
}
.compare-col h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--dark-border);
}
.compare-col.old h3 { color: var(--gray); }
.compare-col.new {
    border-color: rgba(240, 192, 64, 0.2);
    background: linear-gradient(165deg, rgba(240,192,64,0.06) 0%, var(--dark-card) 40%);
}
.compare-col.new h3 { color: var(--gold); }
.compare-col ul { display: flex; flex-direction: column; gap: 14px; }
.compare-col li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    color: var(--gray-light);
}
.compare-col li::before {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}
.negative::before {
    content: '✕';
    background: rgba(255, 107, 107, 0.12);
    color: var(--red-soft);
}
.positive::before {
    content: '✓';
    background: rgba(81, 207, 102, 0.12);
    color: var(--green-soft);
}
.compare-vs {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1rem;
    color: var(--gray);
    align-self: center;
    padding-top: 60px;
}

/* (old perks section removed — replaced by offer section) */

/* =====================
   HERO — micro proof
   ===================== */
.hero-micro-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--gray);
}
.micro-avatars {
    display: flex;
}
.micro-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--black);
    object-fit: cover;
}
.micro-avatars img + img { margin-left: -10px; }

/* =====================
   TRUST BAR
   ===================== */
.trust-bar {
    padding: 32px 0;
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.trust-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 4px;
    display: block;
}

/* =====================
   HOOK — Brief, honest
   ===================== */
.hook {
    padding: 80px 0;
}
.hook-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.hook-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 20px;
}
.hook-inner p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

/* =====================
   WHAT IS IT — Show don't tell
   ===================== */
.what {
    padding: 100px 0;
    background: var(--dark);
}
.what-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}
.what-visual { position: relative; }
.what-screenshot {
    width: 100%;
    max-width: 360px;
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.what-screenshot-2 {
    position: absolute;
    bottom: -24px;
    right: -16px;
    width: 220px;
    border-radius: 14px;
    border: 2px solid var(--dark-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.what-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}
.what-text > p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.what-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}
.what-list li {
    padding: 12px 16px;
    background: rgba(240, 192, 64, 0.03);
    border-left: 3px solid var(--gold-dim);
    border-radius: 0 10px 10px 0;
    color: var(--gray-light);
    font-size: 0.93rem;
    line-height: 1.55;
}
.what-note {
    color: var(--gray);
    font-size: 0.88rem;
    font-style: italic;
}

/* =====================
   WHO — Manfred, honest
   ===================== */
.who {
    padding: 100px 0;
}
.who-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}
.who-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}
.who-text p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 14px;
}
.who-photos {
    display: flex;
    gap: 24px;
    justify-content: center;
}
.who-before,
.who-after { text-align: center; }
.who-before img,
.who-after img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid var(--dark-border);
}
.who-label {
    display: block;
    margin-top: 10px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
}
.gold-tag { color: var(--gold); }

/* =====================
   OFFER — Specifics grid
   ===================== */
.offer {
    padding: 100px 0;
    background: var(--dark);
}
.offer-header {
    text-align: center;
    margin-bottom: 48px;
}
.offer-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.25;
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.offer-card {
    padding: 28px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    transition: 0.3s var(--ease);
}
.offer-card:hover {
    border-color: rgba(240, 192, 64, 0.15);
    transform: translateY(-3px);
}
.offer-icon {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 14px;
}
.offer-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}
.offer-card p {
    color: var(--gray-light);
    font-size: 0.88rem;
    line-height: 1.6;
}
.offer-cta {
    text-align: center;
    margin-top: 40px;
}
.offer-note {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gray);
}

/* =====================
   RISK NOTE — Honest disclaimer
   ===================== */
.risk-note {
    padding: 60px 0;
}
.risk-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 36px;
    background: rgba(255, 107, 107, 0.04);
    border: 1px solid rgba(255, 107, 107, 0.12);
    border-left: 4px solid var(--red-soft);
    border-radius: 14px;
}
.risk-box h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--red-soft);
    margin-bottom: 14px;
}
.risk-box p {
    color: var(--gray-light);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 10px;
}
.risk-box p:last-child { margin-bottom: 0; }

/* =====================
   COURSE
   ===================== */
.course {
    padding: 120px 0;
    background: var(--dark);
}
.course-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.course-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
}
.course-sub {
    color: var(--gray);
    font-size: 1.05rem;
    margin-top: 12px;
}
.course-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}
.course-col {
    padding: 36px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
}
.course-col.featured {
    border-color: rgba(240, 192, 64, 0.25);
    background: linear-gradient(170deg, rgba(240,192,64,0.06) 0%, var(--dark-card) 50%);
}
.course-col h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--dark-border);
}
.topic-list {
    counter-reset: topic;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.topic-list li {
    counter-increment: topic;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.93rem;
    color: var(--gray-light);
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    transition: 0.3s;
}
.topic-list li:hover {
    background: rgba(240, 192, 64, 0.05);
    color: var(--white);
}
.topic-list li::before {
    content: counter(topic);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--gold);
    background: rgba(240, 192, 64, 0.1);
    border-radius: 8px;
}
.course-cta {
    text-align: center;
    margin-top: 48px;
}

/* =====================
   PROOF / TESTIMONIALS
   ===================== */
.proof {
    padding: 120px 0;
}
.proof-header {
    text-align: center;
    margin-bottom: 64px;
}
.proof-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
}
.proof-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto 48px;
}
.proof-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s var(--ease);
}
.proof-card:hover {
    border-color: rgba(240, 192, 64, 0.15);
    transform: translateY(-4px);
}
.proof-screenshot {
    height: 220px;
    overflow: hidden;
}
.proof-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.proof-text {
    padding: 28px;
}
.proof-quote {
    font-style: italic;
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.proof-author strong {
    display: block;
    font-size: 0.9rem;
}
.proof-author span {
    font-size: 0.8rem;
    color: var(--gray);
}
.proof-bridge {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 36px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
}
.proof-bridge p {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* =====================
   FAQ — Objection handling
   ===================== */
.faq {
    padding: 100px 0;
    background: var(--dark);
}
.faq-header {
    text-align: center;
    margin-bottom: 48px;
}
.faq-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s var(--ease);
}
.faq-item[open] {
    border-color: rgba(240, 192, 64, 0.2);
}
.faq-item summary {
    padding: 20px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    color: var(--white);
    transition: 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    margin-left: 16px;
    transition: 0.3s var(--ease);
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item summary:hover {
    color: var(--gold);
}
.faq-item p {
    padding: 0 24px 20px;
    color: var(--gray-light);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* =====================
   FINAL CTA
   ===================== */
.final-cta {
    padding: 80px 0 120px;
}
.cta-box {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 48px;
    background: linear-gradient(170deg, rgba(240,192,64,0.08) 0%, var(--dark-card) 40%);
    border: 1px solid rgba(240, 192, 64, 0.15);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    pointer-events: none;
}
.cta-logo {
    width: 180px;
    max-width: 60%;
    margin: 0 auto 12px;
    position: relative;
    z-index: 1;
}
.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.cta-box > p {
    color: var(--gray);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.cta-form input {
    padding: 16px 20px;
    background: rgba(11, 11, 15, 0.7);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: 0.3s;
}
.cta-form input:focus {
    outline: none;
    border-color: var(--gold-dim);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.cta-form input::placeholder { color: var(--gray); }
.cta-form .btn-gold {
    margin-top: 4px;
}
.cta-reassurance {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.cta-reassurance span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding-top: 64px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand img {
    width: 140px;
    margin-bottom: 14px;
}
.footer-brand p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}
.footer-col a {
    color: var(--gray);
    font-size: 0.88rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray);
}
.footer-social a:hover {
    color: var(--gold);
    border-color: var(--gold-dim);
}
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--dark-border);
    text-align: center;
}
.footer-bottom p {
    color: var(--gray);
    font-size: 0.8rem;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-micro-proof { justify-content: center; }
    .hero-right { order: -1; }
    .hero-video-frame { max-width: 320px; margin: 0 auto; }
    .hero-main-photo { width: 100%; height: 100%; }
    .hero-float-photo { width: 160px; left: -20px; bottom: -10px; }
    .hero-stat-pill { right: -10px; top: 10px; padding: 10px 16px; }

    .what-layout { grid-template-columns: 1fr; gap: 40px; }
    .what-visual { text-align: center; }
    .what-screenshot { max-width: 300px; margin: 0 auto; }
    .what-screenshot-2 { position: static; margin: -16px auto 0; width: 200px; }

    .who-layout { grid-template-columns: 1fr; text-align: center; }
    .who-photos { justify-content: center; }

    .offer-grid { grid-template-columns: repeat(2, 1fr); }

    .freedom-compare { grid-template-columns: 1fr; }
    .compare-vs { padding-top: 0; text-align: center; }

    .course-columns { grid-template-columns: 1fr; }
    .proof-cards { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(11, 11, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 28px 28px;
        gap: 4px;
        transition: 0.4s var(--ease);
        border-left: 1px solid var(--dark-border);
        align-items: stretch;
    }
    .nav-menu.open { right: 0; }
    .nav-menu a { font-size: 1rem; padding: 14px 16px; }

    .hero { padding: 80px 0 60px; }
    .hero h1, .hero .hero-h { font-size: 2rem; }
    .hero-video-frame { max-width: 260px; }
    .hero-main-photo { width: 100%; height: 100%; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stat-pill, .hero-stat-pill-2 { display: none; }

    .trust-items { gap: 24px; }
    .trust-num { font-size: 1.4rem; }

    .who-photos { grid-template-columns: 1fr 1fr; gap: 10px; align-items: stretch; }
    .who-before { transform: translateY(0); }
    .who-after { transform: translateY(0); }
    .risk-box { padding: 24px 20px; }

    .cta-box { padding: 40px 24px; }
    .cta-reassurance { flex-direction: column; align-items: center; gap: 6px; }
    .footer-top { grid-template-columns: 1fr; }
}

/* =====================
   MOBILE POLISH (final pass)
   ===================== */
@media (max-width: 720px) {
    section { overflow-x: hidden; }
    .container { padding: 0 14px; max-width: 100%; }
    .koda-frame { padding: 0; max-width: 100%; }
    .koda-body { padding: 18px 10px 48px; }
    .hero-stat-pill, .hero-stat-pill-2 { right: 4px !important; left: auto !important; }
    .koda-attic { margin-bottom: 18px; }
    .koda-attic h1 { font-size: clamp(1.4rem, 7vw, 1.8rem); margin-bottom: 10px; letter-spacing: -0.5px; }
    .koda-attic .paths-sub { font-size: 0.85rem; line-height: 1.5; }
    .paths-emblem-inline { width: 48px; height: 44px; margin-bottom: 12px; }
    .paths-welcome { font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 8px; }
    .paths-grid { grid-template-columns: 1fr; gap: 10px; }
    .path-vs { padding: 2px 0; }
    .path-vs span { width: 32px; height: 32px; font-size: 0.62rem; }
    .path-card { padding: 14px 12px 14px !important; border-radius: 14px !important; }
    .path-card h3 { font-size: 1.05rem !important; margin-bottom: 2px !important; }
    .path-tagline { font-size: 0.74rem !important; margin-bottom: 10px !important; min-height: 0 !important; line-height: 1.4 !important; }
    .path-badge { font-size: 0.54rem !important; margin-bottom: 8px !important; padding: 2px 7px !important; letter-spacing: 1px !important; }
    .path-promo { font-size: 0.52rem !important; padding: 2px 7px !important; top: -7px !important; right: 10px !important; max-width: calc(100% - 20px); white-space: normal; line-height: 1.2; letter-spacing: 0.5px !important; }
    /* HIDE detail features list on mobile, keep highlights + button */
    .path-features { display: none !important; }
    .path-highlights, .path-highlights-3 { gap: 5px !important; margin-bottom: 10px !important; }
    .path-highlights { grid-template-columns: 1fr 1fr !important; }
    .path-highlights-3 { grid-template-columns: 1fr 1fr 1fr !important; }
    .ph-tile { padding: 7px 4px !important; border-radius: 8px !important; }
    .ph-num { font-size: 0.82rem !important; margin-bottom: 2px !important; letter-spacing: -0.2px !important; }
    .ph-lbl { font-size: 0.48rem !important; line-height: 1.1 !important; letter-spacing: 0.2px !important; word-wrap: break-word; overflow-wrap: anywhere; }
    .path-bonus-note { font-size: 0.62rem !important; padding: 6px 8px !important; line-height: 1.3 !important; margin-bottom: 10px !important; margin-top: -2px !important; }
    .path-actions { gap: 8px !important; margin-top: 4px !important; }
    .path-actions .btn-gold,
    .path-actions .btn-cyan { padding: 10px 12px !important; font-size: 0.78rem !important; letter-spacing: 0.2px !important; }
    .path-more-link { font-size: 0.7rem !important; padding: 6px 8px !important; }
    .paths-question { font-size: 0.88rem; margin-bottom: 18px; padding-bottom: 12px; }
    .paths-note { font-size: 0.76rem; padding: 0 6px; }

    .sonic { padding: 60px 0; }
    .sonic-header { margin-bottom: 32px; }
    .sonic-header h2 { font-size: 1.6rem !important; }
    .sonic-sub { font-size: 0.9rem; }
    .sonic-stats, .sonic-stats-6 { grid-template-columns: 1fr 1fr; gap: 8px; max-width: 100%; }
    .sonic-stat { padding: 14px 8px; border-radius: 14px; }
    .sonic-num, .sonic-stats-6 .sonic-num { font-size: 1.25rem; line-height: 1.1; }
    .sonic-label { font-size: 0.62rem; letter-spacing: 0.4px; margin-top: 6px; line-height: 1.25; }

    .sonic-how { margin-bottom: 36px; }
    .sonic-how h3 { font-size: 1.1rem; margin-bottom: 18px; }
    .sonic-steps li { padding: 12px 14px; gap: 10px; font-size: 0.85rem; }
    .step-num { width: 30px; height: 30px; font-size: 0.85rem; border-radius: 8px; }
    .step-text { font-size: 0.85rem; line-height: 1.45; }

    .sonic-terms { margin-bottom: 36px; max-width: 100%; }
    .sonic-terms h3 { font-size: 1.05rem !important; margin-bottom: 14px; }
    .terms-grid { grid-template-columns: 1fr 1fr !important; gap: 6px !important; margin-bottom: 14px !important; max-width: 100% !important; }
    .term-item { padding: 12px 8px !important; border-radius: 12px !important; min-width: 0 !important; }
    .term-num { font-size: 0.92rem !important; line-height: 1.1 !important; margin-bottom: 3px !important; word-wrap: break-word; overflow-wrap: anywhere; }
    .term-label { font-size: 0.55rem !important; line-height: 1.2 !important; letter-spacing: 0.25px !important; word-wrap: break-word; overflow-wrap: anywhere; }
    .term-item.term-deposits { padding: 12px 10px !important; grid-column: span 2 !important; }
    .term-item.term-deposits .td-title { font-size: 0.7rem !important; margin-bottom: 8px !important; letter-spacing: 0.6px !important; }
    .term-item.term-deposits .td-options { gap: 3px !important; }
    .term-item.term-deposits .td-row { font-size: 0.68rem !important; gap: 4px !important; padding: 4px 6px !important; border-radius: 5px !important; flex-wrap: wrap; min-width: 0; }
    .term-item.term-deposits .td-row strong { font-size: 0.78rem !important; min-width: 32px !important; }
    .term-item.term-deposits .td-tag { font-size: 0.46rem !important; padding: 1px 4px !important; letter-spacing: 0.4px !important; flex-shrink: 0; }
    .sonic-terms-note { font-size: 0.78rem; padding: 10px 12px; line-height: 1.5; margin-top: 6px; }
    .sonic-cta .btn-gold { padding: 13px 18px; font-size: 0.86rem; }
    .sonic-disclaimer { font-size: 0.76rem; line-height: 1.5; }
    .testimonial-section { margin: 38px 0 24px; }

    .mfx-card-single { padding: 20px 16px 22px; }
    .mfx-card-single .mfx-card-head { flex-wrap: wrap; gap: 8px; }
    .mfx-stats-row { grid-template-columns: 1fr 1fr; gap: 8px; }
    .mfx-stat-mini { padding: 10px 6px; }
    .mfx-stat-mini .mfx-num { font-size: 1.1rem; }
    .mfx-stat-mini .mfx-lbl { font-size: 0.6rem; }
    .mfx-bottom { gap: 14px; }

    .amp-flow { flex-direction: column; gap: 10px; }
    .amp-arrow { transform: rotate(90deg); font-size: 1.4rem; }
    .amp-box { min-width: 0; width: 100%; max-width: 280px; padding: 22px 20px; }
    .amp-num { font-size: 1.9rem; }
    .amp-multiplier { width: 64px; height: 64px; font-size: 1.3rem; }
    .amp-tiers { grid-template-columns: 1fr; gap: 12px; }
    .amp-tier { padding: 22px 20px; }
    .amp-rules { grid-template-columns: 1fr; gap: 12px; }
    .amp-rule { padding: 20px 18px; gap: 14px; }
    .amp-rule-num { font-size: 1.4rem; min-width: 56px; }
    .amp-trick { padding: 24px 20px; }
    .amp-trick-steps li { padding: 12px 14px; gap: 12px; }

    .trust-grid { grid-template-columns: 1fr; gap: 14px; }
    .trust-card { padding: 26px 22px; }
    .trust-card-num { font-size: 2.6rem; }
    .why-grid { grid-template-columns: 1fr; gap: 14px; }
    .why-card { padding: 24px 22px; }
    .why-num { font-size: 2.4rem; }

    .signaalid-features { grid-template-columns: 1fr; gap: 12px; }
    .sf-item { padding: 22px 20px; }
    .signaalid-terms .terms-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    .kogukond-grid { grid-template-columns: 1fr; gap: 14px; }
    .kf-card { padding: 24px 22px; }

    .who-layout { grid-template-columns: 1fr; gap: 30px; }
    .who-text h2 { font-size: 1.8rem; }
    .who-photos { grid-template-columns: 1fr 1fr; gap: 8px; }
    .who-photo { aspect-ratio: 3 / 4; }
    .photo-tags li { font-size: 0.72rem; }
    .photo-label { font-size: 0.6rem; padding: 3px 7px; }

    .testimonial-carousel { padding: 0 36px; }
    .carousel-track > img { flex: 0 0 220px; width: 220px; max-height: 380px; }
    .carousel-prev, .carousel-next { width: 36px; height: 36px; font-size: 1.1rem; }

    .testimonial-heading-wrap { flex-direction: column; gap: 12px; }
    .testimonial-heading-big { font-size: 1.5rem !important; text-align: center; }
    .sonic-deco { width: 80px; height: 80px; }

    .course-columns { grid-template-columns: 1fr; gap: 16px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand img { width: 120px; }

    .cta-modal { padding: 16px 12px; }
    .cta-modal-card { max-width: 100%; }
    .cta-modal-iframe { height: 560px; }

    .paths-question { font-size: 1rem; }
}

/* =====================
   LEGAL PAGES (privaatsus, tingimused, riskihoiatus)
   ===================== */
.legal-page { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main {
    flex: 1;
    padding: 130px 0 80px;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}
.legal-content {
    max-width: 760px;
    margin: 0 auto;
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.75;
}
.legal-meta {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-style: italic;
}
.legal-content h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.legal-intro {
    color: var(--white);
    font-size: 1.08rem;
    line-height: 1.7;
    padding: 18px 22px;
    background: rgba(0, 200, 255, 0.05);
    border-left: 3px solid var(--cyan);
    border-radius: 0 12px 12px 0;
    margin-bottom: 36px;
}
.legal-content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold);
    margin: 36px 0 14px;
    line-height: 1.25;
}
.legal-content p { margin-bottom: 14px; }
.legal-content ul, .legal-content ol {
    margin: 0 0 16px;
    padding-left: 22px;
    list-style: disc;
}
.legal-content ol { list-style: decimal; }
.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: inherit;
}
.legal-content strong { color: var(--white); font-weight: 600; }
.legal-content a {
    color: var(--cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0, 200, 255, 0.4);
    text-underline-offset: 3px;
    transition: 0.3s var(--ease);
}
.legal-content a:hover { color: var(--cyan-bright); }
.legal-final {
    margin-top: 36px;
    padding: 18px 22px;
    background: rgba(240, 192, 64, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    color: var(--white);
}

@media (max-width: 720px) {
    .legal-main { padding: 100px 0 60px; }
    .legal-content { font-size: 0.95rem; }
    .legal-content h1 { font-size: 1.7rem; }
    .legal-content h2 { font-size: 1.15rem; margin: 28px 0 10px; }
    .legal-intro, .legal-final { padding: 14px 16px; font-size: 0.95rem; }
}

/* =====================
   REGISTER PAGE (liitu.html)
   ===================== */
.register-page { min-height: 100vh; display: flex; flex-direction: column; }
.register-nav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-back {
    color: var(--gray-light);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s var(--ease);
}
.nav-back:hover { color: var(--gold); }

.register-main {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}
.register-card {
    position: relative;
    z-index: 1;
    max-width: 560px;
    width: 100%;
    padding: 56px 48px 48px;
    background: linear-gradient(180deg, rgba(28, 28, 38, 0.85) 0%, rgba(22, 22, 30, 0.85) 100%);
    border: 1px solid rgba(240, 192, 64, 0.25);
    border-radius: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(240, 192, 64, 0.08);
    text-align: center;
}
.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
}
.register-emblem {
    width: 64px;
    height: 60px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 6px 18px rgba(240, 192, 64, 0.3));
}
.register-emblem svg { width: 100%; height: 100%; }
.register-tag {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.register-card h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 4.4vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.register-sub {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}
.register-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    text-align: left;
}
.rp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(11, 11, 15, 0.55);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.94rem;
    line-height: 1.4;
    transition: 0.3s var(--ease);
}
.rp-item:hover {
    border-color: rgba(240, 192, 64, 0.35);
    transform: translateX(3px);
}
.rp-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.register-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 32px !important;
    font-size: 1.08rem !important;
    margin-bottom: 16px;
}
.register-login {
    color: var(--gray);
    font-size: 0.92rem;
    margin-bottom: 36px;
}
.register-login a {
    color: var(--cyan);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(0, 200, 255, 0.4);
    text-underline-offset: 3px;
}
.register-login a:hover { color: var(--cyan-bright); }
.register-steps-wrap {
    text-align: left;
    margin-bottom: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--dark-border);
}
.register-steps-heading {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.register-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
}
.register-steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(11, 11, 15, 0.45);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--gray-light);
    font-size: 0.92rem;
}
.rs-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 800;
    border-radius: 8px;
    font-size: 0.78rem;
}
.register-reassure {
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.7;
    margin: 0;
}
.footer-minimal {
    padding: 22px 0;
    border-top: 1px solid var(--dark-border);
    text-align: center;
    background: var(--black);
}
.footer-minimal p {
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}
.footer-minimal a {
    color: var(--gray-light);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.15);
    text-underline-offset: 2px;
}
.footer-minimal a:hover { color: var(--gold); }

@media (max-width: 600px) {
    .register-main { padding: 100px 14px 60px; }
    .register-card { padding: 36px 22px 32px; border-radius: 22px; }
    .register-card h1 { font-size: 1.6rem; }
    .register-sub { font-size: 0.92rem; }
    .rp-item { font-size: 0.86rem; padding: 10px 14px; }
    .register-btn { padding: 16px 24px !important; font-size: 0.98rem !important; }
    .register-steps li { font-size: 0.86rem; }
    .nav-back { font-size: 0.82rem; }
}

@media (max-width: 480px) {
    .ph-num { font-size: 0.95rem; }
    .ph-lbl { font-size: 0.52rem; line-height: 1.2; }
    .path-card { padding: 20px 14px 16px; }
    .path-card h3 { font-size: 1.35rem; }
    .term-item.term-deposits .td-options { gap: 5px; }
    .signaalid-terms .terms-grid { grid-template-columns: 1fr; }
    .hero h1, .hero .hero-h { font-size: 1.7rem; }
    .hero-tag { font-size: 0.78rem; letter-spacing: 1.5px; }
    .hero-desc { font-size: 0.92rem; }
    section h2 { font-size: 1.55rem !important; line-height: 1.18; }
    .why-card h3, .trust-card h3, .kf-card h3, .sf-item h3 { font-size: 1.05rem; }
    .why-card p, .trust-card p, .kf-card p, .sf-item p { font-size: 0.88rem; line-height: 1.55; }
    .sonic-num, .term-num { font-size: 1.3rem; }
    .sonic-label, .term-label { font-size: 0.66rem; }
    .amp-rule p { font-size: 0.84rem; }
    .amp-rule h5 { font-size: 0.92rem; }
}

/* =====================
   ZOOMABLE IMAGES
   ===================== */
.zoomable {
    cursor: zoom-in;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.zoomable:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(240, 192, 64, 0.15);
}
/* keep hero photos from breaking layout on hover */
.hero-main-photo.zoomable:hover {
    transform: scale(1.02);
}
.hero-float-photo.zoomable:hover {
    transform: scale(1.05);
}

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    pointer-events: none;
    opacity: 0;
    transition: background 0.35s var(--ease),
                backdrop-filter 0.35s var(--ease),
                opacity 0.35s var(--ease);
}
.lightbox.active {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: auto;
    opacity: 1;
    cursor: zoom-out;
}
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    object-fit: contain;
}
.lightbox.active img {
    transform: scale(1);
    opacity: 1;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    transition: 0.3s var(--ease);
    opacity: 0;
    transform: translateY(-10px);
}
.lightbox.active .lightbox-close {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}
.lightbox-close:hover {
    background: rgba(240, 192, 64, 0.2);
    border-color: var(--gold-dim);
    color: var(--gold);
}

/* =====================
   UTILITIES
   ===================== */
.cyan { color: var(--cyan); }
.cyan-tag { color: var(--cyan) !important; }

/* =====================
   HERO GLOWS + DOT + SECOND PILL
   ===================== */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}
.hero-glow-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
    top: -120px;
    right: -120px;
    animation: glowFloat 12s ease-in-out infinite;
}
.hero-glow-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 65%);
    bottom: -80px;
    left: -80px;
    animation: glowFloat 14s ease-in-out infinite reverse;
}
@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.08); }
}
.hero-tag .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--cyan-glow);
    animation: dotPulse 2s infinite;
    vertical-align: middle;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}
.hero-stat-pill-2 {
    top: auto;
    right: auto;
    bottom: -10px;
    left: -40px;
    border-color: rgba(0, 200, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 200, 255, 0.15);
}
.hero-stat-pill-2 .pill-number.cyan {
    color: var(--cyan);
    text-shadow: 0 0 16px var(--cyan-glow);
}

/* =====================
   TRUST BAR — Modernized
   ===================== */
.trust-bar {
    background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
    position: relative;
}
.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
    opacity: 0.4;
}
.trust-num {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    text-shadow: 0 0 30px var(--gold-glow);
}
.trust-item:nth-child(2) .trust-num {
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--cyan-glow);
}
.trust-label {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.72rem;
}

/* =====================
   WHY-LOSE — 3 reasons
   ===================== */
.why-lose {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.why-lose::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
}
.why-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.why-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 12px 0 18px;
}
.why-sub {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto 64px;
}
.why-card {
    position: relative;
    padding: 36px 32px 32px;
    background: linear-gradient(180deg, rgba(28, 28, 38, 0.7) 0%, rgba(22, 22, 30, 0.7) 100%);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: 0.4s var(--ease);
}
.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 200, 255, 0.25);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 200, 255, 0.08);
}
.why-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.why-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.25;
}
.why-card p {
    color: var(--gray-light);
    font-size: 0.96rem;
    line-height: 1.7;
}
.why-bridge {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.05) 0%, rgba(240, 192, 64, 0.05) 100%);
    border: 1px solid rgba(0, 200, 255, 0.18);
    border-radius: 20px;
}
.why-bridge p {
    color: var(--white);
    font-size: 1.08rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

/* =====================
   CTA MODAL (Brevo form popup)
   ===================== */
.cta-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 24px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}
.cta-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.cta-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 9, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
}
.cta-modal-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    background: linear-gradient(180deg, var(--dark-elevated) 0%, var(--dark-card) 100%);
    border-radius: 24px;
    border: 1px solid var(--dark-border);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(0, 200, 255, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.94) translateY(16px);
    opacity: 0;
    transition: transform 0.5s var(--ease-bounce), opacity 0.35s var(--ease);
}
.cta-modal.active .cta-modal-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.cta-modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
    z-index: 2;
}
.cta-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: 0.3s var(--ease);
}
.cta-modal-close:hover {
    background: rgba(0, 200, 255, 0.12);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: rotate(90deg);
}
.cta-modal-header {
    padding: 36px 36px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-modal-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--cyan);
    margin-bottom: 12px;
}
.cta-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}
.cta-modal-sub {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
}
.cta-modal-iframe {
    width: 100%;
    height: 580px;
    flex: none;
    border: 0;
    background: var(--dark-card);
    display: block;
}

/* =====================
   RESPONSIVE — additions
   ===================== */
@media (max-width: 880px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-card { padding: 28px 24px; }
    .why-num { font-size: 2.8rem; }
}
@media (max-width: 600px) {
    .cta-modal { padding: 12px; }
    .cta-modal-header { padding: 28px 20px 16px; }
    .cta-modal-header h3 { font-size: 1.35rem; }
    .hero-stat-pill-2 {
        position: static;
        margin-top: 16px;
        display: inline-block;
    }
}

/* =====================
   VIDEO FRAME (used in what-section)
   ===================== */
.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    background: var(--dark-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.what-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}
.video-frame-glow {
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0,200,255,0.18), transparent 30%, transparent 70%, rgba(240,192,64,0.18));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    opacity: 0.7;
}
.video-caption {
    margin-top: 14px;
    text-align: center;
    color: var(--gray);
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}

/* =====================
   SONIC AI SECTION
   ===================== */
.sonic {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}
.sonic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 60%);
    filter: blur(140px);
    opacity: 0.35;
    pointer-events: none;
}
.sonic > .container { position: relative; z-index: 1; }
.sonic-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.sonic-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 12px 0 20px;
}
.sonic-sub {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
}
.sonic-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 980px;
    margin: 0 auto 64px;
}
.sonic-stat {
    text-align: center;
    padding: 28px 18px;
    background: linear-gradient(180deg, rgba(28, 28, 38, 0.75) 0%, rgba(22, 22, 30, 0.75) 100%);
    border: 1px solid rgba(0, 200, 255, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sonic-stat:hover {
    border-color: rgba(0, 200, 255, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 200, 255, 0.12);
}
.sonic-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sonic-label {
    display: block;
    margin-top: 10px;
    color: var(--gray);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    line-height: 1.4;
}
.sonic-stats-6 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1080px;
}
.sonic-stats-6 .sonic-num { font-size: 1.85rem; }
@media (max-width: 880px) {
    .sonic-stats { grid-template-columns: repeat(2, 1fr); }
    .sonic-stats-6 { grid-template-columns: repeat(2, 1fr); }
}
.sonic-how {
    max-width: 680px;
    margin: 0 auto 48px;
}
.sonic-how h3 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--white);
}
.sonic-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sonic-steps li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    transition: 0.3s var(--ease);
}
.sonic-steps li:hover {
    border-color: rgba(0, 200, 255, 0.3);
}
.step-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 800;
    border-radius: 10px;
    font-size: 1rem;
}
.step-text {
    color: var(--gray-light);
    font-size: 0.98rem;
    line-height: 1.5;
}
.sonic-testimonials {
    margin: 0 auto 36px;
    max-width: 980px;
}
.sonic-testimonial-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
    padding: 24px;
    border: 1px dashed var(--dark-border);
    border-radius: 16px;
}
.sonic-cta {
    text-align: center;
}
.sonic-disclaimer {
    margin-top: 16px;
    color: var(--gray);
    font-size: 0.85rem;
}
@media (max-width: 880px) {
    .sonic-stats { grid-template-columns: repeat(2, 1fr); }
    .sonic-num { font-size: 1.7rem; }
}

/* =====================
   WHY-LOSE — animated icons + highlights
   ===================== */
.why-card { overflow: hidden; }
.why-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, var(--cyan) 50%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
}
.why-card:hover::after { opacity: 0.8; }
.why-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.12) 0%, rgba(240, 192, 64, 0.08) 100%);
    border: 1px solid rgba(0, 200, 255, 0.2);
    color: var(--cyan);
    transition: 0.4s var(--ease);
}
.why-icon svg {
    width: 24px;
    height: 24px;
    transition: 0.4s var(--ease);
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.22) 0%, rgba(240, 192, 64, 0.16) 100%);
    border-color: var(--cyan);
    box-shadow: 0 0 24px var(--cyan-glow);
}
.why-card:hover .why-icon svg { transform: scale(1.08); }
.why-card .why-num {
    transition: transform 0.6s var(--ease-bounce), opacity 0.6s var(--ease);
    transform-origin: left center;
}
.why-card[data-anim] .why-num {
    transform: scale(0.5) translateY(20px);
    opacity: 0;
}
.why-card[data-anim].in-view .why-num {
    transform: scale(1) translateY(0);
    opacity: 1;
    transition-delay: 0.25s;
}
.hl {
    color: var(--white);
    background: linear-gradient(180deg, transparent 60%, rgba(0, 200, 255, 0.18) 60%);
    padding: 0 2px;
    font-weight: 700;
}

/* =====================
   TRUST REASONS — Forex usaldusväärsus
   ===================== */
.trust-reasons {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.trust-reasons::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -200px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(110px);
    opacity: 0.45;
    pointer-events: none;
}
.trust-reasons::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -180px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    filter: blur(110px);
    opacity: 0.35;
    pointer-events: none;
}
.trust-reasons > .container { position: relative; z-index: 1; }
.trust-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.trust-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.18;
    margin: 12px 0 18px;
}
.trust-sub {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.trust-card {
    position: relative;
    padding: 36px 32px 32px;
    background: linear-gradient(180deg, rgba(28, 28, 38, 0.7) 0%, rgba(22, 22, 30, 0.7) 100%);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}
.trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 192, 64, 0.28);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.trust-card-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.trust-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: var(--white);
}
.trust-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}
.trust-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--cyan);
    font-size: 0.92rem;
    transition: 0.3s var(--ease);
    align-self: flex-start;
    cursor: pointer;
}
.trust-link:hover {
    color: var(--cyan-bright);
    transform: translateX(4px);
}
@media (max-width: 880px) {
    .trust-grid { grid-template-columns: 1fr; }
}

/* =====================
   TESTIMONIAL CAROUSEL (shared)
   ===================== */
.testimonial-section {
    margin: 56px 0 40px;
}
.testimonial-heading {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}
.testimonial-carousel {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 56px;
}
.carousel-viewport {
    overflow: hidden;
    padding: 36px 0;
    -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.carousel-track {
    display: flex;
    gap: 24px;
    align-items: center;
    transition: transform 0.65s var(--ease);
    will-change: transform;
}
.carousel-track > img {
    flex: 0 0 340px;
    width: 340px;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    border-radius: 18px;
    border: 1px solid var(--dark-border);
    transform: scale(0.82);
    opacity: 0.35;
    filter: blur(0.5px);
    cursor: zoom-in;
    transition: transform 0.55s var(--ease), opacity 0.55s var(--ease), filter 0.55s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    display: block;
    background: var(--dark-card);
}
.carousel-track > img.active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 60px rgba(0, 200, 255, 0.18);
}
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s var(--ease);
    font-family: var(--font-display);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-prev:hover,
.carousel-next:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 6px 22px var(--gold-glow);
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dark-border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: 0.3s var(--ease);
}
.carousel-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}
@media (max-width: 880px) {
    .testimonial-carousel { padding: 0 50px; }
    .carousel-track > img { flex: 0 0 260px; width: 260px; }
    .carousel-track { gap: 16px; }
}
@media (max-width: 540px) {
    .testimonial-carousel { padding: 0 40px; }
    .carousel-track > img { flex: 0 0 220px; width: 220px; }
    .carousel-prev, .carousel-next { width: 38px; height: 38px; font-size: 1.2rem; }
}

/* =====================
   SONIC TERMS BLOCK
   ===================== */
.sonic-terms {
    max-width: 980px;
    margin: 0 auto 56px;
}
.sonic-terms h3 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--white);
}
.terms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}
.term-item {
    text-align: center;
    padding: 28px 16px;
    background: linear-gradient(180deg, rgba(28,28,38,0.85) 0%, rgba(22,22,30,0.85) 100%);
    border: 1px solid rgba(240, 192, 64, 0.25);
    border-radius: 18px;
    transition: 0.4s var(--ease);
}
.term-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px var(--gold-glow);
}
.term-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.7rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.term-label {
    display: block;
    color: var(--gray);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.4;
}
.capital-trick {
    padding: 30px 32px;
    background: linear-gradient(135deg, rgba(0,200,255,0.06) 0%, rgba(240,192,64,0.06) 100%);
    border: 1px solid rgba(0, 200, 255, 0.22);
    border-radius: 20px;
}
.capital-trick h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--cyan);
    margin-bottom: 12px;
}
.capital-trick p {
    color: var(--gray-light);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.trick-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.trick-steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(11, 11, 15, 0.5);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    color: var(--gray-light);
    font-size: 0.93rem;
}
.step-mini {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 800;
    border-radius: 8px;
    font-size: 0.85rem;
}
@media (max-width: 720px) {
    .terms-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================
   WHO — before/after photos with emotional tags
   ===================== */
.who {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.who::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -180px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(110px);
    opacity: 0.35;
    pointer-events: none;
}
.who-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.who-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 22px;
}
.who-text p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}
.who-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.who-photo {
    position: relative;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    aspect-ratio: 3 / 4;
    transition: 0.4s var(--ease);
}
.who-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% center;
    cursor: zoom-in;
    transition: 0.5s var(--ease);
}
.who-before img {
    object-position: center;
}
.who-before { transform: translateY(20px); }
.who-after  { transform: translateY(-20px); }
.who-before img { filter: grayscale(0.55) brightness(0.85); }
.who-before:hover img { filter: grayscale(0.3) brightness(0.95); transform: scale(1.04); }
.who-after:hover img  { transform: scale(1.04); }
.who-photo .photo-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px 16px 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 11, 15, 0.95) 60%);
    color: var(--white);
}
.photo-label {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: var(--red-soft);
    border-radius: 6px;
    margin-bottom: 10px;
}
.photo-label.gold {
    background: rgba(240, 192, 64, 0.15);
    border-color: rgba(240, 192, 64, 0.5);
    color: var(--gold);
}
.photo-tags {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.photo-tags li {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-light);
}
.who-after .photo-tags li {
    color: var(--white);
    font-weight: 600;
}
@media (max-width: 880px) {
    .who-layout { grid-template-columns: 1fr; gap: 36px; }
    .who-photos { order: -1; }
}

/* =====================
   PATHS — Sonic vs Signaalid comparison
   ===================== */
.paths {
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
}
.paths::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    filter: blur(130px);
    opacity: 0.4;
    pointer-events: none;
}
.paths::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -200px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(130px);
    opacity: 0.4;
    pointer-events: none;
}
.paths > .container { position: relative; z-index: 1; }
.paths-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.paths-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 12px 0 18px;
}
.paths-sub {
    color: var(--gray-light);
    font-size: 1.08rem;
    line-height: 1.7;
}
.paths-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
}
.path-card {
    position: relative;
    padding: 40px 34px 36px;
    background: linear-gradient(180deg, rgba(28,28,38,0.85) 0%, rgba(22,22,30,0.85) 100%);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    transition: 0.4s var(--ease);
}
.path-card:hover {
    transform: translateY(-6px);
}
.path-passive {
    border-color: rgba(240, 192, 64, 0.35);
    box-shadow: 0 0 0 1px rgba(240, 192, 64, 0.05);
}
.path-passive:hover {
    border-color: var(--gold);
    box-shadow: 0 24px 60px var(--gold-glow);
}
.path-active {
    border-color: rgba(0, 200, 255, 0.3);
}
.path-active:hover {
    border-color: var(--cyan);
    box-shadow: 0 24px 60px var(--cyan-glow);
}
.path-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    align-self: flex-start;
}
.path-passive .path-badge {
    background: rgba(240, 192, 64, 0.15);
    border: 1px solid rgba(240, 192, 64, 0.45);
    color: var(--gold);
}
.path-active .path-badge {
    background: rgba(0, 200, 255, 0.12);
    border: 1px solid rgba(0, 200, 255, 0.45);
    color: var(--cyan);
}
.path-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}
.path-passive h3 { color: var(--gold); }
.path-active h3 { color: var(--cyan); }
.path-tagline {
    color: var(--gray-light);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 22px;
    min-height: 50px;
}

/* Path highlights — prominent stat tiles */
.path-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.path-highlights-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}
.path-highlights-3 .ph-num { font-size: 1.45rem; }
.path-highlights-3 .ph-lbl { font-size: 0.66rem; }
.path-bonus-note {
    margin-top: -10px;
    margin-bottom: 22px;
    padding: 10px 14px;
    background: rgba(255, 159, 67, 0.06);
    border: 1px solid rgba(255, 159, 67, 0.2);
    border-radius: 10px;
    color: var(--gray-light);
    font-size: 0.82rem;
    line-height: 1.5;
}
.path-bonus-note strong {
    color: var(--white);
}
.ph-promo-soft {
    border-color: rgba(255, 200, 100, 0.35);
    background: linear-gradient(180deg, rgba(255, 200, 100, 0.08) 0%, rgba(11, 11, 15, 0.55) 100%);
}
.ph-promo-soft .ph-num {
    background: linear-gradient(135deg, #ffc864 0%, #ff9f43 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ph-tile {
    padding: 18px 14px 16px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid var(--dark-border);
    background: rgba(11, 11, 15, 0.6);
    position: relative;
    transition: 0.4s var(--ease);
}
.ph-tile:hover {
    transform: translateY(-2px);
}
.ph-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.ph-lbl {
    display: block;
    color: var(--gray);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.35;
    font-weight: 500;
}
.ph-gold {
    border-color: rgba(240, 192, 64, 0.45);
    background: linear-gradient(180deg, rgba(240, 192, 64, 0.1) 0%, rgba(11, 11, 15, 0.55) 100%);
}
.ph-gold .ph-num {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ph-cyan {
    border-color: rgba(0, 200, 255, 0.4);
    background: linear-gradient(180deg, rgba(0, 200, 255, 0.08) 0%, rgba(11, 11, 15, 0.55) 100%);
}
.ph-cyan .ph-num {
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ph-promo {
    border-color: rgba(255, 159, 67, 0.45);
    background: linear-gradient(180deg, rgba(255, 159, 67, 0.13) 0%, rgba(11, 11, 15, 0.55) 100%);
}
.ph-promo .ph-num {
    background: linear-gradient(135deg, #ff9f43 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.path-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.path-features li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dark-border);
    font-size: 0.92rem;
}
.path-features li:last-child {
    border-bottom: none;
}
.pf-key {
    color: var(--gray);
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.7px;
    flex-shrink: 0;
}
.pf-val {
    color: var(--white);
    font-weight: 500;
    text-align: right;
}
.path-more {
    margin-top: 14px;
    text-align: center;
    color: var(--gray);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s var(--ease);
}
.path-more:hover { color: var(--white); }
.path-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}
.path-vs span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border: 1px solid var(--dark-border);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--gray);
}
.btn-cyan {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan) 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: 0.4px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: background-position 0.5s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow:
        0 6px 24px var(--cyan-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-cyan::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
    transform: translateX(-110%);
    transition: transform 0.7s var(--ease);
    pointer-events: none;
}
.btn-cyan:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow:
        0 14px 44px var(--cyan-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-cyan:hover::after { transform: translateX(110%); }
.paths-note {
    text-align: center;
    margin-top: 36px;
    color: var(--gray-light);
    font-size: 0.95rem;
    font-style: italic;
}

/* Koda house frame: roof SVG + walls/floor borders + door cutout */
.koda-frame {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
}
.koda-roof-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: -2px;
}
.koda-roof-line {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}
/* Chimney as CSS, doesn't stretch with viewBox */
.koda-chimney {
    position: absolute;
    right: 22%;
    top: 38%;
    width: 28px;
    height: 56px;
    background: linear-gradient(180deg, rgba(11,11,15,0.95) 0%, rgba(28,28,38,0.85) 100%);
    border: 2px solid var(--gold);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    z-index: 2;
}
.koda-chimney::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    height: 5px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
    box-shadow: 0 -2px 8px rgba(240, 192, 64, 0.5);
}
.koda-smoke {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    pointer-events: none;
}
.koda-smoke span {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(154, 154, 171, 0.45);
    border-radius: 50%;
    filter: blur(2px);
    transform: translateX(-50%);
    animation: smokeRise 4s ease-in infinite;
    opacity: 0;
}
.koda-smoke span:nth-child(2) { animation-delay: 1.3s; }
.koda-smoke span:nth-child(3) { animation-delay: 2.6s; }
@keyframes smokeRise {
    0% { opacity: 0; transform: translateX(-50%) translateY(0) scale(0.6); }
    20% { opacity: 0.6; }
    100% { opacity: 0; transform: translateX(calc(-50% - 6px)) translateY(-50px) scale(2.2); }
}

/* Apex emblem: gold star with cyan glow */
.koda-apex {
    position: absolute;
    top: 0;
    left: 50%;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -45%);
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.7)) drop-shadow(0 0 20px rgba(240, 192, 64, 0.5));
    animation: apexPulse 3s ease-in-out infinite;
}
.koda-apex svg { width: 100%; height: 100%; display: block; }
@keyframes apexPulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.7)) drop-shadow(0 0 20px rgba(240, 192, 64, 0.5)); }
    50% { filter: drop-shadow(0 0 16px rgba(0, 200, 255, 0.95)) drop-shadow(0 0 28px rgba(240, 192, 64, 0.7)); }
}

/* Decorative candlesticks growing inside the house (trading hint) */
.koda-candles {
    position: absolute;
    bottom: 6px;
    left: 8%;
    width: 200px;
    height: 30px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    z-index: 1;
    opacity: 0.55;
    pointer-events: none;
}
.kc {
    width: 6px;
    background: var(--gold);
    border-radius: 1px;
    position: relative;
}
.kc::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -4px;
    bottom: -4px;
    width: 1px;
    background: var(--gold);
    transform: translateX(-50%);
}
.kc-1 { height: 8px; opacity: 0.5; }
.kc-2 { height: 14px; background: var(--cyan); opacity: 0.7; }
.kc-2::before { background: var(--cyan); }
.kc-3 { height: 11px; opacity: 0.55; }
.kc-4 { height: 18px; background: var(--cyan); opacity: 0.75; }
.kc-4::before { background: var(--cyan); }
.kc-5 { height: 22px; opacity: 0.65; }

@media (max-width: 720px) {
    .koda-roof-wrap { height: 130px; }
    .koda-chimney { width: 22px; height: 42px; right: 20%; }
    .koda-apex { width: 22px; height: 22px; }
    .koda-candles { display: none; }
}
.koda-body {
    position: relative;
    border-left: 2.5px solid;
    border-right: 2.5px solid;
    border-bottom: 2.5px solid;
    border-image: linear-gradient(180deg, rgba(255, 215, 0, 0.95), rgba(201, 162, 39, 0.55) 70%, rgba(201, 162, 39, 0.55)) 1;
    background: linear-gradient(180deg, rgba(240,192,64,0.04) 0%, transparent 30%, transparent 100%);
    padding: 36px 32px 80px;
}
.koda-attic {
    text-align: center;
    margin-bottom: 32px;
}
.koda-attic .paths-welcome {
    margin: 0 0 12px;
}
.koda-attic h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.koda-attic .paths-sub {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.koda-question {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gray-light);
    letter-spacing: 0.4px;
    margin: 0 0 28px;
    position: relative;
    padding-bottom: 18px;
}
.koda-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.koda-rooms {
    margin-bottom: 24px;
}
.paths-note {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.92rem;
    font-style: italic;
    margin: 12px 0 24px;
}
.koda-door {
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    width: 96px;
    height: 70px;
    background: var(--black);
    border: 2.5px solid var(--gold);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    z-index: 2;
}
.koda-door-knob {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-glow);
}
@media (max-width: 720px) {
    .koda-roof { height: 130px; }
    .koda-body { padding: 28px 18px 70px; }
    .koda-door { width: 80px; height: 60px; }
}

/* Paths hero (text + video split) — legacy, no longer used but kept for safety */
.paths-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}
.paths-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.paths-emblem-inline {
    width: 64px;
    height: 60px;
    margin-bottom: 18px;
    opacity: 0.92;
}
.paths-emblem-inline svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 18px rgba(240, 192, 64, 0.3));
}
.paths-hero-text .paths-welcome {
    margin-top: 0;
    margin-bottom: 12px;
}
.paths-hero-text h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}
.paths-hero-text .paths-sub {
    margin-bottom: 30px;
    text-align: left;
}
.paths-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.paths-hero-media {
    position: relative;
    display: flex;
    justify-content: center;
}
.paths-video {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 24px;
    border: 1px solid var(--dark-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    display: block;
}
.paths-pill {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 14px 22px;
    z-index: 3;
    text-align: center;
    backdrop-filter: blur(10px);
}
.paths-pill-2 {
    bottom: 80px;
    left: -20px;
    top: auto;
    right: auto;
    border-color: rgba(0, 200, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 200, 255, 0.15);
}
.paths-question-wrap {
    text-align: center;
    margin-bottom: 40px;
}
@media (max-width: 880px) {
    .paths-hero { grid-template-columns: 1fr; gap: 40px; }
    .paths-hero-text { align-items: center; text-align: center; }
    .paths-hero-text .paths-sub { text-align: center; }
    .paths-cta-row { justify-content: center; }
    .paths-pill, .paths-pill-2 { display: none; }
}
.paths-welcome {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    margin-top: 60px;
}
.paths-header h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.paths-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 0 18px;
}
.paths-divider span {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: relative;
}
.paths-divider span::before,
.paths-divider span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}
.paths-divider span::before { left: -16px; }
.paths-divider span::after  { right: -16px; }
.paths-question {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gray-light);
    letter-spacing: 0.5px;
}

/* Path action stack: bigger button + visible "loe rohkem" link */
.path-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-top: 8px;
}
.path-actions .btn-gold,
.path-actions .btn-cyan {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 0.98rem;
}
.path-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--dark-border);
    background: rgba(11, 11, 15, 0.4);
    transition: 0.3s var(--ease);
    text-align: center;
}
.path-more-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}
.path-active .path-more-link:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* =====================
   VIDEO SOUND BUTTON
   ===================== */
.video-sound-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    background: rgba(11, 11, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 200, 255, 0.5);
    border-radius: 30px;
    color: var(--cyan);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    cursor: pointer;
    z-index: 4;
    transition: 0.3s var(--ease);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 200, 255, 0.18);
    animation: soundBtnPulse 2.4s ease-in-out infinite;
}
@keyframes soundBtnPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(0, 200, 255, 0.4); }
    50% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 12px rgba(0, 200, 255, 0); }
}
.video-sound-btn:hover {
    background: var(--cyan);
    color: var(--black);
    border-color: var(--cyan-bright);
    transform: translateX(-50%) translateY(-2px);
    animation: none;
}
.vs-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.vs-icon svg {
    width: 18px;
    height: 18px;
}
.video-sound-btn .vs-on-icon { display: none; }
.video-sound-btn.is-on .vs-muted-icon { display: none; }
.video-sound-btn.is-on .vs-on-icon { display: block; }
.video-sound-btn.is-on {
    border-color: var(--gold);
    color: var(--gold);
    animation: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 24px var(--gold-glow);
}
.video-sound-btn.is-on:hover {
    background: var(--gold);
    color: var(--black);
}
@media (max-width: 880px) {
    .paths-grid { grid-template-columns: 1fr; gap: 16px; }
    .path-vs { padding: 0; }
    .path-vs span { width: 44px; height: 44px; font-size: 0.78rem; }
}

/* =====================
   MYFXBOOK SECTION
   ===================== */
.myfxbook {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
    overflow: hidden;
}
.mfx-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 1;
}
.mfx-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 12px 0 18px;
}
.mfx-sub {
    color: var(--gray-light);
    font-size: 1.02rem;
    line-height: 1.7;
}
.mfx-cards {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.mfx-card {
    padding: 32px 30px;
    background: linear-gradient(180deg, rgba(28,28,38,0.85) 0%, rgba(22,22,30,0.85) 100%);
    border: 1px solid var(--dark-border);
    border-radius: 22px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
}
.mfx-card-main {
    border-color: rgba(240, 192, 64, 0.3);
}
.mfx-card-side {
    border-color: rgba(0, 200, 255, 0.25);
}
.mfx-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.mfx-tag, .mfx-tag-cyan {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 6px;
}
.mfx-tag {
    background: rgba(240, 192, 64, 0.14);
    border: 1px solid rgba(240, 192, 64, 0.4);
    color: var(--gold);
}
.mfx-tag-cyan {
    background: rgba(0, 200, 255, 0.12);
    border: 1px solid rgba(0, 200, 255, 0.4);
    color: var(--cyan);
}
.mfx-live {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    color: #51cf66;
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}
.mfx-card h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--white);
}
.mfx-meta {
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 22px;
}
.mfx-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.mfx-stat {
    padding: 18px 14px;
    background: rgba(11, 11, 15, 0.5);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    text-align: center;
}
.mfx-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}
.mfx-lbl {
    color: var(--gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    line-height: 1.3;
}
.mfx-btn {
    align-self: stretch;
    text-align: center;
    margin-top: auto;
}
.mfx-card-side .mfx-explanation,
.mfx-card-side .mfx-tip {
    color: var(--gray-light);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 12px;
}
.mfx-card-side .mfx-tip {
    padding: 14px 16px;
    background: rgba(0, 200, 255, 0.06);
    border: 1px solid rgba(0, 200, 255, 0.18);
    border-radius: 12px;
    color: var(--cyan);
    font-style: italic;
    margin-top: auto;
    margin-bottom: 0;
}
@media (max-width: 880px) {
    .mfx-cards { grid-template-columns: 1fr; }
}
.mfx-full {
    width: 100%;
}
.mfx-stats-4 {
    grid-template-columns: repeat(4, 1fr);
}
.mfx-stats-2x2 {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 880px) {
    .mfx-stats-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Single card layout: full screenshot + stats row + button */
.mfx-card-single {
    max-width: 1080px;
    margin: 0 auto;
    padding: 30px 32px 28px;
    background: linear-gradient(180deg, rgba(28,28,38,0.85) 0%, rgba(22,22,30,0.85) 100%);
    border: 1px solid rgba(240, 192, 64, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.mfx-card-single .mfx-card-head {
    margin-bottom: 22px;
}
.mfx-shot-full {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    margin-bottom: 24px;
    background: var(--dark-elevated);
    display: block;
    transition: 0.4s var(--ease);
}
.mfx-shot-full:hover {
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 14px 40px rgba(0, 200, 255, 0.15);
}
.mfx-shot-full img {
    width: 100%;
    height: auto;
    display: block;
}
.mfx-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.mfx-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    flex: 1;
    min-width: 320px;
}
.mfx-stat-mini {
    text-align: center;
    padding: 14px 10px;
    background: rgba(11, 11, 15, 0.6);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    transition: 0.3s var(--ease);
}
.mfx-stat-mini:hover {
    border-color: rgba(240, 192, 64, 0.35);
}
.mfx-stat-mini .mfx-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mfx-stat-mini .mfx-lbl {
    display: block;
    margin-top: 4px;
    color: var(--gray);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    line-height: 1.3;
}
.mfx-card-single .mfx-btn {
    flex-shrink: 0;
    padding: 14px 26px;
    font-size: 0.95rem;
}
.mfx-shot-caption {
    color: var(--gray);
    font-size: 0.86rem;
    line-height: 1.65;
    font-style: italic;
    margin-top: 22px;
    text-align: center;
}
@media (max-width: 720px) {
    .mfx-bottom { flex-direction: column; }
    .mfx-stats-row { grid-template-columns: repeat(2, 1fr); width: 100%; }
    .mfx-card-single .mfx-btn { width: 100%; text-align: center; }
}

/* =====================
   PATH PROMO BADGE
   ===================== */
.path-promo {
    position: absolute;
    top: -14px;
    right: 22px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff9f43 100%);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(255, 107, 107, 0.35);
    transform: rotate(2deg);
}

/* =====================
   AMPLIFIED ACCOUNTS SECTION
   ===================== */
.amplified {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.amplified::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 60%);
    filter: blur(140px);
    opacity: 0.32;
    pointer-events: none;
}
.amplified > .container {
    position: relative;
    z-index: 1;
}
.amp-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px;
}
.amp-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.18;
    margin: 12px 0 18px;
}
.amp-sub {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
}
.amp-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 880px;
    margin: 0 auto 56px;
    flex-wrap: wrap;
}
.amp-box {
    flex: 0 0 auto;
    min-width: 200px;
    padding: 28px 30px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 18px;
    text-align: center;
    transition: 0.4s var(--ease);
}
.amp-box-glow {
    border-color: var(--cyan);
    box-shadow: 0 0 0 2px rgba(0, 200, 255, 0.12), 0 24px 60px var(--cyan-glow);
}
.amp-tag {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 10px;
}
.amp-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--white);
}
.amp-num.cyan {
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.amp-sub-text {
    display: block;
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 8px;
}
.amp-arrow {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
}
.amp-multiplier {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan) 100%);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px var(--cyan-glow);
}
.amp-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto 56px;
}
.amp-tier {
    padding: 28px 26px;
    background: linear-gradient(180deg, rgba(28,28,38,0.85) 0%, rgba(22,22,30,0.85) 100%);
    border: 1px solid var(--dark-border);
    border-radius: 18px;
    text-align: center;
    transition: 0.4s var(--ease);
}
.amp-tier:hover {
    transform: translateY(-3px);
}
.amp-tier-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.amp-tier-title.gold { color: var(--gold); }
.amp-tier-title.cyan { color: var(--cyan); }
.amp-tier p {
    color: var(--gray-light);
    font-size: 0.92rem;
    line-height: 1.6;
}
.amp-tier-pro {
    border-color: rgba(0, 200, 255, 0.35);
}
.amp-tier-pro:hover {
    border-color: var(--cyan);
    box-shadow: 0 16px 40px var(--cyan-glow);
}
.amp-rules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto 56px;
}
.amp-rule {
    display: flex;
    gap: 18px;
    padding: 26px 24px;
    background: linear-gradient(180deg, rgba(28,28,38,0.7) 0%, rgba(22,22,30,0.7) 100%);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
}
.amp-rule-num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.7rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 70px;
}
.amp-rule h5 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
}
.amp-rule p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}
.amp-trick {
    max-width: 860px;
    margin: 0 auto;
    padding: 36px 36px 32px;
    background: linear-gradient(135deg, rgba(0,200,255,0.06) 0%, rgba(240,192,64,0.06) 100%);
    border: 1px solid rgba(0, 200, 255, 0.22);
    border-radius: 22px;
}
.amp-trick h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--cyan);
    margin-bottom: 8px;
    text-align: center;
}
.amp-trick-lead {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 26px;
}
.amp-trick-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
}
.amp-trick-steps li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: rgba(11, 11, 15, 0.55);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
}
.amp-trick-steps strong {
    color: var(--white);
    font-weight: 700;
}
.amp-trick-steps li > div {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (max-width: 880px) {
    .amp-flow { flex-direction: column; gap: 14px; }
    .amp-arrow { transform: rotate(90deg); }
    .amp-tiers { grid-template-columns: 1fr; }
    .amp-rules { grid-template-columns: 1fr; }
}

/* =====================
   SIGNAALID TERMS BLOCK + PROMO
   ===================== */
.signaalid-terms {
    max-width: 980px;
    margin: 56px auto 0;
}
.signaalid-terms h3 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}
.term-item.term-deposits {
    text-align: left;
    padding: 22px 22px;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: center;
}
.term-item.term-deposits .td-options {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.term-item.term-deposits .td-options .td-row {
    flex: 1;
}
@media (max-width: 720px) {
    .term-item.term-deposits {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .term-item.term-deposits .td-options {
        flex-direction: column !important;
    }
}
.term-item.term-deposits .td-title {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
    text-align: center;
}
.term-item.term-deposits .td-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.term-item.term-deposits .td-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(11, 11, 15, 0.45);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-light);
}
.term-item.term-deposits .td-row strong {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 56px;
}
.term-item.term-deposits .td-tag {
    margin-left: auto;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 7px;
    background: rgba(0, 200, 255, 0.12);
    border: 1px solid rgba(0, 200, 255, 0.4);
    color: var(--cyan);
    border-radius: 5px;
}
@media (max-width: 720px) {
    .term-item.term-deposits { grid-column: span 1; }
}

/* Sonic testimonial heading with character decoration */
.testimonial-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
}
.testimonial-heading-big {
    font-size: clamp(1.6rem, 3.4vw, 2.4rem) !important;
    margin-bottom: 0 !important;
    line-height: 1.15;
    text-align: left;
}
.sonic-deco {
    width: 110px;
    height: 110px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 2px solid rgba(0, 200, 255, 0.45);
    box-shadow: 0 8px 32px rgba(0, 200, 255, 0.25);
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .testimonial-heading-wrap { flex-direction: column; gap: 14px; }
    .testimonial-heading-big { text-align: center; }
    .sonic-deco { width: 84px; height: 84px; }
}

/* Amplified h2 sizing for clean 2-line wrap */
.amp-h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
    line-height: 1.25 !important;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 720px) {
    .amp-h2 br { display: none; }
}

/* 24x tier badge + temporary note */
.amp-tier-pro {
    position: relative;
}
.amp-tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan) 100%);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.66rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 6px 16px var(--cyan-glow);
    white-space: nowrap;
}
.amp-tier-note {
    margin-top: 12px !important;
    padding: 10px 12px;
    background: rgba(255, 159, 67, 0.08);
    border: 1px solid rgba(255, 159, 67, 0.3);
    border-radius: 8px;
    color: var(--gray-light) !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    font-style: italic;
}
.term-item.term-promo {
    border-color: rgba(255, 159, 67, 0.45);
    background: linear-gradient(180deg, rgba(255, 159, 67, 0.12) 0%, rgba(255, 107, 107, 0.08) 100%);
    position: relative;
}
.term-item.term-promo::before {
    content: 'KINGITUS';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ff9f43 100%);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.62rem;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(255, 107, 107, 0.4);
}
.terms-promo-note {
    margin-top: 24px;
    padding: 18px 22px;
    background: rgba(255, 159, 67, 0.06);
    border: 1px solid rgba(255, 159, 67, 0.25);
    border-radius: 14px;
    color: var(--gray-light);
    font-size: 0.93rem;
    line-height: 1.65;
}
.terms-promo-note strong {
    color: var(--white);
}
.sonic-terms-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 24px;
    font-style: italic;
}
.sonic-terms-note a.cyan {
    color: var(--cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0, 200, 255, 0.4);
    text-underline-offset: 3px;
}
.sonic-terms-note a.cyan:hover {
    color: var(--cyan-bright);
}

/* =====================
   SIGNAALID SECTION
   ===================== */
.signaalid {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}
.signaalid::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -150px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
}
.signaalid > .container { position: relative; z-index: 1; }
.signaalid-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}
.signaalid-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 12px 0 18px;
}
.signaalid-eyebrow {
    color: var(--cyan);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    margin: -6px 0 16px;
}
.signaalid-sub {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
}
.signaalid-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto 56px;
}
.sf-item {
    padding: 28px 26px;
    background: linear-gradient(180deg, rgba(28,28,38,0.7) 0%, rgba(22,22,30,0.7) 100%);
    border: 1px solid var(--dark-border);
    border-radius: 18px;
    transition: 0.4s var(--ease);
}
.sf-item:hover {
    border-color: rgba(240, 192, 64, 0.3);
    transform: translateY(-3px);
}
.sf-item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.sf-item p {
    color: var(--gray-light);
    font-size: 0.93rem;
    line-height: 1.65;
}
.signaalid-screenshot {
    max-width: 880px;
    margin: 0 auto 32px;
    text-align: center;
}
.signaalid-screenshot img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    cursor: zoom-in;
    transition: 0.4s var(--ease);
}
.signaalid-screenshot img:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 200, 255, 0.35);
    box-shadow: 0 28px 70px rgba(0, 200, 255, 0.15);
}
.screenshot-caption {
    margin-top: 16px;
    color: var(--gray);
    font-size: 0.88rem;
    font-style: italic;
}
.signaalid-cta {
    text-align: center;
    margin-top: 16px;
}
@media (max-width: 880px) {
    .signaalid-features { grid-template-columns: 1fr; }
}

/* =====================
   KOGUKOND SECTION
   ===================== */
.kogukond {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.kogukond::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -180px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}
.kogukond > .container { position: relative; z-index: 1; }
.kogukond-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}
.kogukond-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 12px 0 18px;
}
.kogukond-sub {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.7;
}
.kogukond-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 32px;
}
.kf-card {
    padding: 32px 30px;
    background: linear-gradient(180deg, rgba(28,28,38,0.7) 0%, rgba(22,22,30,0.7) 100%);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    transition: 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.kf-card:hover {
    border-color: rgba(0, 200, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.kf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s var(--ease);
}
.kf-card:hover::before { opacity: 1; }
.kf-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.12) 0%, rgba(240, 192, 64, 0.08) 100%);
    border: 1px solid rgba(0, 200, 255, 0.2);
    color: var(--cyan);
    margin-bottom: 18px;
    transition: 0.4s var(--ease);
}
.kf-icon svg {
    width: 22px;
    height: 22px;
    transition: 0.4s var(--ease);
}
.kf-card:hover .kf-icon {
    background: linear-gradient(135deg, rgba(240, 192, 64, 0.18) 0%, rgba(0, 200, 255, 0.12) 100%);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 24px var(--gold-glow);
}
.kf-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}
.kf-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.65;
}
.kogukond-cta {
    text-align: center;
}
@media (max-width: 720px) {
    .kogukond-grid { grid-template-columns: 1fr; }
}
