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

:root {
    --primary-color: #D8B4E2;
    --primary-dark: #B895C8;
    --secondary-color: #E3C770;
    --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;
}

@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;
}

/* 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 {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(140, 0, 35, 1);
    margin-bottom: 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;
    }
}

