/* ================================================
   LANDING PAGE — FINTECH DESIGN
   Scoped under #landingPage to avoid conflicts
   ================================================ */

/* ===== RESET & BASE FOR LANDING ===== */
#landingPage {
    --navy-deep: #0a1628;
    --navy: #0f1f3a;
    --navy-mid: #132744;
    --teal-deep: #0c2e3f;
    --teal: #134e5e;
    --purple-navy: #1a1040;
    --gold: #d4a84b;
    --gold-light: #e8c87a;
    --gold-dim: rgba(212, 168, 75, 0.15);
    --gold-glow: rgba(212, 168, 75, 0.08);
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-04: rgba(255, 255, 255, 0.04);
    --card-bg: rgba(15, 23, 42, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
    --shadow-card:
        0 0 0 1px rgba(255,255,255,0.05),
        0 2px 4px rgba(0,0,0,0.2),
        0 12px 24px rgba(0,0,0,0.25),
        0 24px 48px rgba(0,0,0,0.15);
    --shadow-elevated:
        0 0 0 1px rgba(255,255,255,0.06),
        0 4px 8px rgba(0,0,0,0.25),
        0 16px 32px rgba(0,0,0,0.3),
        0 32px 64px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    color: var(--white);
    line-height: 1.6;
    background: transparent;
    position: relative;
}

/* ===== ANIMATED GRADIENT BACKGROUND ===== */
#landingPage .gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(
        135deg,
        #162a4a 0%,
        #1e3555 8%,
        #1a1040 18%,
        #0f1f3a 28%,
        #132744 38%,
        #0c2e3f 48%,
        #134e5e 55%,
        #1a3a4a 62%,
        #2a1f35 72%,
        #1a1040 80%,
        #0f2439 88%,
        #1e3555 94%,
        #162a4a 100%
    );
    background-size: 400% 400%;
    animation: landingMeshGradient 35s ease-in-out infinite;
}

#landingPage .gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(212,168,75,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 10%, rgba(19,78,94,0.18) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 50% 80%, rgba(26,16,64,0.20) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 90% 70%, rgba(212,168,75,0.08) 0%, transparent 50%);
    animation: landingMeshOverlay 25s ease-in-out infinite alternate;
}

#landingPage .gradient-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 50% at 30% 60%, rgba(19,78,94,0.14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 70% 40%, rgba(212,168,75,0.10) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 20%, rgba(100,60,180,0.08) 0%, transparent 50%);
    animation: landingMeshOverlay2 30s ease-in-out infinite alternate-reverse;
}

@keyframes landingMeshGradient {
    0% { background-position: 0% 0%; }
    20% { background-position: 40% 80%; }
    40% { background-position: 100% 50%; }
    60% { background-position: 60% 0%; }
    80% { background-position: 20% 60%; }
    100% { background-position: 0% 0%; }
}

@keyframes landingMeshOverlay {
    0% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    33% { opacity: 1; transform: scale(1.08) rotate(1.5deg); }
    66% { opacity: 0.7; transform: scale(0.97) rotate(-1deg); }
    100% { opacity: 0.9; transform: scale(1.03) rotate(0.5deg); }
}

@keyframes landingMeshOverlay2 {
    0% { opacity: 0.4; transform: scale(1.02) rotate(-0.5deg); }
    100% { opacity: 0.9; transform: scale(0.98) rotate(0.5deg); }
}

/* ===== GRID TEXTURE OVERLAY ===== */
#landingPage .grid-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ===== LAYOUT ===== */
#landingPage .l-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    #landingPage .l-container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    #landingPage .l-container {
        padding: 0 60px;
    }
}

/* ===== ALL SECTIONS ABOVE GRADIENT ===== */
#landingPage .s-nav,
#landingPage .s-hero,
#landingPage .s-proof,
#landingPage .s-how,
#landingPage .s-panels,
#landingPage .s-trust,
#landingPage .s-cta-section,
#landingPage .s-bottom-nav {
    position: relative;
    z-index: 2;
}

/* ===== NAVIGATION ===== */
#landingPage .s-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 14px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(10, 22, 40, 0.55);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

#landingPage .s-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#landingPage .s-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

#landingPage .s-nav-logo-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

#landingPage .s-nav-logo:hover .s-nav-logo-icon {
    transform: scale(1.05);
}

