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

:root {
    --primary-color: #D8B4E2;
    --primary-dark: #B895C8;
    --secondary-color: #E3C770;
    --gold: #E3C770;
    --gold-bright: #F5DC96;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #faf5fb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(216, 180, 226, 0.2), 0 2px 4px -1px rgba(216, 180, 226, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(216, 180, 226, 0.2), 0 4px 6px -2px rgba(216, 180, 226, 0.1);
}

html {
    background: #2a0a0c;
    min-height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    background: #2a0a0c; /* Deep burgundy fallback — easier on eyes than bright red */
    min-height: 100vh;
    padding-bottom: 96px; /* Account for sticky banner (book promo may wrap) */
}

/* Luxury background — deep wine / burgundy (muted vs bright candy red) */
.background-luxury {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -2 !important;
    background: #4a1218 !important;
    background-image: linear-gradient(135deg, 
        #3a0d12 0%, 
        #4a1218 18%,
        #5c1a22 35%,
        #4a1218 52%,
        #3d1016 68%,
        #521c24 85%,
        #3a0d12 100%) !important;
    background-size: 400% 400% !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    animation: luxuryGradient 20s ease infinite;
}

.background-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(120, 24, 32, 0.45) 0%, transparent 52%),
        radial-gradient(circle at 80% 70%, rgba(90, 18, 26, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(70, 14, 22, 0.35) 0%, transparent 58%),
        radial-gradient(circle at 10% 80%, rgba(50, 10, 16, 0.4) 0%, transparent 48%);
    animation: luxuryPulse 10s ease-in-out infinite;
    pointer-events: none;
}

.background-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.05) 3px, rgba(0, 0, 0, 0.05) 6px),
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0, 0, 0, 0.05) 3px, rgba(0, 0, 0, 0.05) 6px);
    opacity: 0.3;
    pointer-events: none;
}

@keyframes luxuryGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes luxuryPulse {
    0%, 100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 0.72;
        transform: scale(1.02);
    }
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.18);
    z-index: -1;
    pointer-events: none;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(32, 8, 14, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFF5F5;
    letter-spacing: 1px;
}

.logo-separator {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #FFF5F5;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 245, 245, 0.8);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-consult-btn {
    background: var(--secondary-color);
    color: #1f2937 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(227, 199, 112, 0.3);
    font-weight: 600;
}

.nav-consult-btn::after {
    display: none;
}

.nav-consult-btn:hover {
    background: #D4B55F;
    border-color: #D4B55F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227, 199, 112, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFF5F5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF5F5;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Floating Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 245, 245, 0.08);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    will-change: transform;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 80%;
    top: 60%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 50%;
    top: 10%;
    animation-delay: -10s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 20%;
    top: 70%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.particle:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 70%;
    top: 30%;
    animation-delay: -8s;
    animation-duration: 22s;
}

.particle:nth-child(6) {
    width: 90px;
    height: 90px;
    left: 40%;
    top: 80%;
    animation-delay: -12s;
    animation-duration: 26s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.08;
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
        opacity: 0.12;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.9);
        opacity: 0.1;
    }
    75% {
        transform: translate(40px, -30px) scale(1.05);
        opacity: 0.11;
    }
}

/* Luxury Cunning Elements - Sophisticated but Playful */
.hero-luxury-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Elegant Lines - Moving with Cunning Twist */
.luxury-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 245, 245, 0.15) 50%, 
        transparent 100%);
    height: 1px;
    animation: luxuryLineMove 12s infinite ease-in-out;
}

.luxury-line-1 {
    width: 300px;
    top: 20%;
    left: -300px;
    transform: rotate(15deg);
    animation-delay: 0s;
    animation-duration: 14s;
}

.luxury-line-2 {
    width: 250px;
    top: 60%;
    right: -250px;
    transform: rotate(-20deg);
    animation-delay: -4s;
    animation-duration: 16s;
}

.luxury-line-3 {
    width: 200px;
    top: 80%;
    left: 50%;
    transform: rotate(10deg);
    animation-delay: -8s;
    animation-duration: 13s;
}

/* Luxury Diamonds - Playful but Refined */
.luxury-diamond {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 245, 245, 0.4);
    transform: rotate(45deg);
    animation: luxuryDiamondFloat 18s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 245, 245, 0.3);
}

.luxury-diamond-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.luxury-diamond-2 {
    top: 70%;
    right: 20%;
    animation-delay: -6s;
    animation-duration: 22s;
}

.luxury-diamond-3 {
    top: 45%;
    left: 80%;
    animation-delay: -12s;
    animation-duration: 19s;
}

/* Sophisticated Glow Effects - Angel/Villain Vibe */
.luxury-glow {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 245, 245, 0.2) 0%, 
        rgba(255, 245, 245, 0.05) 50%, 
        transparent 100%);
    animation: luxuryGlowPulse 8s infinite ease-in-out;
    filter: blur(40px);
}

.luxury-glow-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.luxury-glow-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -4s;
}

