/* =============================================
   Wedding Business Coach — Premium Landing CSS
   Funnel-optimized, conversion-driven design
   ============================================= */

/* === VARIABLES === */
:root {
    --wbc-cream: #F6EDD4;
    --wbc-accent: #B22222;
    --wbc-accent-dark: #8B1A1A;
    --wbc-accent-light: rgba(178, 34, 34, 0.08);
    --wbc-text: #1A1A1A;
    --wbc-text-muted: #6B6B6B;
    --wbc-text-light: #9A9A9A;
    --wbc-white: #FFFFFF;
    --wbc-border: #E5DCC8;
    --wbc-border-dark: rgba(26, 26, 26, 0.1);
    --wbc-gold: #C9A96E;
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--wbc-text);
    background-color: var(--wbc-cream);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--wbc-accent);
    text-decoration: none;
    transition: color 200ms ease;
}
a:hover { color: var(--wbc-accent-dark); }

:focus-visible {
    outline: 2px solid var(--wbc-accent);
    outline-offset: 2px;
}

/* === TYPOGRAPHIE === */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--wbc-text);
    font-weight: 700;
}

h1 { font-size: clamp(34px, 5.5vw, 60px); line-height: 1.1; }
h2 { font-size: clamp(28px, 4.2vw, 44px); line-height: 1.15; }
h3 { font-size: clamp(20px, 3vw, 28px); line-height: 1.3; font-weight: 600; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

section {
    padding: clamp(72px, 12vw, 140px) 0;
    position: relative;
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wbc-accent), var(--wbc-gold));
    width: 0%;
    z-index: 200;
    transition: width 50ms linear;
}

/* =============================================
   BOUTONS PREMIUM
   ============================================= */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.6vw, 16px);
    font-weight: 600;
    line-height: 1;
    padding: 20px 44px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--wbc-accent) 0%, var(--wbc-accent-dark) 100%);
    color: var(--wbc-white);
    box-shadow: 0 4px 20px rgba(178, 34, 34, 0.3),
                0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    color: var(--wbc-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(178, 34, 34, 0.4),
                0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Pulse subtil sur les CTA principaux */
@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(178, 34, 34, 0.3); }
    50% { box-shadow: 0 4px 28px rgba(178, 34, 34, 0.5); }
}

.hero-cta .btn-primary,
.cta-final .btn-white {
    animation: subtlePulse 3s ease-in-out infinite;
}

.hero-cta .btn-primary:hover,
.cta-final .btn-white:hover {
    animation: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--wbc-accent);
    border: 1.5px solid var(--wbc-accent);
}

.btn-secondary:hover {
    background-color: var(--wbc-accent);
    color: var(--wbc-white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--wbc-white);
    color: var(--wbc-accent);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background-color: var(--wbc-cream);
    color: var(--wbc-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.section-cta {
    text-align: center;
    margin-top: 56px;
}

/* =============================================
   ANIMATIONS STORYTELLING
   ============================================= */

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger pour grilles */
.scroll-reveal:nth-child(2) { transition-delay: 0.12s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.24s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.32s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.38s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.44s; }
.scroll-reveal:nth-child(7) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(8) { transition-delay: 0.56s; }

/* Slide from left */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.scroll-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in */
.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(246, 237, 212, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--wbc-border);
    transition: all 300ms ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    background-color: rgba(246, 237, 212, 0.98);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo img,
.header-logo svg {
    height: 80px;
    width: auto;
}

.header-cta .btn {
    padding: 14px 28px;
    font-size: 14px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    padding-top: 140px;
    padding-bottom: clamp(72px, 12vw, 140px);
    background-color: var(--wbc-cream);
    position: relative;
}

/* Subtle decorative element */
.hero::after {
    content: '';
    position: absolute;
    top: 120px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(178,34,34,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wbc-accent);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--wbc-accent);
}

.hero h1 {
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.75;
    color: var(--wbc-text-muted);
    margin-bottom: 40px;
}

.hero-cta {
    margin-bottom: 20px;
}

.hero-mention {
    font-size: 14px;
    font-weight: 500;
    color: var(--wbc-text-muted);
}

.hero-image {
    position: relative;
    overflow: hidden;
}

/* Subtle gold frame effect */
.hero-image::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 1px solid var(--wbc-gold);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    max-height: 640px;
    object-fit: cover;
    object-position: center top;
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
    background-color: var(--wbc-text);
    padding: clamp(48px, 7vw, 80px) 0;
    position: relative;
    overflow: hidden;
}

/* Diagonal cut top */
.stats-bar::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--wbc-cream);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 5vw, 72px);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 700;
    color: var(--wbc-white);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    color: var(--wbc-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.12);
}

/* =============================================
   PAIN POINTS
   ============================================= */
.pain-points {
    background-color: var(--wbc-cream);
    position: relative;
}

.pain-points h2 {
    text-align: center;
    margin-bottom: 64px;
}