#landingPage .s-nav-logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

#landingPage .s-nav-logo .dot {
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

#landingPage .s-nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    #landingPage .s-nav-links {
        display: flex;
    }
}

#landingPage .s-nav-links a {
    color: var(--white-50);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

#landingPage .s-nav-links a:hover {
    color: var(--white);
}

#landingPage .s-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    #landingPage .s-nav-right {
        gap: 16px;
    }
}

/* Language switcher in landing nav */
#landingPage .s-lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    padding: 2px;
}

#landingPage .s-lang-switcher .s-lang-btn {
    padding: 4px 8px;
    font-size: 0.65rem;
}

@media (min-width: 768px) {
    #landingPage .s-lang-switcher .s-lang-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

#landingPage .s-lang-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white-50);
    background: transparent;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

#landingPage .s-lang-btn:hover {
    color: var(--white);
}

#landingPage .s-lang-btn.active {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

#landingPage .s-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: rgba(255,255,255,0.07);
    color: var(--white-90);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    letter-spacing: 0.01em;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    font-family: inherit;
}

#landingPage .s-nav-cta:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

#landingPage .s-nav-cta svg {
    opacity: 0.7;
}

/* ===== HERO ===== */
#landingPage .s-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: visible;
}

#landingPage .s-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    #landingPage .s-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

#landingPage .s-hero-content {
    position: relative;
    z-index: 2;
    animation: landingFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

#landingPage .s-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 168, 75, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

#landingPage .s-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: landingPulse 2s ease-in-out infinite;
}

@keyframes landingPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

#landingPage .s-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    color: var(--white);
}

#landingPage .s-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--white-50);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

#landingPage .s-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

#landingPage .s-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-sm);
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

#landingPage .s-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 75, 0.25);
}

#landingPage .s-btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

#landingPage .s-btn-primary:hover svg {
    transform: translateX(3px);
}

#landingPage .s-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--white-08);
    color: var(--white-90);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid var(--white-15);
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-family: inherit;
}

#landingPage .s-btn-secondary:hover {
    background: var(--white-15);
    border-color: var(--white-30);
    transform: translateY(-1px);
}

/* ===== CALCULATOR PREVIEW CARD ===== */
#landingPage .s-calc-preview {
    position: relative;
    z-index: 2;
    animation: landingFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

#landingPage .s-calc-card {
    position: relative;
    background: rgba(12, 18, 35, 0.85);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--white-08);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-elevated);
    overflow: hidden;
}

#landingPage .s-calc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212,168,75,0.3) 30%, rgba(212,168,75,0.5) 50%, rgba(212,168,75,0.3) 70%, transparent 100%);
}

#landingPage .s-calc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--white-08);
}

#landingPage .s-calc-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

#landingPage .s-calc-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold-dim), rgba(212,168,75,0.08));
    border: 1px solid rgba(212,168,75,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

#landingPage .s-calc-icon svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

#landingPage .s-calc-header-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white-90);
    letter-spacing: -0.01em;
}

#landingPage .s-calc-header-sub {
    font-size: 0.72rem;
    color: var(--white-50);
    margin-top: 2px;
    font-weight: 500;
}

#landingPage .s-calc-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#landingPage .s-calc-status-dot {
    width: 6px;
    height: 6px;
    background: #34d399;
    border-radius: 50%;
    animation: landingPulse 2s ease-in-out infinite;
}

#landingPage .s-calc-total {
    text-align: center;
    margin-bottom: 20px;
}

#landingPage .s-calc-total-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white-50);
    font-weight: 600;
    margin-bottom: 4px;
}

#landingPage .s-calc-total-value {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
    line-height: 1.1;
}

#landingPage .s-calc-total-value .currency {
    font-size: 1.4rem;
    color: var(--white-50);
    font-weight: 600;
    margin-left: 4px;
}

#landingPage .s-calc-breakdown {
    display: grid;
    gap: 0;
    margin-bottom: 20px;
}

#landingPage .s-calc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--white-04);
}

#landingPage .s-calc-row:last-child {
    border-bottom: none;
}

#landingPage .s-calc-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

#landingPage .s-calc-row-indicator {
    width: 3px;
    height: 20px;
    border-radius: 2px;
}

