:root {
    /* Palette — unchanged */
    --primary: #2F5D62;
    --primary-light: #4A8187;
    --secondary: #B86B5E;
    --secondary-light: #D1897C;
    --bg-main: #F4EFE8;
    --surface: #E7DDD1;
    --accent: #7E9C8C;
    --text-main: #2B2B2B;
    --text-light: #5A5A5A;
    --navy-deep: #2E4A4F;
    --footer-bg: #1E1E1E;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.48);
    --glass-border: rgba(255, 255, 255, 0.16);

    /* Refined shadow system */
    --shadow-xs:  0 1px 3px rgba(0,0,0,0.05);
    --shadow-soft: 0 18px 42px rgba(47, 93, 98, 0.08);
    --shadow-strong: 0 28px 70px rgba(18, 34, 36, 0.12);
    --shadow-card: 0 20px 48px rgba(18,34,36,0.06);

    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;

    /* Modern spacing */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 100px;

    /* Easing */
    --ease-custom: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body, html {
    margin: 0;
    padding: 0;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: clip;
    line-height: 1.75;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-main);
    margin-top: 0;
    line-height: 1.12;
}

img { display: block; }

/*  Layout Utilities  */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

.section-padding { padding: 140px 0; }
.text-center { text-align: center; }

.bg-primary,
.bg-navy {
    color: rgba(255,255,255,0.84);
}

.bg-primary { background: var(--primary) !important; }
.bg-navy { background: var(--navy-deep) !important; }

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-primary .section-title,
.bg-navy .section-title {
    color: var(--white);
}

.bg-primary .body-text,
.bg-navy .body-text,
.bg-primary p,
.bg-navy p {
    color: rgba(255,255,255,0.78);
}

.bg-primary .feature-card h3,
.bg-primary .product-card h3,
.bg-primary .value-card h3,
.bg-primary .week-card h3,
.bg-primary .price-card h3,
.bg-navy .feature-card h3,
.bg-navy .product-card h3,
.bg-navy .value-card h3,
.bg-navy .week-card h3,
.bg-navy .price-card h3 {
    color: var(--primary);
}

.bg-primary .feature-card p,
.bg-primary .product-card p,
.bg-primary .value-card p,
.bg-primary .week-card p,
.bg-primary .price-card p,
.bg-navy .feature-card p,
.bg-navy .product-card p,
.bg-navy .value-card p,
.bg-navy .week-card p,
.bg-navy .price-card p {
    color: var(--text-light);
}

.bg-primary .product-card-top h3,
.bg-navy .product-card-top h3,
.bg-primary .product-card.featured h3,
.bg-navy .product-card.featured h3 {
    color: var(--white);
}

/*  Glass Utilities  */
.glass {
    background: var(--glass);
    backdrop-filter: blur(22px) saturate(125%);
    -webkit-backdrop-filter: blur(22px) saturate(125%);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: rgba(30, 46, 48, 0.66);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.glass-dark h1, .glass-dark h2, .glass-dark h3,
.glass-dark h4, .glass-dark h5, .glass-dark h6 { color: var(--white); }

.glass-container {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    transition: all 0.4s var(--ease-custom);
}

/*  Dynamic Interaction Layer  */
.interactive-panel,
.interactive-inline,
.interactive-media,
.interactive-chip {
    position: relative;
    isolation: isolate;
    transition: transform 0.45s var(--ease-custom),
                box-shadow 0.45s var(--ease-custom),
                border-color 0.35s ease,
                background-color 0.35s ease,
                filter 0.35s ease;
}

.interactive-panel::after,
.interactive-inline::after,
.interactive-media::after,
.interactive-chip::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.interactive-panel:hover::after,
.interactive-panel:focus-visible::after,
.interactive-inline:hover::after,
.interactive-inline:focus-visible::after,
.interactive-media:hover::after,
.interactive-media:focus-visible::after,
.interactive-chip:hover::after,
.interactive-chip:focus-visible::after {
    opacity: 1;
}

.interactive-panel:hover,
.interactive-panel:focus-visible {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.interactive-inline:hover,
.interactive-inline:focus-visible {
    transform: translateY(-4px);
}

.interactive-media:hover,
.interactive-media:focus-visible {
    transform: translateY(-6px) scale(1.01);
}

.interactive-chip:hover,
.interactive-chip:focus-visible {
    transform: translateY(-2px);
}

.interactive-outline:hover,
.interactive-outline:focus-visible {
    border-color: rgba(47, 93, 98, 0.28);
}

/*  Card Utilities  */
.profound-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-card);
    transition: transform 0.35s var(--ease-custom),
                box-shadow 0.35s ease;
}

.profound-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.hover-lift {
    transition: transform 0.3s var(--ease-custom),
                box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

/*  Typography Helpers  */
.eyebrow {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: var(--secondary);
    display: block;
    margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.55); }
.eyebrow--center { text-align: center; }

.section-title {
    font-size: clamp(2.4rem, 5.6vw, 4.1rem);
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.body-text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 28px;
    font-weight: 300;
}

/*  Buttons  */
.btn-primary {
    display: inline-block;
    padding: 13px 32px;
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--ease-custom),
                box-shadow 0.3s ease,
                background 0.3s ease;
    box-shadow: 0 12px 28px rgba(184, 107, 94, 0.18);
}

