:root {
    /* Color Palette - Light Editorial */
    --bg-dark: #FAFAF9;
    /* Warm off-white */
    --bg-panel: #FFFFFF;
    --text-main: #2D2A26;
    /* Soft charcoal */
    --text-muted: #66605B;
    /* Warm grey */
    --accent-gold: #B08D55;
    /* Muted bronze */
    --accent-gold-dim: rgba(176, 141, 85, 0.1);
    --border-glass: rgba(0, 0, 0, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03);

    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Manrope', sans-serif;

    /* Spacing */
    --container-max: 1100px;
    --section-pad: 8rem;
    --section-pad-mobile: 4rem;
    /* Mobile specific padding */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    /* better mobile feel */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.03"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.ambient-light {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(230, 220, 200, 0.4), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(100px);
}

/* Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.relative {
    position: relative;
}

.text-center {
    text-align: center;
}

.mb-large {
    margin-bottom: 2rem;
}

.mb-medium {
    margin-bottom: 1.5rem;
}

h1,
h2,
h3,
h4 {
    font-weight: 400;
}

.serif-heading {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(250, 250, 249, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-main);
    z-index: 102;
}

.logo .dot {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--text-main);
}

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

/* Language Switcher */
.lang-switch {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    margin-right: 1rem;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
    user-select: none;
    min-width: 48px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-switch:hover {
    color: var(--text-main);
    border-color: var(--text-main);
    background: rgba(0, 0, 0, 0.02);
}

.lang-switch:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 102;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: transform 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.btn-primary {
    background: var(--text-main);
    color: #fff;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text-main);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(0, 0, 0, 0.02);
}

.btn-text {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.hero-text-wrapper {
    max-width: 800px;
    position: relative;
    margin: 0 auto;
}

.eyebrow {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.display-title {
    font-family: var(--font-serif);
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.display-title.small {
    font-size: 3.5rem;
}

.italic-accent {
    font-style: italic;
    color: var(--text-muted);
    font-weight: 300;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Illustrations */
/* Hero Illustrations */
.hero-illustration {
    position: absolute;
    bottom: -20px;
    width: auto;
    height: 420px;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: all 0.5s ease;
}

.ill-left {
    left: -180px;
}

.ill-right {
    right: -180px;
}

@media (max-width: 1200px) {
    .hero-illustration {
        height: 300px;
        opacity: 0.6;
    }

    .ill-left {
        left: 0;
    }

    .ill-right {
        right: 0;
    }
}

@media (max-width: 900px) {
    .hero-illustration {
        display: none;
    }
}

/* Sections */
.section {
    padding: var(--section-pad) 0;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.2;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* Split Layout (Problem / Benefits) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.rich-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.rich-text .highlight-text {
    font-size: 1.25rem;
    color: var(--text-main);
    border-left: 2px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.layout-visual {
    position: relative;
    height: 400px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid #EAEAEA;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    width: 280px;
    position: absolute;
    transition: transform 0.4s;
    box-shadow: var(--shadow-soft);
}

.stat-card.offset {
    top: 50%;
    left: 35%;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
}

.glass-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Roles Definition */
.dual-pane {
    display: flex;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-soft);
}

.pane {
    flex: 1;
    padding: 4rem;
}

.role-def {
    text-transform: uppercase;
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: -0.5rem;
}

.pane p {
    color: var(--text-muted);
    line-height: 1.7;
}

.pane-divider {
    width: 1px;
    background: #EAEAEA;
}

/* Plans Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.glass-panel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.card-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 80px;
}

.card-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    border-top: 1px solid #F0F0F0;
    padding-top: 1rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits-list {
    padding-right: 2rem;
}

.benefit-row {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #F0F0F0;
}

.benefit-row:last-child {
    border-bottom: none;
}

.benefit-row strong {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-main);
}

.benefit-row span {
    color: var(--text-muted);
}

.how-it-works-box {
    background: #FAFAF9;
    border: 1px solid #EAEAEA;
}

.simple-steps {
    list-style: none;
}

.simple-steps li {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.simple-steps strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Quote & CTA */
.quote-section {
    text-align: center;
    padding: 10rem 0;
}

.cta-buttons {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(176, 141, 85, 0.15), transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

/* Footer */
.main-footer {
    border-top: 1px solid #EAEAEA;
    padding: 4rem 0;
    margin-top: 4rem;
    background: #fff;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col.links {
    display: flex;
    gap: 2rem;
}

.footer-col.links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Animations */
.fade-in,
.fade-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

/* Illustrations */
.illustration-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.mobile-lang-switch {
    display: none;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

/* ---------------- MOBILE RESPONSIVE ---------------- */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .layout-visual {
        height: auto;
        min-height: 250px;
        margin-top: 2rem;
    }

    .glass-card {
        position: relative;
        width: 100%;
        margin-bottom: 1rem;
        left: 0;
        top: 0;
    }

    .stat-card.offset {
        top: 0;
        left: 0;
        margin-top: -10px;
        transform: scale(0.98);
    }
}

@media (max-width: 768px) {
    .mobile-lang-switch {
        display: block;
    }

    :root {
        --section-pad: 5rem;
    }

    .section {
        padding: var(--section-pad-mobile) 0;
    }

    /* Navbar */
    .navbar {
        padding: 1rem 1.5rem;
        justify-content: space-between;
    }

    .nav-actions {
        display: none;
    }

    /* Hide desktop CTA */

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #FAFAF9;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 101;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        padding-top: 8rem;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .display-title {
        font-size: 3rem;
        word-break: break-word;
    }

    .display-title.small {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    /* Layouts */
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .dual-pane {
        flex-direction: column;
    }

    .pane {
        padding: 2.5rem 1.5rem;
    }

    .pane-divider {
        height: 1px;
        width: 100%;
    }

    .benefits-list {
        padding-right: 0;
    }

    .glass-panel {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .footer-col.links {
        flex-direction: column;
        gap: 1rem;
    }
}
/* Fix for Mobile Nav Elements showing on Desktop */
.mobile-only-nav {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only-nav {
        display: block !important;
    }
}