#landingPage .s-calc-row-indicator.gold { background: var(--gold); }
#landingPage .s-calc-row-indicator.teal { background: #2dd4bf; }
#landingPage .s-calc-row-indicator.purple { background: #a78bfa; }
#landingPage .s-calc-row-indicator.blue { background: #60a5fa; }

#landingPage .s-calc-row-label {
    font-size: 0.82rem;
    color: var(--white-70);
    font-weight: 500;
}

#landingPage .s-calc-row-sublabel {
    font-size: 0.68rem;
    color: var(--white-30);
    margin-top: 1px;
}

#landingPage .s-calc-row-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white-90);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}

#landingPage .s-calc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--white-08);
}

#landingPage .s-calc-footer-note {
    font-size: 0.68rem;
    color: var(--white-30);
    font-weight: 500;
}

#landingPage .s-calc-footer-link {
    font-size: 0.78rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

#landingPage .s-calc-footer-link:hover {
    gap: 8px;
}

#landingPage .s-calc-footer-link svg {
    width: 14px;
    height: 14px;
}

/* Floating glow behind card */
#landingPage .s-calc-preview::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,168,75,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

#landingPage .s-calc-preview::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(19,78,94,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* ===== SOCIAL PROOF BAR ===== */
#landingPage .s-proof {
    padding: 56px 0;
    border-top: 1px solid var(--white-04);
    border-bottom: 1px solid var(--white-04);
}

#landingPage .s-proof-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    #landingPage .s-proof-grid {
        gap: 48px;
    }
}

#landingPage .s-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white-70);
    letter-spacing: -0.01em;
}

#landingPage .s-proof-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

#landingPage .s-proof-divider {
    width: 1px;
    height: 24px;
    background: var(--white-15);
    display: none;
}

@media (min-width: 768px) {
    #landingPage .s-proof-divider {
        display: block;
    }
}

/* ===== SECTION COMMON ===== */
#landingPage .s-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
}

#landingPage .s-section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

#landingPage .s-section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 20px;
    color: var(--white);
    max-width: 600px;
    border-bottom: none;
    padding-bottom: 0;
}

#landingPage .s-section-desc {
    font-size: 1.05rem;
    color: var(--white-50);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 64px;
    font-weight: 400;
}

/* ===== HOW IT WORKS — STEPS ===== */
#landingPage .s-how {
    padding: 120px 0;
}

#landingPage .s-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    #landingPage .s-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

#landingPage .s-step-card {
    position: relative;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px 36px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

#landingPage .s-step-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.75);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

#landingPage .s-step-num {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

#landingPage .s-step-line {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(212,168,75,0.15));
    border-radius: 1px;
    margin-bottom: 20px;
}

#landingPage .s-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white-90);
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

#landingPage .s-step-desc {
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.65;
    font-weight: 400;
}

/* ===== BUYERS / OWNERS PANELS ===== */
#landingPage .s-panels {
    padding: 0 0 120px;
}

#landingPage .s-panels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    #landingPage .s-panels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

#landingPage .s-panel-card {
    position: relative;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#landingPage .s-panel-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

#landingPage .s-panel-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-dim);
    border: 1px solid rgba(212,168,75,0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

#landingPage .s-panel-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

#landingPage .s-panel-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white-90);
    margin-bottom: 20px;
    letter-spacing: -0.015em;
}

#landingPage .s-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

#landingPage .s-panel-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    color: var(--white-70);
    line-height: 1.5;
    font-weight: 400;
}

#landingPage .s-panel-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

/* ===== TRUST / LEGAL SECTION ===== */
#landingPage .s-trust {
    padding: 120px 0;
    position: relative;
}

#landingPage .s-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white-15), transparent);
}

#landingPage .s-trust-header {
    text-align: center;
    margin-bottom: 72px;
}

#landingPage .s-trust-header .s-section-label {
    justify-content: center;
}

#landingPage .s-trust-header .s-section-title {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

#landingPage .s-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    #landingPage .s-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

#landingPage .s-trust-card {
    position: relative;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#landingPage .s-trust-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

#landingPage .s-trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold-glow));
    border: 1px solid rgba(212,168,75,0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

#landingPage .s-trust-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
}

#landingPage .s-trust-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white-90);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

#landingPage .s-trust-desc {
    font-size: 0.85rem;
    color: var(--white-50);
    line-height: 1.65;
}