.btn-primary:hover {
    background: var(--secondary-light);
    transform: scale(1.02);
    box-shadow: 0 18px 40px rgba(184, 107, 94, 0.26);
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    padding: 13px 32px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: transform 0.3s var(--ease-custom),
                box-shadow 0.3s ease,
                background 0.3s ease,
                color 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.02);
    box-shadow: 0 18px 40px rgba(47, 93, 98, 0.20);
}

/* btn-secondary on dark (hero glass card) */
.hero-glass-card .btn-secondary {
    border-color: rgba(255,255,255,0.7);
    color: var(--white);
}
.hero-glass-card .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--white);
    color: var(--white);
}

/*  Header & Navigation  */
.logo-container { flex-shrink: 0; }

.main-logo-image {
    height: 62px;
    width: auto;
    display: block;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 56px;
    background: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: padding 0.3s var(--ease-custom),
                background 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                backdrop-filter 0.3s ease;
}

.main-header.sticky {
    padding: 12px 56px;
    background: rgba(244, 239, 232, 0.72);
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    border-bottom-color: rgba(47, 93, 98, 0.08);
    box-shadow: 0 18px 46px rgba(18,34,36,0.08);
}

.main-nav { flex-grow: 1; }

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.nav-links li { position: relative; }

.nav-links li a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    border-radius: 0;
    position: relative;
    transition: color 0.2s ease, transform 0.25s var(--ease-custom);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0.72;
    transition: transform 0.28s var(--ease-custom);
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }

.nav-subscribe-link::after,
.nav-admin-link::after {
    display: none;
}

.nav-links li a.active {
    color: var(--primary);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}

.social-icons a.brand-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-icons a.brand-fb {
    background: #1877F2;
    color: var(--white);
}

.social-icons a.brand-group {
    background: #0084ff;
    color: var(--white);
}

.social-icons a.brand-tt {
    background: #000000;
    color: var(--white);
    text-shadow: 1px 1px 0 #ff0050, -1px -1px 0 #00f2fe;
}

/*  Dropdown  */
.has-dropdown { position: relative; }

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 48px rgba(47, 93, 98, 0.18), 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    min-width: 250px;
    z-index: 2000;
    padding: 10px 0;
    white-space: nowrap;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.has-dropdown:hover .dropdown-content,
.has-dropdown.dropdown-open .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Bridge so mouse can reach dropdown */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 16px;
    background: transparent;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
    border-radius: 0;
}

.dropdown-content a:hover {
    background: var(--bg-main);
    color: var(--primary);
    padding-left: 26px;
}

/*  Hero Section  */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 620px;
    background-image: url('images/hero_grounded.png');
    background-size: cover;
    background-position: center 30%;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.30) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 60px;
    max-width: 860px;
    width: 100%;
}

/* Hero glass card */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(30px) saturate(130%);
    -webkit-backdrop-filter: blur(30px) saturate(130%);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 64px 52px;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 110px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.22);
    text-align: center;
    width: 100%;
    transition: transform 0.6s var(--ease-custom), box-shadow 0.6s var(--ease-custom);
}

.hero-glass-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 46px 120px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.26);
}

.hero-label {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    background: rgba(184, 107, 94, 0.2);
    border: 1px solid rgba(184, 107, 94, 0.35);
    color: #fff;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
    margin-bottom: 22px;
}

/* Non-hero usage (e.g. bio section) */
section:not(.hero-section) .hero-label {
    background: rgba(184, 107, 94, 0.12);
    border-color: rgba(184, 107, 94, 0.25);
    color: var(--secondary);
}

.hero-main-title {
    font-size: clamp(3.2rem, 9vw, 5.5rem);
    line-height: 1.0;
    letter-spacing: 0;
    color: var(--white);
    margin-bottom: 26px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-main-subtitle {
    font-size: 1.15rem;
    max-width: 580px;
    color: rgba(255,255,255,0.92);
    margin: 0 auto 44px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/*  Support Bar  */
.support-bar {
    background: var(--navy-deep);
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.95);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 40px;
    border-right: 1px solid rgba(255,255,255,0.12);
    flex: 1;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s var(--ease-custom);
}

.support-item:last-child { border-right: none; }

.support-item i {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s var(--ease-custom);
}

.support-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.support-item:hover i {
    color: rgba(255,255,255,0.9);
    transform: scale(1.08);
}

/*  Ecosystem Framework Section  */
.ecosystem-intro {
    padding: 120px 40px;
    background: var(--surface);
}

.ecosystem-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ecosystem-card {
    background: var(--white);
    padding: 68px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(47,93,98,0.05);
}

.ecosystem-steps {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
}

.ecosystem-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.35s var(--ease-custom);
}

.ecosystem-step:hover {
    transform: translateX(6px);
}