/* Animations */
@keyframes luxuryLineMove {
    0% {
        transform: translateX(0) rotate(15deg);
        opacity: 0;
    }
    20% {
        opacity: 0.3;
    }
    50% {
        transform: translateX(calc(100vw + 300px)) rotate(25deg);
        opacity: 0.5;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(calc(100vw + 600px)) rotate(15deg);
        opacity: 0;
    }
}

@keyframes luxuryDiamondFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(45deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -40px) rotate(135deg) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -60px) rotate(225deg) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -30px) rotate(315deg) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes luxuryGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-script {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 300;
    color: #FFF5F5;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFF5F5;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.5s both, heroTitleFloat 6s ease-in-out infinite;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(255, 245, 245, 0.1) 50%, 
        transparent 100%);
    animation: heroTitleShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-subtext {
    font-size: 1.1rem;
    font-weight: 400;
    color: #FFF5F5;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.6s both, heroSubtextSway 8s ease-in-out infinite;
    position: relative;
    display: block;
    text-align: center;
}

@keyframes heroTitleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(0.5deg);
    }
}

@keyframes heroTitleShimmer {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes heroSubtextSway {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(3px) rotate(-0.3deg);
    }
    75% {
        transform: translateX(-3px) rotate(0.3deg);
    }
}

.hero-urgency {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-guarantee {
    font-size: 0.9rem;
    color: #FFF5F5;
    opacity: 0.8;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: #1f2937;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    animation: fadeInUp 1s ease 0.7s both;
    box-shadow: none;
    position: relative;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: var(--secondary-color);
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    z-index: -1;
    animation: ctaGlow 3s ease-in-out infinite;
}

.cta-button:hover {
    background: #D4B55F;
    border-color: #D4B55F;
    transform: translateY(-2px);
    box-shadow: none;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.75s both;
}

.hero-cta-row .cta-button,
.hero-cta-row .cta-button-secondary {
    animation: none;
}

.hero-qualifier {
    max-width: 640px;
    margin: 1rem auto 1.75rem;
    color: rgba(245, 230, 211, 0.78);
    font-size: 1.05rem;
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: 0.01em;
    animation: fadeInUp 1s ease 0.72s both;
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.25rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(227, 199, 112, 0.22);
    border-bottom: 1px solid rgba(227, 199, 112, 0.12);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.85s both;
}

.hero-trust-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-decoration: none;
    color: var(--text-light);
    padding: 0.25rem 0.5rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.hero-trust-item:hover {
    color: var(--gold);
    transform: translateY(-1px);
}

.hero-trust-item strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--gold);
}

.hero-trust-item span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.65);
}

.hero-trust-sep {
    width: 1px;
    height: 28px;
    background: rgba(227, 199, 112, 0.25);
}

@media (max-width: 520px) {
    .hero-trust-bar {
        gap: 0.6rem;
        padding: 0.9rem 0.75rem;
    }
    .hero-trust-sep { display: none; }
    .hero-trust-item strong { font-size: 1.15rem; }
    .hero-trust-item span { font-size: 0.65rem; letter-spacing: 0.14em; }
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(227, 199, 112, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(227, 199, 112, 0.6), 0 0 20px rgba(227, 199, 112, 0.3);
    }
}

@keyframes ctaPulseHover {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(227, 199, 112, 0.5);
    }
    50% {
        box-shadow: 0 6px 30px rgba(227, 199, 112, 0.7), 0 0 25px rgba(227, 199, 112, 0.4);
    }
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.cta-button-inline {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: #1f2937;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 199, 112, 0.4);
    border: 2px solid var(--secondary-color);
}

.cta-button-inline:hover {
    background: #D4B55F;
    border-color: #D4B55F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 199, 112, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator svg {
    display: block;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

.section-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6B7280;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.section-subtitle {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #4B5563;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #6B7280;
    border-radius: 2px;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.85);
    padding: 0;
    backdrop-filter: blur(3px);
}

.about-header {
    padding: 5rem 0 3rem;
    background: var(--white);
}

.about-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about .container {
    padding: 0;
    max-width: 100%;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.about-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.about-header-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.about-text p.emphasis {
    font-weight: 600;
    color: #6B7280;
    font-size: 1.15rem;
}

.about-text p.cta-text {
    font-weight: 600;
    color: #6B7280;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pain Points Section */
.pain-points {
    background: rgba(250, 245, 251, 0.85);
    backdrop-filter: blur(3px);
}

.pain-points-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.pain-points-text p.lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.pain-points-text p.emphasis {
    font-weight: 600;
    color: #6B7280;
    font-size: 1.15rem;
}

.pain-points-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pain-points-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(107, 114, 128, 0.2);
}

.pain-points-list li:last-child {
    border-bottom: none;
}

.pain-points-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6B7280;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Program Section */
.program {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
}

.program-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.program-text p.lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.program-text p.emphasis {
    font-weight: 600;
    color: #6B7280;
    font-size: 1.15rem;
}

/* Program Details Section */
.program-details {
    background: var(--bg-light);
}

.program-details-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.program-details-content .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
}

.program-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.program-details-list li {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    line-height: 1.8;
    color: var(--text-light);
}

.program-details-list strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