.pain-list {
    list-style: none;
    max-width: 720px;
    margin: 0 auto 56px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: var(--wbc-white);
    border-radius: 2px;
    border-left: 3px solid var(--wbc-accent);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.pain-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.pain-item::before {
    display: none;
}

.pain-item p {
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.65;
    color: var(--wbc-text);
}

.pain-item strong {
    font-weight: 600;
    color: var(--wbc-accent-dark);
}

.pain-transition {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(17px, 2vw, 20px);
    color: var(--wbc-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    padding: 32px 0;
    border-top: 1px solid var(--wbc-border);
    border-bottom: 1px solid var(--wbc-border);
}

/* =============================================
   VIDEO SECTION
   ============================================= */
.video-section {
    background-color: var(--wbc-white);
    border-top: 1px solid var(--wbc-border);
}

.video-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.video-text {
    max-width: 480px;
}

.video-section h2 {
    text-align: left;
    margin-bottom: 16px;
}

.video-subtitle {
    text-align: left;
    font-size: 17px;
    line-height: 1.7;
    color: var(--wbc-text-muted);
    margin-bottom: 0;
}

.video-text .section-cta {
    text-align: left;
    margin-top: 32px;
}

.video-container {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Play button overlay */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: all 400ms ease;
    pointer-events: auto;
    cursor: pointer;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--wbc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.video-container:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--wbc-accent);
    margin-left: 4px;
}

/* =============================================
   OUTCOMES
   ============================================= */
.outcomes {
    background-color: var(--wbc-cream);
}

.outcomes h2 {
    text-align: center;
    margin-bottom: 80px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 40px);
}

.outcome-card {
    text-align: left;
    background: var(--wbc-white);
    padding: clamp(28px, 3vw, 40px);
    border-radius: 2px;
    border-top: 3px solid var(--wbc-accent);
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.outcome-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.outcome-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--wbc-accent);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.2;
}

.outcome-card:hover .outcome-number {
    opacity: 0.4;
}

.outcome-card h3 {
    margin-bottom: 12px;
}

.outcome-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--wbc-text-muted);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    background-color: var(--wbc-white);
    border-top: 1px solid var(--wbc-border);
    overflow: hidden;
}

.about .container {
    display: grid;
    grid-template-columns: 42fr 58fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--wbc-gold);
    opacity: 0.3;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: center top;
}

.about-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wbc-text-muted);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--wbc-gold);
}

.about-content h2 {
    margin-bottom: 8px;
}

.about-subtitle {
    font-size: 18px;
    color: var(--wbc-text-muted);
    margin-bottom: 32px;
}

.about-content p.about-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--wbc-text);
    margin-bottom: 20px;
}

.about-quote {
    background: linear-gradient(135deg, var(--wbc-accent-light), rgba(201, 169, 110, 0.06));
    border-left: 3px solid var(--wbc-accent);
    padding: 28px 32px;
    margin-top: 36px;
    position: relative;
}

.about-quote::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 64px;
    color: var(--wbc-accent);
    opacity: 0.15;
    line-height: 1;
}

.about-quote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.55;
    color: var(--wbc-text);
}

/* =============================================
   REVIEWS / TRUSTINDEX
   ============================================= */
.reviews {
    background-color: var(--wbc-cream);
}

.reviews h2 {
    text-align: center;
    margin-bottom: 12px;
}

.reviews-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--wbc-text-muted);
    margin-bottom: 48px;
}

.trustindex-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* =============================================
   QUESTIONS SECTION
   ============================================= */
.questions-section {
    background-color: var(--wbc-white);
    border-top: 1px solid var(--wbc-border);
}

.questions-section h2 {
    text-align: center;
    margin-bottom: 12px;
}

.questions-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--wbc-text-muted);
    margin-bottom: 56px;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background-color: var(--wbc-cream);
    border-radius: 2px;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.question-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.question-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--wbc-accent);
    background-color: var(--wbc-accent-light);
    border-radius: 50%;
}

.question-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.5;
    color: var(--wbc-text);
}

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

.questions-cta-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 26px);
    color: var(--wbc-text);
    margin-bottom: 28px;
}

/* =============================================
   CALENDLY / BOOKING
   ============================================= */
.booking {
    background-color: var(--wbc-cream);
    padding: clamp(72px, 12vw, 140px) 0;
    position: relative;
}

.booking h2 {
    text-align: center;
    margin-bottom: 12px;
}

.booking-subtitle {
    text-align: center;
    font-size: clamp(16px, 1.8vw, 18px);
    color: var(--wbc-text-muted);
    margin-bottom: 16px;
}

/* Trust badge under subtitle */
.booking-trust {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.booking-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--wbc-text-muted);
}

.booking-trust-icon {
    width: 20px;
    height: 20px;
    fill: var(--wbc-accent);
    flex-shrink: 0;
}

.calendly-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    background: var(--wbc-cream);
    border-radius: 2px;
}