.step-num {
    background: var(--bg-main);
    color: var(--primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
    border: 1.5px solid rgba(47,93,98,0.2);
    transition: transform 0.3s var(--ease-custom), box-shadow 0.3s ease;
}

.step-num.clay {
    color: var(--secondary);
    border-color: rgba(184, 107, 94, 0.25);
}

.ecosystem-step:hover .step-num {
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(47, 93, 98, 0.12);
}

.step-content h4 {
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.ecosystem-image-wrap { position: relative; }

.ecosystem-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: block;
}

.floating-quote {
    position: absolute;
    bottom: -24px;
    right: -24px;
    padding: 28px 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    width: 100%;
    max-width: 290px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 4px solid var(--secondary);
}

.floating-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/*  Philosophy / Feature Grid Section  */
.philosophy-section {
    padding: 130px 20px;
    text-align: center;
    background: var(--navy-deep);
    color: rgba(255,255,255,0.82);
}

.philosophy-section .section-title { color: var(--white); }
.philosophy-section .body-text { color: rgba(255,255,255,0.76); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 34px;
    text-align: left;
    margin-top: 56px;
}

.feature-card {
    background: rgba(255,255,255,0.96);
    padding: 40px 36px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.28);
    border-top: 0;
    box-shadow: 0 20px 48px rgba(18,34,36,0.08);
    transition: transform 0.35s var(--ease-custom),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.feature-card:nth-child(2n) {
    border-top-color: var(--secondary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(47, 93, 98, 0.12);
}

.feature-icon {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 18px;
    display: block;
}

.feature-card:nth-child(odd) .feature-icon {
    color: var(--accent);
}

.feature-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

/*  Product Cards  */
.programs-section {
    padding: 140px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.programs-intro {
    text-align: center;
    margin-bottom: 60px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 38px;
}

.product-card {
    background: var(--white);
    border: 1px solid rgba(47,93,98,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease-custom),
                box-shadow 0.4s ease,
                border-color 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-card);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(47, 93, 98, 0.12);
}

.product-card-top {
    background: var(--primary);
    padding: 30px 30px 26px;
    position: relative;
}

.product-card-top.clay { background: var(--secondary); }
.product-card-top.sage { background: var(--accent); }
.product-card-top.deep { background: var(--navy-deep); }

.product-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.12);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.product-card-top h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0;
    line-height: 1.3;
}

.product-card-top .tagline {
    color: rgba(255,255,255,0.78);
    font-style: italic;
    font-size: 0.88rem;
    font-family: var(--font-heading);
    margin-top: 6px;
}

.product-card-body {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-body > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
}

.product-price {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 14px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.product-features li {
    padding: 7px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.product-features li:last-child { border-bottom: none; }
.product-features li i { color: var(--accent); font-size: 0.75rem; flex-shrink: 0; }

.product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.product-card-actions a {
    display: block;
    padding: 11px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    transition: transform 0.28s var(--ease-custom),
                background 0.25s ease,
                border-color 0.25s ease,
                color 0.25s ease,
                box-shadow 0.28s ease;
}

.btn-enroll {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-enroll:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.02);
}

.btn-learn {
    background: var(--primary);
    color: var(--white);
    border: 1.5px solid var(--primary);
}

.btn-learn:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--white);
    transform: scale(1.02);
}

.product-card.featured {
    background: var(--primary);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
}

.featured-banner {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.82);
    text-align: center;
    padding: 8px;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.product-card.featured .product-card-top { background: transparent; }
.product-card.featured .product-card-body > p,
.product-card.featured .product-features li { color: rgba(255,255,255,0.78); }
.product-card.featured .product-features li { border-bottom-color: rgba(255,255,255,0.12); }
.product-card.featured .product-features li i,
.product-card.featured .product-price { color: rgba(255,255,255,0.9); }
.product-card.featured .btn-learn { background: var(--secondary); border-color: var(--secondary); }
.product-card.featured .btn-learn:hover { background: var(--secondary-light); border-color: var(--secondary-light); }
.product-card.featured .btn-enroll { border-color: rgba(255,255,255,0.62); color: var(--white); }
.product-card.featured .btn-enroll:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/*  Bio Section  */
.bio-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.bio-photo-wrap { position: relative; }

.bio-photo-wrap:hover .bio-photo {
    transform: scale(1.018);
}

.bio-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: block;
    transition: transform 0.55s var(--ease-custom), box-shadow 0.45s ease;
}

.bio-photo-caption {
    margin-top: 18px;
    text-align: center;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

.bio-text h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.bio-text p {
    color: var(--text-main);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 26px;
}

@media (max-width: 900px) {
    .bio-section { grid-template-columns: 1fr; gap: 40px; }
    .bio-photo-wrap { max-width: 400px; margin: 0 auto; }
}

/*  Newsletter  */
.newsletter-section {
    background: var(--navy-deep);
    padding: 130px 40px;
    text-align: center;
}

.newsletter-container {
    max-width: 680px;
    margin: 0 auto;
    color: var(--white);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--white);
    margin-bottom: 16px;
}

.newsletter-desc {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 540px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: 15px 24px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-pill);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }

.newsletter-form input:focus {
    border-color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.15);
}

/*  Footer  */
.main-footer {
    background-color: var(--navy-deep);
    padding: 80px 0 40px;
    color: rgba(255,255,255,0.76);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.6fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid rgba(47,93,98,0.15);
}

.footer-contact { display: flex; flex-direction: column; }

.footer-contact p { color: rgba(255,255,255,0.68); font-size: 0.9rem; margin: 0 0 8px; }

.footer-contact a { color: rgba(255,255,255,0.84); transition: color 0.25s ease; }
.footer-contact a:hover { color: var(--secondary); }

.footer-legal, .footer-legal a {
    font-size: 0.78rem !important;
    margin-top: 14px;
    color: rgba(255,255,255,0.48) !important;
    font-weight: 400;
}