/* Approach Section */
.approach {
    background: var(--bg-light);
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.approach-text p.emphasis {
    font-weight: 600;
    color: #6B7280;
    font-size: 1.15rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(216, 180, 226, 0.2);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6B7280;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    background: rgba(255, 255, 255, 0.85);
    padding: 5rem 0;
    backdrop-filter: blur(3px);
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(250, 245, 251, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    backdrop-filter: blur(3px);
}

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

.testimonial-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.testimonial-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--white);
}

.testimonial-avatar-1 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #D4B55F 100%);
}

.testimonial-avatar-3 {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
}

.testimonial-avatar-4 {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: normal;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(216, 180, 226, 0.3);
}

.testimonial-author-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-name {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    font-style: normal;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: normal;
}

.testimonial-meta {
    color: #6B7280;
    font-size: 0.75rem;
    font-style: normal;
    letter-spacing: 0.02em;
}

/* Qualifier Section — Who This Is For */
.qualifier {
    background: rgba(10, 4, 8, 0.82);
    padding: 5rem 0;
    backdrop-filter: blur(5px);
}

.qualifier-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.qualifier-card {
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(227, 199, 112, 0.18);
    background: linear-gradient(180deg, rgba(32, 8, 14, 0.65), rgba(10, 4, 8, 0.85));
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.qualifier-card-for {
    border-color: rgba(227, 199, 112, 0.45);
    box-shadow: 0 0 0 1px rgba(227, 199, 112, 0.08), 0 10px 40px rgba(0, 0, 0, 0.35);
}

.qualifier-card-not {
    border-color: rgba(180, 80, 80, 0.35);
}

.qualifier-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFF5F5;
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.qualifier-card-not .qualifier-card-title {
    color: #FFF5F5;
}

.qualifier-card-title em {
    font-style: italic;
}

.qualifier-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qualifier-list li {
    position: relative;
    padding: 0.65rem 0 0.65rem 1.75rem;
    color: rgba(245, 230, 211, 0.94);
    line-height: 1.55;
    font-size: 1rem;
    border-bottom: 1px solid rgba(227, 199, 112, 0.08);
}

.qualifier-list li:last-child {
    border-bottom: none;
}

.qualifier-card-for .qualifier-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.65rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}

.qualifier-card-not .qualifier-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 0.65rem;
    color: rgba(220, 140, 140, 0.85);
    font-weight: 700;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .qualifier-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .qualifier-card {
        padding: 1.75rem 1.5rem;
    }
}