/* ===== CTA SECTION ===== */
#landingPage .s-cta-section {
    padding: 40px 0 120px;
}

#landingPage .s-cta-box {
    position: relative;
    background: rgba(12, 18, 35, 0.8);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--white-08);
    border-radius: var(--radius-xl);
    padding: 72px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

#landingPage .s-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

#landingPage .s-cta-box::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,168,75,0.06) 0%, transparent 60%);
    pointer-events: none;
}

@media (min-width: 768px) {
    #landingPage .s-cta-box {
        padding: 96px 80px;
    }
}

#landingPage .s-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 20px;
    color: var(--white);
}

#landingPage .s-cta-desc {
    font-size: 1.05rem;
    color: var(--white-50);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 40px;
}

#landingPage .s-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== BOTTOM NAV BAR (landing-specific mobile) ===== */
#landingPage .s-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--white-08);
    padding: 12px 16px;
    display: flex;
}

@media (min-width: 768px) {
    #landingPage .s-bottom-nav {
        display: none;
    }
}

#landingPage .s-bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

#landingPage .s-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--white-30);
    font-size: 0.65rem;
    font-weight: 600;
    transition: color 0.2s ease;
    padding: 4px 12px;
}

#landingPage .s-bottom-nav-item:hover,
#landingPage .s-bottom-nav-item.active {
    color: var(--gold);
}

#landingPage .s-bottom-nav-item svg {
    width: 20px;
    height: 20px;
}

/* ===== SCROLL PADDING ===== */
#landingPage section[id] {
    scroll-margin-top: 100px;
}

/* ===== MOBILE RESPONSIVE — HERO & SECTIONS ===== */
@media (max-width: 768px) {
    /* --- Hero: compact --- */
    #landingPage .s-hero {
        min-height: auto;
        padding: 100px 0 24px;
        align-items: flex-start;
    }

    #landingPage .s-hero-grid {
        gap: 20px;
    }

    #landingPage .s-calc-card--interactive {
        padding: 18px;
    }

    #landingPage .s-calc-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    /* --- Hero text --- */
    #landingPage .s-hero-badge {
        display: none;
    }

    #landingPage .s-hero-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        line-height: 1.12;
        letter-spacing: -0.03em;
    }

    #landingPage .s-hero-subtitle {
        display: none;
    }

    #landingPage .s-hero-actions {
        gap: 8px;
        margin-bottom: 0;
    }

    #landingPage .s-btn-primary {
        padding: 11px 22px;
        font-size: 0.82rem;
        border-radius: 8px;
    }

    #landingPage .s-btn-secondary {
        padding: 11px 18px;
        font-size: 0.82rem;
        border-radius: 8px;
    }

    #landingPage .s-btn-primary svg,
    #landingPage .s-btn-secondary svg {
        width: 14px;
        height: 14px;
    }

    /* --- Sections below --- */
    #landingPage .s-proof {
        padding: 32px 0;
    }

    #landingPage .s-how {
        padding: 64px 0;
    }

    #landingPage .s-section-title {
        font-size: clamp(1.4rem, 5vw, 1.9rem);
        margin-bottom: 12px;
    }

    #landingPage .s-section-desc {
        font-size: 0.88rem;
        margin-bottom: 36px;
    }

    #landingPage .s-panels {
        padding: 0 0 64px;
    }

    #landingPage .s-trust {
        padding: 64px 0;
    }

    #landingPage .s-cta-section {
        padding: 16px 0 80px;
    }

    #landingPage .s-cta-box {
        padding: 40px 20px;
    }

    #landingPage .s-cta-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
}

/* Extra small phones */
@media (max-width: 400px) {
    #landingPage .s-hero {
        padding: 90px 0 20px;
    }

    #landingPage .s-hero-grid {
        gap: 16px;
    }

    #landingPage .s-hero-title {
        font-size: 1.3rem;
    }

    #landingPage .s-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    #landingPage .s-btn-primary,
    #landingPage .s-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    #landingPage .s-calc-card--interactive {
        padding: 14px;
    }
}

/* ===== INTERACTIVE CALCULATOR CARD ===== */
#landingPage .s-calc-card--interactive {
    padding: 24px;
}

#landingPage .s-calc-donut {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--white-08);
}