.footer-legal a:hover { color: var(--secondary) !important; }

.footer-links { flex: 1; min-width: 200px; }

.footer-title {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.footer-subtitle {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 20px;
    letter-spacing: 0.3px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.64);
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

.footer-links a:hover { color: var(--secondary); }

.footer-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 2;
    min-width: 300px;
    align-self: center;
}

.footer-banner-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.45s var(--ease-custom), box-shadow 0.45s ease;
}

.footer-banner-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

/* Flipbook Promo */
.footer-separator {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 0 0 40px;
}

.footer-flipbook {
    padding: 0 0 40px;
}

.footer-flipbook-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, rgba(184,107,94,0.14), rgba(47,93,98,0.14));
    border: 1px solid rgba(184,107,94,0.25);
    border-radius: 16px;
    padding: 24px 32px;
    flex-wrap: wrap;
}

.footer-flipbook-text { flex: 1; min-width: 200px; }

.footer-flipbook-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0 0 4px;
}

.footer-flipbook-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 4px;
}

.footer-flipbook-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.58);
    margin: 0;
    line-height: 1.5;
}

.footer-flipbook-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(184,107,94,0.35);
    transition: transform 0.25s var(--ease-custom), background 0.2s, box-shadow 0.25s;
}

.footer-flipbook-btn:hover {
    background: #c47a6d;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(184,107,94,0.45);
}

@media (max-width: 640px) {
    .footer-flipbook-inner { flex-direction: column; text-align: center; }
    .footer-flipbook-btn { width: 100%; justify-content: center; }
}

/*  Floating Chat Button  */
.chat-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(184, 107, 94, 0.45);
    z-index: 100;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(184, 107, 94, 0.55);
}

/*  Page Hero (sub-pages)  */
.page-hero {
    background: var(--navy-deep);
    padding: 120px 40px 96px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.74);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
}

.page-divider {
    width: 48px;
    height: 3px;
    background: var(--secondary);
    margin: 28px auto 0;
    border-radius: 2px;
}

/*  CTA Banner  */
.cta-banner {
    background: var(--primary);
    padding: 100px 40px;
    text-align: center;
}

.cta-banner.light {
    background: var(--surface);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.cta-banner.dark { background: var(--navy-deep); }

.cta-banner h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 20px;
}

.cta-banner.light h2 { color: var(--primary); }

.cta-banner p {
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.cta-banner.light p { color: var(--text-light); }

.cta-banner:not(.light) .btn-secondary,
.bg-primary .btn-secondary,
.bg-navy .btn-secondary {
    border-color: rgba(255,255,255,0.7);
    color: var(--white);
}

.cta-banner:not(.light) .btn-secondary:hover,
.bg-primary .btn-secondary:hover,
.bg-navy .btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: var(--white);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

/*  Programs / Guide Steps  */
.guide-section {
    background: var(--bg-main);
    padding: 130px 40px;
}

.guide-inner {
    max-width: 800px;
    margin: 0 auto;
}

.guide-inner h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 50px;
    font-size: 2rem;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-step:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-soft);
}

.guide-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.guide-step-content h4 {
    color: var(--text-main);
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.guide-step-content p {
    font-size: 0.93rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.65;
}

/*  FAQ Section  */
.faq-section {
    padding: 100px 0;
    background: var(--surface);
}

.faq-section .container { max-width: 800px; }

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 30px;
    margin-bottom: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-xs);
    transition: transform 0.3s var(--ease-custom), box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.faq-item::before {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    margin-bottom: 14px;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.faq-item .body-text { margin: 0; font-size: 0.93rem; }

/*  Booking Page  */
.booking-page {
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 30%),
        radial-gradient(circle at 80% 15%, rgba(217, 70, 239, 0.12), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #0b1728 52%, #0f1e31 100%);
}

.booking-page .main-header {
    background: transparent;
}

.booking-page .main-header.sticky {
    background: rgba(7, 17, 31, 0.78);
    border-bottom-color: rgba(255,255,255,0.08);
}

.booking-page .page-hero {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.booking-page .page-hero .container {
    max-width: 920px;
}

.page-hero--booking {
    padding: 110px 40px 72px;
}

.booking-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.86);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.booking-page .page-hero h1 {
    max-width: 12ch;
    margin-inline: auto;
}

.booking-page .page-hero p {
    max-width: 760px;
}

.booking-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 30px auto 0;
    max-width: 860px;
}

.booking-stat {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
}

.booking-stat span {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.booking-stat p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
    line-height: 1.5;
}

.booking-layout {
    gap: 28px;
    padding-top: 56px;
    padding-bottom: 72px;
}

.booking-page .book-info h2,
.booking-page .expect-list li div h4 {
    color: var(--white);
}

.booking-page .book-info .body-text,
.booking-page .expect-list li div p {
    color: rgba(255,255,255,0.74);
}

.booking-page .expect-list li i {
    color: #67e8f9;
}

.booking-page .book-testimonial {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid #22d3ee;
    box-shadow: 0 24px 60px rgba(2,6,23,0.2);
}

.book-testimonial--dark:hover {
    box-shadow: 0 30px 70px rgba(2,6,23,0.28);
}

.booking-page .book-form-wrap {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 90px rgba(2,6,23,0.3);
    backdrop-filter: blur(20px);
    top: 92px;
}