/* Final CTA Section */
.final-cta {
    background: rgba(32, 8, 14, 0.88);
    padding: 5rem 0;
    text-align: center;
    backdrop-filter: blur(5px);
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.final-cta-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFF5F5;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.final-cta-text {
    font-size: 1.2rem;
    color: #FFF5F5;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cta-button-secondary:hover {
    background: var(--secondary-color);
    color: #1f2937;
}

/* Newsletter Section */
.newsletter {
    background: rgba(250, 245, 251, 0.85);
    padding: 4rem 0;
    backdrop-filter: blur(3px);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.newsletter-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.substack-embed {
    max-width: 500px;
    margin: 2rem auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.substack-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: #1f2937;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.substack-button:hover {
    background: #D4B55F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 199, 112, 0.5);
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Simulation Section */
.simulation {
    background: linear-gradient(135deg, rgba(227, 199, 112, 0.1) 0%, rgba(227, 199, 112, 0.05) 100%);
    padding: 5rem 0;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.simulation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.simulation-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.simulation-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.simulation-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.simulation-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.simulation-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background: rgba(255, 255, 255, 0.85);
    padding: 5rem 0;
    backdrop-filter: blur(3px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Make flagship span full width on larger screens */
@media (min-width: 992px) {
    .service-option-flagship {
        grid-column: 1 / -1;
        max-width: 800px;
        margin: 0 auto;
    }
}

.service-option {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    backdrop-filter: blur(10px);
}

.service-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Book option */
.service-option-book {
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.98);
}

.service-option-book::before {
    content: '📖';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* Discovery Call option */
.service-option-discovery {
    border: 2px solid rgba(107, 114, 128, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.service-option-discovery::before {
    content: '💬';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* Featured 45-Min Consult */
.service-option-featured {
    border: 2px solid var(--secondary-color);
    background: rgba(255, 255, 255, 0.98);
}

.service-option-consult::before {
    content: '🎯';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* Package option */
.service-option-package {
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.98);
}

.service-option-package::before {
    content: '💎';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* Premium Membership */
.service-option-premium {
    border: 2px solid rgba(140, 0, 35, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.service-option-membership::before {
    content: '👑';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* Flagship Skool Service - Special Styling */
.service-option-flagship {
    border: 3px solid rgba(185, 28, 28, 0.5);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 245, 245, 0.95) 100%);
    box-shadow: 0 8px 30px rgba(185, 28, 28, 0.2), 
                0 0 0 1px rgba(185, 28, 28, 0.1);
    transform: scale(1.02);
    grid-column: 1 / -1; /* Make it span full width on larger screens */
}

.service-option-flagship:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(185, 28, 28, 0.3), 
                0 0 0 1px rgba(185, 28, 28, 0.2);
    border-color: rgba(185, 28, 28, 0.7);
}

.flagship-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: #FFF5F5;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.4);
    z-index: 10;
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #D4B55F 100%);
    color: #1f2937;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(227, 199, 112, 0.4);
    z-index: 10;
}

.service-option-recommended {
    border: 3px solid var(--secondary-color);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(227, 199, 112, 0.2), 
                0 0 0 1px rgba(227, 199, 112, 0.1);
    transform: scale(1.02);
}

.service-option-recommended:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(227, 199, 112, 0.3), 
                0 0 0 1px rgba(227, 199, 112, 0.2);
    border-color: var(--secondary-color);
}

.service-cta-recommended {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #D4B55F 100%);
    color: #1f2937 !important;
    border: 2px solid var(--secondary-color);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(227, 199, 112, 0.4);
}

.service-cta-recommended:hover {
    background: linear-gradient(135deg, #D4B55F 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(227, 199, 112, 0.5);
}

.service-option-skool::before {
    content: '🔥';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.8rem;
    opacity: 0.4;
    animation: flagshipIconPulse 2s ease-in-out infinite;
}

@keyframes flagshipIconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.service-option-flagship .service-option-title {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1rem;
}

.service-option-flagship .service-option-price {
    font-size: 2.5rem;
    color: #B91C1C;
    font-weight: 800;
}

.price-change-notice {
    font-size: 0.85rem;
    font-weight: 600;
    color: #991B1B;
    background: rgba(185, 28, 28, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin: -0.5rem auto 1rem;
    display: inline-block;
    border: 1px solid rgba(185, 28, 28, 0.2);
    letter-spacing: 0.5px;
}

.service-option-flagship .service-option-description {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.service-cta-flagship {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: #FFF5F5 !important;
    border: 2px solid #B91C1C;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 20px rgba(185, 28, 28, 0.4);
    position: relative;
    overflow: hidden;
}

.service-cta-flagship::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.service-cta-flagship:hover {
    background: linear-gradient(135deg, #991B1B 0%, #7F1D1D 100%);
    border-color: #991B1B;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(185, 28, 28, 0.5);
}

.service-cta-flagship:hover::before {
    left: 100%;
}

.service-option-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-option-price {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: -0.5rem 0 1rem;
}

.service-option-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-option-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.service-option-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-option-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(140, 0, 35, 1);
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(140, 0, 35, 1);
    color: #FFF5F5;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(140, 0, 35, 1);
}

.service-cta:hover {
    background: rgba(120, 0, 30, 1);
    border-color: rgba(120, 0, 30, 1);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    color: var(--text-dark);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group .required {
    color: #6B7280;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: #1f2937;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 199, 112, 0.4);
}

.submit-button:hover {
    background: #D4B55F;
    border-color: #D4B55F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 199, 112, 0.5);
}

/* Footer */
.footer {
    background: rgba(31, 41, 55, 0.95);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 0;
    backdrop-filter: blur(5px);
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-signoff {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #FFF5F5;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 245, 245, 0.2);
}

.social-icon:hover {
    background: rgba(185, 28, 28, 0.3);
    border-color: rgba(185, 28, 28, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.footer-email {
    margin-top: 1rem;
}

.footer-email a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

.footer-email a:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Responsive Design */
/* Sticky bottom bar (shared layout) */
.sticky-consult-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4a151c 0%, #351016 100%);
    color: #FFF5F5;
    text-decoration: none;
    padding: 1rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
    border-top: 2px solid rgba(255, 245, 245, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.sticky-consult-banner:hover {
    background: linear-gradient(135deg, #5c1c26 0%, #3d1018 100%);
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.sticky-consult-banner:active {
    transform: translateY(0) scale(0.98);
}

.sticky-banner-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sticky-banner-price {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 600;
    background: rgba(255, 245, 245, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

/* Book V2 promo variant */
.sticky-book-sales-banner {
    flex-wrap: wrap;
    border-top-color: rgba(227, 199, 112, 0.55);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

.sticky-book-sales-banner:hover {
    border-top-color: rgba(227, 199, 112, 0.85);
}

.sticky-banner-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-color);
    width: 100%;
    text-align: center;
    order: -1;
}

.sticky-banner-highlight {
    font-size: 0.85rem;
    opacity: 0.92;
    font-weight: 500;
    max-width: 100%;
}

.sticky-banner-cta {
    font-size: 0.95rem;
    font-weight: 700;
    background: rgba(227, 199, 112, 0.22);
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    border: 1px solid rgba(227, 199, 112, 0.35);
}

.sticky-book-sales-banner .sticky-banner-text {
    text-transform: none;
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .sticky-consult-banner {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .sticky-banner-text {
        font-size: 1rem;
    }
    
    .sticky-banner-price {
        font-size: 0.9rem;
    }

    .sticky-banner-highlight {
        font-size: 0.8rem;
        text-align: center;
        padding: 0 0.5rem;
    }

    .sticky-book-sales-banner .sticky-banner-text {
        font-size: 1.05rem;
    }

    /* Mobile luxury background adjustments */
    .background-luxury {
        background-size: 300% 300%;
    }

    /* Reduce particles on mobile for better performance */
    .particle {
        opacity: 0.5;
    }
    
    .particle:nth-child(4),
    .particle:nth-child(5),
    .particle:nth-child(6) {
        display: none;
    }

    /* Reduce luxury elements on mobile */
    .luxury-line-3,
    .luxury-diamond-3,
    .luxury-glow-2 {
        display: none;
    }

    .luxury-line {
        width: 200px;
    }

    .luxury-glow {
        filter: blur(30px);
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(32, 8, 14, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-script {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtext {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-content {
        padding: 3rem 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-video-container {
        min-height: 300px;
        order: -1; /* Video appears first on mobile */
    }

    .about-header-title {
        font-size: 2rem;
    }

    .contact-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .substack-embed {
        max-width: 100%;
        padding: 0 1rem;
    }

    .substack-embed iframe {
        height: 280px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .services-section .services-grid {
        grid-template-columns: 1fr;
    }

    .service-option-flagship {
        grid-column: 1;
        transform: scale(1);
        margin-bottom: 1rem;
    }

    .service-option-flagship:hover {
        transform: translateY(-5px) scale(1);
    }

    /* Make 45-Min Consult more prominent on mobile */
    .service-option-consult {
        border-width: 3px !important;
        border-color: var(--secondary-color) !important;
        box-shadow: 0 8px 25px rgba(227, 199, 112, 0.3) !important;
        transform: scale(1.02);
        margin: 1.5rem 0;
        position: relative;
    }

    .service-option-consult::after {
        content: 'POPULAR';
        position: absolute;
        top: -12px;
        right: 20px;
        background: var(--secondary-color);
        color: #1f2937;
        padding: 0.3rem 0.8rem;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 1px;
        box-shadow: 0 2px 8px rgba(227, 199, 112, 0.4);
    }

    .service-option-consult .service-cta {
        font-size: 1.1rem !important;
        padding: 1.1rem 2rem !important;
        font-weight: 700 !important;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-script {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 2.5rem 0;
    }
}

/* Calendly Modal */
.calendly-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendly-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.calendly-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.calendly-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.calendly-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #6B7280;
    color: #FFFFFF;
    border: 2px solid #6B7280;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(107, 114, 128, 0.3);
}

.calendly-modal-close:hover {
    background: #4B5563;
    border-color: #4B5563;
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.4);
}

.calendly-inline-widget {
    width: 100%;
    height: 700px;
    border: none;
}

@media (max-width: 768px) {
    .calendly-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 8px;
    }

    .calendly-inline-widget {
        height: 600px;
    }

    .calendly-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

/* Email Capture Modal - Elegant & Non-Pushy */
.email-capture-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.email-capture-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.email-capture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.email-capture-content {
    position: relative;
    background: linear-gradient(135deg, #FFF5F5 0%, #ffffff 100%);
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    padding: 3rem 2.5rem;
    z-index: 20001;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(185, 28, 28, 0.1);
    animation: emailModalSlideIn 0.5s ease;
    border: 2px solid rgba(185, 28, 28, 0.2);
}

@keyframes emailModalSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.email-capture-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    color: #6B7280;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 20002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
}

.email-capture-close:hover {
    color: #B91C1C;
    background: rgba(185, 28, 28, 0.1);
    transform: rotate(90deg);
}

.email-capture-inner {
    text-align: center;
}

.email-capture-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #B91C1C;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.email-capture-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #991B1B;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.email-capture-description {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-capture-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.email-capture-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: #FFF5F5;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #B91C1C;
    box-shadow: 0 4px 20px rgba(185, 28, 28, 0.4);
    position: relative;
    overflow: hidden;
}

.email-capture-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.email-capture-button:hover {
    background: linear-gradient(135deg, #991B1B 0%, #7F1D1D 100%);
    border-color: #991B1B;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(185, 28, 28, 0.5);
}

.email-capture-button:hover::before {
    left: 100%;
}

.email-capture-privacy {
    font-size: 0.85rem;
    color: #9CA3AF;
    margin: 0;
}

@media (max-width: 768px) {
    .email-capture-content {
        width: 95%;
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }

    .email-capture-title {
        font-size: 1.6rem;
    }

    .email-capture-subtitle {
        font-size: 1rem;
    }

    .email-capture-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================================
   Apply Modal — Live Course application
   ============================================================ */
.apply-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
}
.apply-modal.active {
    display: flex;
}
.apply-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 4, 6, 0.72);
    backdrop-filter: blur(4px);
}
.apply-modal-content {
    position: relative;
    z-index: 1;
    width: 94%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem 2.25rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.apply-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.1rem;
    background: none;
    border: none;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
    padding: 0.2rem 0.4rem;
}
.apply-modal-close:hover { color: #111; }
.apply-modal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #2d0a0e;
    margin: 0 0 0.35rem;
}
.apply-modal-subtitle {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 0 0 1.4rem;
    line-height: 1.5;
}
.apply-field {
    margin-bottom: 1.1rem;
}
.apply-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #2d0a0e;
    margin-bottom: 0.38rem;
}
.apply-input,
.apply-textarea,
.apply-select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    font: inherit;
    font-size: 0.95rem;
    color: #111;
    border: 2px solid #e5d5ea;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.18s;
    box-sizing: border-box;
}
.apply-input:focus,
.apply-textarea:focus,
.apply-select:focus {
    outline: none;
    border-color: #b895c8;
    box-shadow: 0 0 0 3px rgba(184,149,200,0.25);
}
.apply-textarea { min-height: 4.5rem; resize: vertical; }
.apply-select { cursor: pointer; appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234b5563' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 0.85rem center;
    padding-right: 2.2rem;
}
.apply-error {
    color: #c0392b;
    font-size: 0.88rem;
    margin: 0.2rem 0 0.8rem;
    min-height: 1.2em;
}
.apply-submit {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #8b1a24, #5c3d4a);
    color: #fff;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: opacity 0.18s;
    margin-top: 0.4rem;
}
.apply-submit:hover { opacity: 0.88; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

@media (max-width: 480px) {
    .apply-modal-content { padding: 1.5rem 1.1rem 1.75rem; }
    .apply-modal-title { font-size: 1.3rem; }
}

/* Dark-section header contrast fix — overrides the global dark-on-dark .section-* colors */
.qualifier .section-title,
.more-from-domo .section-title {
    color: #FFF5F5;
}
.qualifier .section-subtitle,
.more-from-domo .section-subtitle {
    color: var(--gold-bright);
    opacity: 0.92;
}
.qualifier .section-number,
.more-from-domo .section-number {
    color: var(--gold);
    opacity: 0.85;
}
.qualifier .section-title::after,
.more-from-domo .section-title::after {
    background: var(--gold);
}

/* How We Work — Brochure Section (THE focus of the page) */
.more-from-domo {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(140, 30, 50, 0.18), transparent 70%),
        linear-gradient(180deg, rgba(48, 16, 26, 0.9), rgba(28, 10, 16, 0.92));
    padding: 6rem 0 7rem;
    backdrop-filter: blur(4px);
    position: relative;
}

.more-from-domo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 199, 112, 0.4), transparent);
}

.more-from-domo .section-title {
    font-size: 2.75rem;
}

/* Flagship Live Course card — full-width, dominant, magnetic */
.flagship-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.75rem 2.5rem;
    margin: 3rem 0 2.25rem;
    border-radius: 14px;
    border: 1px solid rgba(227, 199, 112, 0.55);
    background:
        radial-gradient(ellipse at top left, rgba(160, 40, 60, 0.4), transparent 60%),
        linear-gradient(180deg, rgba(58, 18, 28, 0.92), rgba(28, 10, 16, 0.88));
    text-decoration: none;
    box-shadow:
        0 0 0 1px rgba(227, 199, 112, 0.2),
        0 14px 56px rgba(0, 0, 0, 0.55),
        0 0 80px -20px rgba(227, 199, 112, 0.18);
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: flagshipPulse 4s ease-in-out infinite;
}

@keyframes flagshipPulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(227, 199, 112, 0.2),
            0 14px 56px rgba(0, 0, 0, 0.55),
            0 0 80px -20px rgba(227, 199, 112, 0.18);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(245, 220, 150, 0.32),
            0 14px 56px rgba(0, 0, 0, 0.55),
            0 0 100px -10px rgba(245, 220, 150, 0.32);
    }
}

.flagship-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, transparent 55%, rgba(227, 199, 112, 0.08) 100%);
    transition: opacity 0.35s ease;
}

/* Sweeping shine effect on hover */
.flagship-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        100deg,
        transparent 30%,
        rgba(245, 220, 150, 0.18) 50%,
        transparent 70%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.flagship-card:hover {
    transform: translateY(-6px) scale(1.012);
    border-color: rgba(245, 220, 150, 0.95);
    box-shadow:
        0 0 0 1px rgba(245, 220, 150, 0.5),
        0 24px 72px rgba(0, 0, 0, 0.6),
        0 0 140px -20px rgba(245, 220, 150, 0.45);
    animation-play-state: paused;
}

.flagship-card:hover::after {
    left: 125%;
}

.flagship-card-left,
.flagship-card-right {
    position: relative;
    z-index: 1;
}

.flagship-card-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(245, 220, 150, 1);
    background: rgba(227, 199, 112, 0.12);
    border: 1px solid rgba(227, 199, 112, 0.4);
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.flagship-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #FFF5F5;
    line-height: 1.05;
    margin: 0 0 1rem;
    letter-spacing: 0.5px;
}

.flagship-card-tag {
    color: rgba(245, 230, 211, 0.85);
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

.flagship-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.flagship-card-bullets li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.6rem;
    color: rgba(245, 230, 211, 0.92);
    font-size: 0.98rem;
    line-height: 1.45;
    border-bottom: 1px solid rgba(227, 199, 112, 0.12);
}

.flagship-card-bullets li:last-child {
    border-bottom: none;
}

.flagship-card-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--gold);
    font-weight: 700;
}

.flagship-card-cta {
    display: inline-block;
    padding: 0.95rem 2rem;
    background: linear-gradient(135deg, var(--gold), #D4B55F);
    color: #1f0a10;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    box-shadow:
        0 6px 18px rgba(227, 199, 112, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.flagship-card:hover .flagship-card-cta {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    transform: translateX(4px);
    box-shadow:
        0 10px 28px rgba(245, 220, 150, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@media (max-width: 880px) {
    .flagship-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    .flagship-card-title {
        font-size: 1.85rem;
    }
}

/* Secondary brochure cards — 2x2 grid on desktop, bigger and louder */
.brochure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-top: 0.5rem;
}

.brochure-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 2.5rem 2.25rem;
    min-height: 340px;
    border-radius: 14px;
    border: 1px solid rgba(227, 199, 112, 0.32);
    background:
        radial-gradient(ellipse at top right, rgba(140, 30, 50, 0.22), transparent 65%),
        linear-gradient(180deg, rgba(48, 16, 26, 0.85), rgba(26, 9, 14, 0.82));
    text-decoration: none;
    transition:
        border-color 0.4s ease,
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        background 0.4s ease,
        box-shadow 0.4s ease;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(227, 199, 112, 0.12),
        0 10px 32px rgba(0, 0, 0, 0.4);
}

.brochure-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at top, rgba(227, 199, 112, 0), transparent 70%);
    transition: background 0.4s ease;
}

/* Sweeping shine effect on hover (mirrors the flagship) */
.brochure-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        100deg,
        transparent 30%,
        rgba(245, 220, 150, 0.14) 50%,
        transparent 70%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brochure-card:hover {
    border-color: rgba(245, 220, 150, 0.85);
    transform: translateY(-10px) scale(1.035);
    background:
        radial-gradient(ellipse at top right, rgba(170, 45, 70, 0.32), transparent 65%),
        linear-gradient(180deg, rgba(64, 22, 36, 0.92), rgba(34, 12, 20, 0.88));
    box-shadow:
        0 0 0 1px rgba(245, 220, 150, 0.45),
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 0 110px -20px rgba(245, 220, 150, 0.45);
}

.brochure-card:hover::before {
    background: radial-gradient(ellipse at top, rgba(245, 220, 150, 0.16), transparent 70%);
}

.brochure-card:hover::after {
    left: 125%;
}

.brochure-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-bright);
    font-weight: 700;
    background: rgba(227, 199, 112, 0.12);
    border: 1px solid rgba(227, 199, 112, 0.35);
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

.brochure-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #FFF5F5;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.4px;
    margin-top: 0.25rem;
    position: relative;
    z-index: 1;
}

.brochure-bullets {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1.25rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.brochure-bullets li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.4rem;
    color: rgba(245, 230, 211, 0.92);
    font-size: 1rem;
    line-height: 1.45;
    border-bottom: 1px solid rgba(227, 199, 112, 0.1);
}

.brochure-bullets li:last-child {
    border-bottom: none;
}

.brochure-bullets li::before {
    content: '·';
    position: absolute;
    left: 0.35rem;
    top: 0.25rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.4rem;
}

.brochure-cta {
    display: inline-block;
    font-size: 1rem;
    color: var(--gold-bright);
    font-weight: 700;
    margin-top: auto;
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(227, 199, 112, 0.4);
    background: rgba(227, 199, 112, 0.08);
    text-align: center;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 1;
}

.brochure-card:hover .brochure-cta {
    color: #1f0a10;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    border-color: var(--gold-bright);
    transform: translateX(3px);
    box-shadow: 0 8px 20px rgba(245, 220, 150, 0.35);
}

@media (max-width: 880px) {
    .brochure-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .brochure-card {
        padding: 2rem 1.5rem;
        min-height: 0;
    }
    .brochure-title {
        font-size: 1.55rem;
    }
}

/* =====================================================
   Featured Video Testimonial (homepage)
   ===================================================== */
.video-testimonial {
    margin: 2.5rem auto 3rem;
    max-width: 480px;
    text-align: center;
}
.video-testimonial-frame {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(227, 199, 112, 0.32);
    background: #000;
    box-shadow:
        0 0 0 1px rgba(227, 199, 112, 0.18),
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 120px -20px rgba(245, 220, 150, 0.32);
}
.video-testimonial-player {
    display: block;
    width: 100%;
    height: auto;
    max-height: 78vh;
    object-fit: contain;
    background: #000;
}
.video-testimonial-sound {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.95rem;
    background: linear-gradient(135deg, var(--gold), #D4B55F);
    color: #1f0a10;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 2;
    box-shadow:
        0 8px 22px rgba(227, 199, 112, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: vidPulse 1.6s ease-in-out infinite;
    transition: transform 0.2s ease, opacity 0.25s ease;
}
.video-testimonial-sound:hover { transform: scale(1.05); }
.video-testimonial-sound.is-hidden {
    opacity: 0;
    pointer-events: none;
    animation: none;
}
@keyframes vidPulse {
    0%, 100% { box-shadow: 0 8px 22px rgba(227, 199, 112, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
    50%      { box-shadow: 0 8px 32px rgba(245, 220, 150, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 0 6px rgba(227, 199, 112, 0.18); }
}
.video-testimonial-caption {
    margin: 0.95rem 0 0;
    font-size: 0.92rem;
    color: rgba(245, 230, 211, 0.72);
    font-style: italic;
    line-height: 1.5;
}

/* =====================================================
   Apply Chooser Modal — opens for any .apply-modal-btn
   Mobile-safe alternative to a silent mailto: link
   ===================================================== */
.apply-chooser-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.apply-chooser-modal.is-open {
    display: flex;
    animation: applyChooserFade 0.25s ease;
}
@keyframes applyChooserFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.apply-chooser-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 4, 6, 0.78);
    backdrop-filter: blur(6px);
}
.apply-chooser-content {
    position: relative;
    width: min(520px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    background:
        radial-gradient(ellipse at top, rgba(140, 30, 50, 0.28), transparent 65%),
        linear-gradient(180deg, rgba(40, 14, 22, 0.98), rgba(20, 8, 12, 0.98));
    border: 1px solid rgba(227, 199, 112, 0.4);
    border-radius: 16px;
    padding: 2.25rem 1.75rem 1.75rem;
    box-shadow:
        0 0 0 1px rgba(227, 199, 112, 0.18),
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 120px -20px rgba(245, 220, 150, 0.35);
    animation: applyChooserPop 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes applyChooserPop {
    from { transform: translateY(12px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.apply-chooser-close {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(227, 199, 112, 0.25);
    border-radius: 50%;
    color: rgba(245, 230, 211, 0.85);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}
.apply-chooser-close:hover {
    border-color: rgba(245, 220, 150, 0.7);
    color: #FFF5F5;
    transform: rotate(90deg);
}
.apply-chooser-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--gold-bright);
    background: rgba(227, 199, 112, 0.12);
    border: 1px solid rgba(227, 199, 112, 0.35);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.85rem;
}
.apply-chooser-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #FFF5F5;
    margin: 0 0 0.6rem;
    line-height: 1.15;
    letter-spacing: 0.3px;
}
.apply-chooser-subtitle {
    color: rgba(245, 230, 211, 0.85);
    font-size: 0.98rem;
    line-height: 1.5;
    margin: 0 0 1.5rem;
}
.apply-form {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    margin: 0.25rem 0 1.25rem;
}
.apply-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.apply-field-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
}
.apply-field-hint {
    font-size: 0.78rem;
    color: rgba(245, 230, 211, 0.55);
    font-style: italic;
    margin-top: 0.1rem;
}
.apply-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    background: rgba(20, 8, 12, 0.7);
    border: 1px solid rgba(227, 199, 112, 0.28);
    border-radius: 8px;
    color: #FFF5F5;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.45;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}
.apply-input::placeholder {
    color: rgba(245, 230, 211, 0.42);
}
.apply-input:focus {
    outline: none;
    border-color: var(--gold-bright);
    background: rgba(28, 12, 18, 0.85);
    box-shadow: 0 0 0 3px rgba(227, 199, 112, 0.18);
}
.apply-textarea {
    resize: vertical;
    min-height: 88px;
}
.apply-input--err {
    border-color: #E66B6B;
    box-shadow: 0 0 0 3px rgba(230, 107, 107, 0.18);
    animation: applyShake 0.35s ease;
}
@keyframes applyShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.apply-chooser-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.apply-chooser-btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}
.apply-chooser-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 1rem 1.15rem;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(227, 199, 112, 0.06);
    border: 1px solid rgba(227, 199, 112, 0.32);
    color: #FFF5F5;
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.apply-chooser-btn:hover {
    border-color: rgba(245, 220, 150, 0.8);
    background: rgba(245, 220, 150, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
.apply-chooser-btn--primary {
    background: linear-gradient(135deg, var(--gold), #D4B55F);
    border-color: var(--gold-bright);
    color: #1f0a10;
    box-shadow:
        0 8px 22px rgba(227, 199, 112, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.apply-chooser-btn--primary:hover {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #1f0a10;
    box-shadow:
        0 12px 32px rgba(245, 220, 150, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.apply-chooser-btn--ghost {
    background: transparent;
    border-style: dashed;
    border-color: rgba(227, 199, 112, 0.28);
}
.apply-chooser-btn-title {
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.apply-chooser-btn--primary .apply-chooser-btn-title {
    color: #1f0a10;
}
.apply-chooser-btn-sub {
    font-size: 0.82rem;
    opacity: 0.78;
    font-weight: 500;
}
.apply-chooser-btn--primary .apply-chooser-btn-sub {
    color: rgba(31, 10, 16, 0.78);
    opacity: 1;
}
.apply-chooser-foot {
    margin: 1.4rem 0 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(245, 230, 211, 0.6);
    font-style: italic;
}

@media (max-width: 540px) {
    .apply-chooser-content {
        padding: 2rem 1.25rem 1.5rem;
    }
    .apply-chooser-title {
        font-size: 1.55rem;
    }
}