#landingPage .s-calc-donut .donut-chart-container {
    width: 150px;
    height: 150px;
    margin: 0;
    flex-shrink: 0;
}

#landingPage .s-calc-donut .donut-center__label {
    color: var(--white-50);
    font-size: 0.58rem;
}

#landingPage .s-calc-donut .donut-center__value {
    color: var(--white);
    font-size: 0.92rem;
}

#landingPage .s-calc-donut .donut-legend {
    flex: 1;
    gap: 6px;
}

#landingPage .s-calc-donut .donut-legend__label {
    color: var(--white-70);
    font-size: 0.72rem;
}

#landingPage .s-calc-donut .donut-legend__value {
    color: var(--white-90);
    font-size: 0.72rem;
}

/* Slider rows inside landing card */
#landingPage .s-calc-sliders {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

#landingPage .s-slider-row__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

#landingPage .s-slider-row__label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--white-50);
    letter-spacing: 0.01em;
}

#landingPage .s-slider-row__value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

#landingPage .s-slider-row__value small {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--white-30);
    margin-left: 2px;
}

#landingPage .s-slider-pct {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(212,168,75,0.12);
    padding: 1px 7px;
    border-radius: 100px;
    margin-left: 4px;
    letter-spacing: 0.02em;
}

/* Dark theme slider overrides */
#landingPage .slider-live {
    height: 6px;
    background: linear-gradient(
        to right,
        #d4a84b 0%,
        #d4a84b var(--slider-fill, 0%),
        rgba(255,255,255,0.1) var(--slider-fill, 0%),
        rgba(255,255,255,0.1) 100%
    );
}

#landingPage .slider-live:focus {
    box-shadow: 0 0 0 3px rgba(212,168,75,0.2);
}

#landingPage .slider-live::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    background: #ffffff;
    border: 2.5px solid #d4a84b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

#landingPage .slider-live::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #ffffff;
    border: 2.5px solid #d4a84b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

#landingPage .slider-live::-moz-range-track {
    background: rgba(255,255,255,0.1);
}

#landingPage .slider-live::-moz-range-progress {
    background: #d4a84b;
}

/* Monthly installment highlight */
#landingPage .s-calc-monthly {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    margin-bottom: 16px;
    background: rgba(212,168,75,0.08);
    border: 1px solid rgba(212,168,75,0.12);
    border-radius: var(--radius-md);
}

#landingPage .s-calc-monthly__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

#landingPage .s-calc-monthly__value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-light);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

/* Mobile: compact donut + sliders */
@media (max-width: 768px) {
    #landingPage .s-calc-donut {
        gap: 16px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    #landingPage .s-calc-donut .donut-chart-container {
        width: 130px;
        height: 130px;
    }

    #landingPage .s-calc-donut .donut-center__value {
        font-size: 0.82rem;
    }

    #landingPage .s-calc-donut .donut-center__label {
        font-size: 0.52rem;
    }

    #landingPage .s-calc-sliders {
        gap: 10px;
        margin-bottom: 14px;
    }

    #landingPage .s-slider-row__head {
        margin-bottom: 5px;
    }

    #landingPage .s-slider-row__label {
        font-size: 0.68rem;
    }

    #landingPage .s-slider-row__value {
        font-size: 0.78rem;
    }

    #landingPage .s-calc-monthly {
        padding: 10px 14px;
        margin-bottom: 12px;
    }

    #landingPage .s-calc-monthly__label {
        font-size: 0.65rem;
    }

    #landingPage .s-calc-monthly__value {
        font-size: 1.15rem;
    }

    #landingPage .slider-live::-webkit-slider-thumb {
        width: 26px;
        height: 26px;
    }

    #landingPage .slider-live::-moz-range-thumb {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 400px) {
    #landingPage .s-calc-donut {
        flex-direction: column;
        align-items: center;
    }

    #landingPage .s-calc-donut .donut-chart-container {
        width: 120px;
        height: 120px;
        margin-bottom: 8px;
    }

    #landingPage .s-calc-monthly__value {
        font-size: 1rem;
    }

    #landingPage .slider-live::-webkit-slider-thumb {
        width: 30px;
        height: 30px;
    }

    #landingPage .slider-live::-moz-range-thumb {
        width: 30px;
        height: 30px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes landingFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