.booking-page .main-footer {
    background: linear-gradient(180deg, rgba(7,17,31,0.2) 0%, #07111f 100%);
}

.booking-page .footer-title,
.booking-page .footer-subtitle {
    color: var(--white);
}

.booking-page .footer-links a {
    color: rgba(255,255,255,0.84);
}

.booking-sidebar {
    margin-bottom: 18px;
}

.booking-sidebar-kicker,
.booking-followup-kicker {
    margin: 0 0 8px;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(103,232,249,0.78);
    font-weight: 700;
}

.booking-sidebar h3,
.booking-followup-card h3 {
    font-family: var(--font-heading);
    color: var(--white);
    margin: 0 0 10px;
}

.booking-sidebar-copy,
.booking-followup-card p {
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin: 0;
}

.booking-followup {
    padding: 0 40px 92px;
}

.booking-followup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-followup-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(2,6,23,0.18);
}

.booking-followup-card h3 {
    font-size: 1.25rem;
    line-height: 1.35;
}

.book-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.book-info h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.expect-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expect-list li { display: flex; gap: 14px; align-items: flex-start; }
.expect-list li i { color: var(--secondary); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.expect-list li div h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--primary); margin-bottom: 4px; }
.expect-list li div p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.book-testimonial {
    background: var(--surface);
    border-left: 4px solid var(--secondary);
    padding: 20px 22px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 10px;
    transition: transform 0.35s var(--ease-custom), box-shadow 0.35s ease;
}

.book-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.book-form-wrap {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 50px 48px;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 100px;
}

.booking-page .calendly-inline-widget {
    border-radius: 24px;
    overflow: hidden;
}

.form-group { margin-bottom: 26px; }

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 9px;
    letter-spacing: 0.3px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-main);
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    color: var(--text-main);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(47, 93, 98, 0.1);
    background: var(--white);
}

.trust-section {
    background: var(--surface);
    padding: 60px 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item i { font-size: 1.8rem; color: var(--primary); margin-bottom: 12px; display: block; }

/*  Curriculum & Pricing  */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.week-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--accent);
    box-shadow: var(--shadow-xs);
    transition: transform 0.3s var(--ease-custom), box-shadow 0.3s ease;
}

.week-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.week-num {
    font-size: 0.72rem;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.price-card {
    background: var(--white);
    padding: 52px 44px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 400px;
    text-align: left;
    position: relative;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: transform 0.4s var(--ease-custom), box-shadow 0.4s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.price-card.featured {
    border: 2px solid var(--secondary);
    box-shadow: 0 16px 48px rgba(184, 107, 94, 0.18);
}

.price-val {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    flex: 1;
}

.price-features li {
    margin-bottom: 14px;
    display: flex;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-light);
}

.price-features i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

.price-card > .btn-primary,
.price-card > .btn-secondary { margin-top: auto; }

/*  VIP Specifics  */
.section-luxury {
    padding: 130px 40px;
    background: var(--surface);
}

.main-header--transparent {
    position: absolute;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    z-index: 100;
}

.main-header--transparent .nav-links li a { color: rgba(255,255,255,0.9); }

.main-header--transparent .nav-links li a:hover,
.main-header--transparent .nav-links li a.active { color: var(--white); }

.main-header--transparent .social-icons a {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.main-header--transparent .hamburger span { background: var(--white); }
.main-header--transparent .hamburger { border-color: rgba(255,255,255,0.4); }

.main-logo-image--light { filter: brightness(0) invert(1); }

@media (max-width: 900px) {
    .main-header--transparent {
        position: sticky;
        background: rgba(244, 239, 232, 0.88);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .main-header--transparent .nav-links li a { color: var(--text-main); }
    .main-header--transparent .hamburger span { background: var(--primary); }
    .main-header--transparent .hamburger { border-color: var(--primary); }
    .main-logo-image--light { filter: none; }

    .booking-page .main-header--transparent {
        background: rgba(7, 17, 31, 0.92);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .booking-page .main-header--transparent .nav-links li a { color: var(--white); }
    .booking-page .main-header--transparent .hamburger span { background: var(--white); }
    .booking-page .main-header--transparent .hamburger { border-color: rgba(255,255,255,0.4); }
    .booking-page .main-nav {
        background: rgba(7, 17, 31, 0.98);
        border-bottom-color: rgba(255,255,255,0.08);
    }
}

.vip-hero {
    height: 100vh;
    background-image: url('images/vip-experience.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.vip-hero-content { position: relative; z-index: 2; padding: 40px; max-width: 900px; }

.invitation-card {
    background: rgba(30, 30, 30, 0.55);
    backdrop-filter: blur(24px);
    padding: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.12);
    margin-top: 50px;
    transition: transform 0.45s var(--ease-custom), border-color 0.35s ease, box-shadow 0.45s ease;
}

.invitation-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.26);
    box-shadow: 0 32px 80px rgba(0,0,0,0.24);
}

.luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vip-tier-card {
    background: var(--white);
    padding: 36px 40px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-xs);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vip-tier-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-soft);
}

/*  Values Section  */
.values-section {
    background: var(--surface);
    padding: 130px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-card);
    transition: transform 0.35s var(--ease-custom),
                box-shadow 0.35s ease;
    height: 100%;
}