.calendly-inline-widget {
    min-height: 1100px;
    height: 1100px;
    margin: 0 auto;
}

.calendly-inline-widget iframe {
    margin: 0 auto !important;
    display: block !important;
    height: 100% !important;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    background-color: var(--wbc-white);
    border-top: 1px solid var(--wbc-border);
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--wbc-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 500;
    color: var(--wbc-text);
    gap: 16px;
    transition: color 200ms;
}

.faq-question:hover {
    color: var(--wbc-accent);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 300;
    color: var(--wbc-text-muted);
    transition: transform 300ms ease, color 300ms ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--wbc-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 28px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--wbc-text-muted);
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
    background: linear-gradient(135deg, var(--wbc-accent) 0%, var(--wbc-accent-dark) 60%, #6B1111 100%);
    padding: clamp(48px, 6vw, 64px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
    pointer-events: none;
}

.cta-final h2 {
    font-size: clamp(30px, 4.5vw, 48px);
    color: var(--wbc-white);
    margin-bottom: 16px;
    position: relative;
}

.cta-final-subtitle {
    font-size: clamp(16px, 1.8vw, 19px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.65;
    position: relative;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background-color: var(--wbc-text);
    padding: 72px 0 0;
    color: var(--wbc-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
}

.footer-brand img,
.footer-brand svg {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 14px; }

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: color 200ms;
}
.footer-links a:hover { color: var(--wbc-white); }

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 300ms ease;
}

.social-icons a:hover {
    background-color: var(--wbc-accent);
    color: var(--wbc-white);
    border-color: var(--wbc-accent);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   STICKY MOBILE CTA
   ============================================= */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--wbc-white);
    border-top: 1px solid var(--wbc-border);
    padding: 12px 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .btn {
    width: 100%;
    padding: 16px;
    font-size: 15px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr 1fr; gap: 32px; }
    .outcomes-grid { gap: 20px; }
    .about .container { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .stat-divider { height: 44px; }
}

@media (max-width: 768px) {
    .header-inner { height: 68px; }
    .header-logo img, .header-logo svg { height: 56px; }
    .header-cta .btn { padding: 10px 18px; font-size: 13px; }

    .hero { padding-top: 108px; }
    .hero .container { grid-template-columns: 1fr; gap: 32px; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-label { justify-content: center; }
    .hero-cta { display: flex; justify-content: center; }
    .hero-image { max-height: 400px; overflow: hidden; }
    .hero-image img { max-height: 400px; }
    .hero-image::before { display: none; }
    .hero::after { display: none; }

    .stats-bar::before { height: 24px; }
    .stats-grid { flex-direction: column; gap: 28px; }
    .stat-divider { width: 60px; height: 1px; }

    .outcomes-grid { grid-template-columns: 1fr; gap: 20px; }
    .outcome-card { padding: 24px; }

    .about .container { grid-template-columns: 1fr; gap: 32px; }
    .about-image { order: -1; }
    .about-image img { max-height: 360px; }
    .about-image::after { display: none; }
    .about-quote p { font-size: 18px; }

    .video-section .container { grid-template-columns: 1fr; }
    .video-section h2 { text-align: center; }
    .video-subtitle { text-align: center; }
    .video-text .section-cta { text-align: center; }
    .video-text { max-width: 100%; }

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

    .booking .container {
        padding: 0 12px;
    }
    .calendly-container {
        margin: 0 auto;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        overflow: visible;
    }
    .calendly-inline-widget {
        min-width: 100% !important;
        width: 100% !important;
        min-height: 1150px !important;
        height: 1150px !important;
        margin: 0 auto !important;
    }
    .calendly-inline-widget iframe {
        width: 100% !important;
        height: 100% !important;
        margin: 0 auto !important;
    }
    .booking-trust {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-brand img, .footer-brand svg { height: 72px; }
    .footer-links ul { padding: 0; }
    .footer-links h4, .footer-social h4 { text-align: center; }
    .social-icons { justify-content: center; }
    .footer-social { display: flex; flex-direction: column; align-items: center; }

    .section-cta { margin-top: 40px; }
    .section-cta .btn { width: 100%; padding: 18px 24px; }

    .sticky-cta { display: block; }

    .scroll-reveal:nth-child(n) { transition-delay: 0s; }

    .video-play-btn { width: 64px; height: 64px; }
    .video-play-btn svg { width: 22px; height: 22px; }
}

@media (max-width: 375px) {
    .btn { padding: 16px 24px; font-size: 15px; }
    .header-cta .btn { padding: 10px 14px; font-size: 12px; }
    .calendly-inline-widget { min-height: 1100px !important; height: 1100px !important; }
}

@media (min-width: 1024px) {
    .calendly-inline-widget { min-height: 1100px; height: 1100px; }
}

@media (min-width: 1440px) {
    .calendly-inline-widget { min-height: 1100px; height: 1100px; }
}