.value-card:nth-child(2n) { border-top-color: var(--secondary); }
.value-card:nth-child(3n) { border-top-color: var(--accent); }

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.value-card i {
    font-size: 1.7rem;
    color: var(--secondary);
    margin-bottom: 18px;
    display: block;
}

.value-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.72;
}

/*  Mission Section  */
.mission-section {
    padding: 130px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--text-main);
    line-height: 1.85;
    padding: 44px 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 5px solid var(--secondary);
    text-align: left;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.45s var(--ease-custom), box-shadow 0.45s ease;
}

.mission-quote:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/*  Program Hero  */
.program-hero {
    height: 70vh;
    min-height: 500px;
    background-image: url('images/fine-to-done-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.program-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.55));
}

.program-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    color: var(--white);
}

/*  Pricing Section  */
.pricing-section {
    padding: 100px 40px;
    background: var(--bg-main);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: content-box;
}

/*  Card Side Images  */
.card {
    width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: var(--surface);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.card-image-left { background-image: url('images/philosophy_grounded.png'); }
.card-image-right { background-image: url('images/philosophy_grounded.png'); transform: scaleX(-1); }

.card-overlay {
    background: rgba(244, 239, 232, 0.85);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transform: scaleX(1) !important;
}

.card-image-right .card-text { transform: scaleX(-1); }

.card-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    line-height: 1.55;
    text-align: center;
    font-style: italic;
}

/*  Philosophy Content  */
.philosophy-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-center {
    flex: 1;
    max-width: 500px;
}

.subsection-title {
    color: var(--text-main);
    font-size: 1.6rem;
    margin-bottom: 20px;
    line-height: 1.35;
}

/*  Hamburger Button  */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1.5px solid rgba(47, 93, 98, 0.3);
    border-radius: var(--radius-sm);
    padding: 9px 10px;
    cursor: pointer;
    z-index: 1100;
    flex-shrink: 0;
    margin-left: auto;
    min-width: 44px;
    min-height: 44px;
    transition: border-color 0.25s ease;
}

.hamburger:hover { border-color: var(--primary); }

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/*  Responsive — Tablet 900px  */
@media (max-width: 900px) {
    .hamburger { display: flex; }

    .main-header {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        padding: 10px 18px;
        position: sticky;
        top: 0;
    }

    .main-header.sticky { padding: 8px 18px; }
    .main-logo-image { height: 46px; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(244, 239, 232, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0,0,0,0.07);
        box-shadow: 0 12px 32px rgba(0,0,0,0.1);
        z-index: 998;
        padding: 8px 0 16px;
        flex-grow: unset;
        max-height: calc(100vh - 66px);
        max-height: calc(100dvh - 66px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.nav-open { display: block; }

    .nav-links {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        justify-content: flex-start;
    }

    .nav-links > li > a {
        display: block;
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav-links > li > a:hover {
        background: rgba(47, 93, 98, 0.07);
        border-radius: 0;
    }

    /* Mobile dropdown */
    .dropdown-content {
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        background: var(--surface) !important;
        padding: 0 !important;
        min-width: 0 !important;
        white-space: normal !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease !important;
    }

    .dropdown-content.mobile-open { max-height: 500px; }

    .dropdown-content a {
        padding: 12px 40px !important;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        border-radius: 0 !important;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .has-dropdown::after { display: none; }

    /* Hide header social icons; show mobile social icons inside nav */
    .main-header > .social-icons { display: none; }

    .mobile-social-icons {
        display: flex !important;
        justify-content: center;
        gap: 12px;
        padding: 18px 24px 8px;
        border-top: 1px solid rgba(0,0,0,0.06);
    }

    .mobile-social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        font-size: 18px;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .mobile-social-icons a.brand-ig {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        color: var(--white);
    }
    .mobile-social-icons a.brand-fb { background: #1877F2; color: var(--white); }
    .mobile-social-icons a.brand-group { background: #0084ff; color: var(--white); }
    .mobile-social-icons a.brand-tt { background: #000; color: var(--white); text-shadow: 1px 1px 0 #ff0050, -1px -1px 0 #00f2fe; }

    .mobile-social-icons a:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    }

    /* Section spacing */
    .section-padding { padding: 64px 0; }
    .page-hero { padding: 64px 24px 48px; }
    .ecosystem-intro { padding: 64px 24px; }
    .cta-banner { padding: 64px 24px; }
    .guide-section { padding: 64px 24px; }
    .newsletter-section { padding: 72px 24px; }

    /* Stacking layouts */
    .philosophy-content { flex-direction: column; align-items: center; }
    .card { width: 100%; max-width: 400px; height: 250px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .luxury-grid { grid-template-columns: 1fr; gap: 40px; }
    .bio-section { grid-template-columns: 1fr; gap: 40px; }
    .bio-photo-wrap { max-width: 400px; margin: 0 auto; }

    .book-layout {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 40px;
    }

    .booking-stats,
    .booking-followup-grid {
        grid-template-columns: 1fr;
    }

    .page-hero--booking {
        padding: 92px 24px 56px;
    }

    .booking-followup {
        padding: 0 24px 72px;
    }

    .book-form-wrap {
        position: static;
        padding: 32px 24px;
    }

    .floating-quote {
        position: static;
        margin-top: 24px;
        max-width: 100%;
    }

    /* Support bar */
    .support-bar { flex-direction: column; gap: 0; }
    .support-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 14px 24px;
    }
    .support-item:last-child { border-bottom: none; }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .footer-left { align-items: center; }
    .footer-right { justify-content: center; }
    .footer-banner-image { max-width: 280px; margin-top: 0; }

    /* Grid adjustments */
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { flex-direction: column; align-items: center; }
    .price-card { max-width: 100%; }
    .pricing-section { padding: 60px 20px; }
    .faq-section { padding: 60px 0; }
    .ecosystem-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }

    /* Chat button - smaller on tablet */
    .chat-btn {
        padding: 11px 22px;
        font-size: 0.82rem;
    }

    /* Calendly widget overflow */
    .calendly-inline-widget { min-width: 0 !important; }

    /* Product card buttons — prevent cramping */
    .product-card-actions {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .product-card-actions a {
        font-size: 0.75rem;
        padding: 10px 8px;
    }

    /* Substack embed */
    .substack-container { max-width: 100%; }
}

/*  Responsive — Mobile 560px  */
@media (max-width: 560px) {
    .main-header { padding: 12px 16px; }
    .main-logo-image { height: 50px; }

    .section-padding { padding: 52px 0; }
    .page-hero { padding: 52px 16px 36px; }
    .page-hero h1 { font-size: 2rem !important; }
    .page-hero p { font-size: 1rem; }
    .cta-banner { padding: 52px 16px; }

    .values-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }

    .program-hero { height: 55vh; min-height: 380px; }
    .program-hero h1 { font-size: 2.4rem !important; }

    .hero-section { height: 80vh; min-height: 520px; }
    .hero-content { padding: 24px 18px; }
    .hero-glass-card { padding: 36px 24px; }
    .hero-main-title { font-size: clamp(2.4rem, 12vw, 3.5rem) !important; }
    .hero-main-subtitle { font-size: 1rem; margin-bottom: 32px; }

    .mission-quote { padding: 28px 22px; font-size: 1.1rem; }
    .invitation-card { padding: 36px 24px; }

    .book-form-wrap { padding: 24px 18px; }
    .book-layout { padding: 36px 16px; }

    .feature-card { padding: 30px 26px; }
    .value-card { padding: 30px 24px; }
    .profound-card { padding: 30px 24px; }

    .programs-section { padding: 60px 20px; }

    /* Stack product card buttons vertically */
    .product-card-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .product-card-actions a {
        font-size: 0.82rem;
        padding: 12px 16px;
    }

    /* Full-width buttons */
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    /* Hero actions stack on small screens */
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    /* Ecosystem card tighter */
    .ecosystem-card { padding: 28px 20px; }

    /* Chat button — icon only on very small screens */
    .chat-btn {
        padding: 12px 16px;
        font-size: 0.8rem;
        bottom: 20px;
        right: 16px;
    }

    /* Bio text */
    .bio-text h2 { font-size: 2rem; }
    .bio-text p { font-size: 0.95rem; }

    /* Footer tighter */
    .main-footer { padding: 60px 0 30px; }
    .footer-content { gap: 28px; }
    .footer-banner-image { max-width: 220px; }
    .footer-right { min-width: 0; }

    /* Pricing */
    .price-card { padding: 36px 28px; }
    .price-val { font-size: 2.2rem; }
}

/*  Responsive — Extra-Small Phones 400px  */
@media (max-width: 400px) {
    .container { padding: 0 14px; }
    .main-header { padding: 10px 12px; }
    .main-logo-image { height: 42px; }

    .hero-glass-card { padding: 28px 18px; }
    .hero-main-title { font-size: 2.2rem !important; }
    .hero-main-subtitle { font-size: 0.92rem; }
    .hero-label { font-size: 0.6rem; letter-spacing: 2.5px; padding: 5px 14px; }

    .page-hero h1 { font-size: 1.7rem !important; }
    .page-hero p { font-size: 0.92rem; }

    .section-title { font-size: 1.6rem; }
    .body-text { font-size: 0.92rem; }

    .ecosystem-card { padding: 22px 16px; }
    .step-content h4 { font-size: 0.92rem; }
    .step-content p { font-size: 0.85rem; }

    .feature-card { padding: 24px 20px; }
    .feature-card h3 { font-size: 1.05rem; }
    .feature-icon { font-size: 1.6rem; }

    .product-card-top { padding: 22px 20px 18px; }
    .product-card-top h3 { font-size: 1.2rem; }
    .product-card-body { padding: 22px 20px; }
    .product-card-body > p { font-size: 0.88rem; }

    .faq-item { padding: 22px 20px; }
    .guide-step { padding: 22px 18px; gap: 16px; }

    .chat-btn {
        bottom: 14px;
        right: 12px;
        padding: 10px 14px;
        font-size: 0.78rem;
        gap: 6px;
    }

    .vip-hero-content { padding: 24px 16px; }
    .invitation-card { padding: 28px 18px; }

    .book-layout { padding: 28px 12px; }
    .book-form-wrap { padding: 20px 14px; }
    .booking-sidebar h3,
    .booking-followup-card h3 {
        font-size: 1.1rem;
    }

    .mission-quote { padding: 22px 18px; font-size: 1rem; }
}

/*  Scroll Reveal Animations  */
.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    transition: opacity 0.7s var(--ease-custom),
                transform 0.7s var(--ease-custom),
                filter 0.7s var(--ease-custom);
    filter: blur(8px);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

/* Stagger delays for grid children */
.product-card:nth-child(2) { transition-delay: 0.08s; }
.product-card:nth-child(3) { transition-delay: 0.16s; }
.value-card:nth-child(2) { transition-delay: 0.08s; }
.value-card:nth-child(3) { transition-delay: 0.16s; }
.value-card:nth-child(4) { transition-delay: 0.24s; }
.value-card:nth-child(5) { transition-delay: 0.32s; }
.value-card:nth-child(6) { transition-delay: 0.40s; }
.feature-card:nth-child(2) { transition-delay: 0.08s; }
.feature-card:nth-child(3) { transition-delay: 0.16s; }
.feature-card:nth-child(4) { transition-delay: 0.24s; }
/*  Substack Section  */
.substack-section {
    padding: 100px 20px;
    background: var(--surface);
    text-align: center;
}

.substack-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.4s var(--ease-custom), box-shadow 0.4s ease;
}

.substack-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(47, 93, 98, 0.15);
}

.substack-container iframe {
    width: 100% !important;
    height: 320px !important;
    border: none !important;
    display: block;
}

/* Header Subscribe Link */
.nav-subscribe-link {
    background: var(--secondary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease-custom) !important;
    margin-left: 10px;
    box-shadow: 0 4px 12px rgba(184, 107, 94, 0.25);
}

.nav-subscribe-link:hover {
    background: var(--secondary-light) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(184, 107, 94, 0.35);
    color: var(--white) !important;
}

/* Admin Portal Link */
.nav-admin-link {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease-custom) !important;
    margin-left: 10px;
    box-shadow: 0 4px 12px rgba(47, 93, 98, 0.22);
}

.nav-admin-link:hover {
    background: #235056 !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(47, 93, 98, 0.28);
    color: var(--white) !important;
}

/* Footer Substack */
.footer-substack {
    margin-bottom: 30px;
    width: 100%;
}

.footer-substack iframe {
    width: 100% !important;
    max-width: 480px;
    height: 320px !important;
    border: none !important;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
    .nav-subscribe-link {
        margin-left: 0;
        margin-top: 15px;
        display: inline-block;
        text-align: center;
    }

    .nav-admin-link {
        margin-left: 0;
        margin-top: 15px;
        display: inline-block;
        text-align: center;
    }
}

/* ── Ticket/Registration Modal ── */
.ticket-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ticket-modal-overlay.open {
    display: flex;
}
.ticket-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: modalIn 0.35s var(--ease-custom);
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ticket-modal-header {
    background: var(--primary);
    border-radius: 20px 20px 0 0;
    padding: 32px 40px 28px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.ticket-modal-header h2 {
    color: #fff;
    font-size: 1.6rem;
    margin: 0 0 8px;
}
.ticket-modal-header p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}
.ticket-modal-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}
.ticket-modal-close:hover { background: rgba(255,255,255,0.3); }
.ticket-modal-body {
    padding: 40px;
}

/* ── Registration Form ── */
.register-form .form-group {
    margin-bottom: 16px;
    text-align: left;
}
.register-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease;
}
.register-form input:focus { border-color: var(--primary); }
.register-form .submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 8px 20px rgba(184, 107, 94, 0.25);
}
.register-form .submit-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(184, 107, 94, 0.35);
}
.register-form .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Zoom Confirmation & Upsell ── */
.zoom-card {
    text-align: center;
}
.zoom-check-icon {
    width: 72px;
    height: 72px;
    background: #e8f4f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--primary);
}
.zoom-link-block {
    background: var(--bg-main);
    border-radius: 14px;
    padding: 24px;
    text-align: left;
    margin-top: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}
.zoom-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.zoom-link-block a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    word-break: break-all;
}
.zoom-meta {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 14px;
    line-height: 1.8;
}
.zoom-join-btn {
    display: block;
    background: var(--secondary);
    color: #fff;
    border-radius: 10px;
    padding: 16px 24px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    margin-top: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.zoom-join-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .ticket-modal-header { padding: 24px 28px; }
    .ticket-modal-body { padding: 28px; }
    .ticket-modal-header h2 { font-size: 1.3rem; }
}

/* ── Persistent Legal Disclaimer ── */
.legal-disclaimer-overlay {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 380px;
    max-width: calc(100vw - 56px);
    background: rgba(244, 239, 232, 0.95);
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    z-index: 99999; /* Float above everything including the chat button */
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: opacity 0.4s var(--ease-custom), transform 0.4s var(--ease-custom), visibility 0.4s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
}

.legal-disclaimer-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.legal-disclaimer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(47, 93, 98, 0.12);
    padding-bottom: 14px;
}

.legal-disclaimer-header i {
    color: var(--secondary);
    font-size: 1.4rem;
}

.legal-disclaimer-header h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
}

.legal-disclaimer-body {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-disclaimer-body p {
    margin: 0;
}

.legal-disclaimer-btn {
    width: 100%;
    padding: 13px 28px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(184, 107, 94, 0.22);
    transition: all 0.3s var(--ease-custom);
    text-align: center;
}

.legal-disclaimer-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 107, 94, 0.35);
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
    .legal-disclaimer-overlay {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border-width: 2px 0 0 0;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
        padding: 28px 24px 36px;
        transform: translateY(100%);
    }
    .legal-disclaimer-overlay.show {
        transform: translateY(0);
    }
}
