/* ============================================
   AGENCE CREALYX — STYLES v2
   Direction artistique : chaleureuse, locale, moderne
   ============================================ */

:root {
    /* Couleurs — ton chaud, accents du logo */
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #1a2744;
    --navy-600: #334155;

    --teal-700: #0e7490;
    --teal-600: #0891b2;
    --teal-500: #06b6d4;
    --cyan-400: #22d3ee;
    --cyan-300: #67e8f9;

    /* Tons chauds pour les fonds */
    --cream: #faf9f7;
    --cream-dark: #f3f1ed;
    --warm-50: #fefdfb;
    --warm-100: #f8f6f3;

    /* Neutres */
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;

    /* Gradients */
    --gradient-text: linear-gradient(135deg, #0891b2, #06b6d4, #22d3ee);
    --gradient-subtle: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    --gradient-hero: linear-gradient(160deg, #1a2744 0%, #0e3a5e 40%, #0c4a6e 100%);

    /* Typo */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Spacing */
    --section-padding: 5.5rem 0;
    --container-width: 1140px;
    --container-padding: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-xl: 0 16px 40px rgba(0,0,0,0.1);

    /* Transitions */
    --transition-base: 300ms ease;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITIES ---- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: var(--font-size-base);
    color: var(--gray-500);
    line-height: 1.6;
}

.pill {
    display: inline-block;
    border: 1.5px solid var(--teal-500);
    border-radius: var(--radius-full);
    padding: 0.05em 0.45em;
    color: var(--teal-600);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: var(--font-size-sm);
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--navy-700);
    color: var(--white);
    border: 1.5px solid var(--navy-700);
}
.btn--primary:hover {
    background: var(--navy-600);
    border-color: var(--navy-600);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: var(--white);
    color: var(--navy-700);
    border: 1.5px solid var(--navy-700);
}
.btn--outline:hover {
    background: var(--navy-700);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--navy-700);
    border: 1.5px solid var(--white);
}
.btn--white:hover {
    background: var(--cream);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--lg { padding: 0.9rem 1.8rem; font-size: var(--font-size-base); }
.section-cta { text-align: center; margin-top: 2.5rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER — moderne, pas de gris
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

/* Au-dessus du hero sombre */
.header:not(.header--scrolled) {
    background: transparent;
}
.header:not(.header--scrolled) .nav__link {
    color: rgba(255,255,255,0.85);
}
.header:not(.header--scrolled) .nav__link:hover {
    color: var(--white);
}
.header:not(.header--scrolled) .nav__cta {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
}
.header:not(.header--scrolled) .nav__cta:hover {
    background: rgba(255,255,255,0.22);
}
.header:not(.header--scrolled) .nav__toggle span {
    background: var(--white);
}

/* Scrolled — fond blanc, texte navy */
.header--scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header--scrolled .nav__link {
    color: var(--navy-700);
}
.header--scrolled .nav__link:hover {
    color: var(--teal-600);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav__logo img { height: 34px; width: auto; }
.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav__link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: color var(--transition-base);
}
.nav__cta-mobile { display: none; }
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    padding: 4px 0;
}
.nav__toggle span {
    display: block;
    height: 2px;
    background: var(--navy-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ============================================
   HERO — fond chaleureux avec overlay
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--gradient-hero);
}

/* Vidéo de fond (quand activée) */
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(26, 39, 68, 0.85) 0%,
        rgba(14, 58, 94, 0.75) 50%,
        rgba(8, 145, 178, 0.3) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--cyan-300);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: 1.75rem;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan-400);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.hero__title .text-gradient {
    display: block;
    margin-top: 0.1em;
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* "Voir nos réalisations" bien visible */
.hero__actions .btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.hero__actions .btn--outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    padding: 1rem 0;
    background: var(--navy-800);
    overflow: hidden;
}
.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__content {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding-right: 1.75rem;
}
.marquee__content span {
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
}
.marquee__dot {
    color: var(--teal-500) !important;
    letter-spacing: 0 !important;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   WHY CREALYX
   ============================================ */
.why {
    padding: var(--section-padding);
    background: var(--white);
}
.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}
.card:hover {
    border-color: var(--teal-500);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.card__icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--teal-600);
}
.card__title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.card__text {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   PROCESS — Interactive animated timeline
   ============================================ */
.process {
    padding: var(--section-padding);
    background: var(--cream);
}
.process__timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
/* Animated progress line */
.process__timeline::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--cream-dark);
    border-radius: 2px;
}
.process__timeline::after {
    content: '';
    position: absolute;
    left: 31px;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--teal-500), var(--cyan-400));
    border-radius: 2px;
    transition: height 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.process__timeline.process--animated::after {
    height: 100%;
}

.process-step {
    display: flex;
    gap: 1.75rem;
    padding: 1.5rem 0;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-step.process-step--visible {
    opacity: 1;
    transform: translateX(0);
}

.process-step__number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    font-weight: 800;
    color: var(--gray-400);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-step.process-step--active .process-step__number {
    border-color: var(--teal-500);
    color: var(--white);
    background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
    transform: scale(1.1);
}

.process-step__content {
    padding-top: 0.75rem;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    flex: 1;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-step.process-step--active .process-step__content {
    border-color: var(--teal-500);
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.08);
}
.process-step__content h3 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 0.35rem;
    transition: color var(--transition-base);
}
.process-step.process-step--active .process-step__content h3 {
    color: var(--teal-700);
}
.process-step__content p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   FORMATS
   ============================================ */
.formats {
    padding: var(--section-padding);
    background: var(--white);
}
.formats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.format-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition-base);
}
.format-card:hover {
    border-color: var(--teal-500);
    box-shadow: var(--shadow-md);
}
.format-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--teal-600);
}
.format-card h3 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 0.4rem;
}
.format-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.format-card__tag {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--teal-600);
    background: var(--white);
    border: 1px solid var(--cream-dark);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

/* ============================================
   PORTFOLIO — VERTICAL PHONE MOCKUPS
   ============================================ */
.portfolio {
    padding: var(--section-padding);
    background: var(--cream);
}
.portfolio__scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Masquer la scrollbar tout en gardant le scroll */
    scrollbar-width: none;
}
.portfolio__scroll::-webkit-scrollbar { display: none; }

.phone-mockup {
    flex-shrink: 0;
    scroll-snap-align: center;
    text-align: center;
}

.phone-frame {
    width: 220px;
    height: 390px;
    border-radius: 28px;
    background: var(--navy-800);
    overflow: hidden;
    position: relative;
    border: 4px solid var(--gray-300);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}
.phone-frame:hover {
    border-color: var(--teal-500);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.phone-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.phone-frame__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(170deg, var(--navy-800) 0%, #0e3a5e 100%);
    color: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: color var(--transition-base);
}
.phone-frame:hover .phone-frame__placeholder {
    color: var(--cyan-400);
}

.phone-mockup__label {
    margin-top: 0.75rem;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--navy-800);
}

/* ============================================
   OFFRE DÉCOUVERTE — premium card
   ============================================ */
.discovery {
    padding: 3rem 0;
    background: var(--white);
}
.discovery__card {
    background: linear-gradient(135deg, var(--navy-800) 0%, #0e3a5e 60%, var(--teal-700) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.discovery__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.discovery__badge-wrap {
    margin-bottom: 1.25rem;
}
.discovery__label {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cyan-300);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
}
.discovery__body {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.discovery__content { flex: 1; position: relative; z-index: 1; }
.discovery__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.discovery__text {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.discovery__price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.discovery__amount {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
}
.discovery__detail {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.5);
}
.discovery__card .btn--primary {
    background: var(--white);
    color: var(--navy-800);
    border-color: var(--white);
}
.discovery__card .btn--primary:hover {
    background: var(--cream);
    border-color: var(--cream);
}

.discovery__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.discovery__feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: rgba(255,255,255,0.7);
    font-size: var(--font-size-sm);
    font-weight: 500;
    white-space: nowrap;
}
.discovery__feature svg {
    color: var(--cyan-400);
    flex-shrink: 0;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: var(--section-padding);
    background: var(--cream);
}
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all var(--transition-base);
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card__icon-header {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--teal-600);
}

.pricing-card--popular {
    border: 2px solid var(--teal-500);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
    z-index: 1;
    background: linear-gradient(180deg, rgba(8,145,178,0.02) 0%, var(--white) 100%);
}
.pricing-card--popular:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.04) translateY(-4px);
}
.pricing-card--popular .pricing-card__icon-header {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
    border-color: transparent;
    color: var(--white);
}

.pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal-600);
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: 700;
    padding: 0.35rem 1.1rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-card__header { margin-bottom: 1.25rem; }
.pricing-card__name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 0.35rem;
}
.pricing-card__desc {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    line-height: 1.5;
}

.pricing-card__price { margin-bottom: 0.2rem; }
.pricing-card__amount {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--navy-800);
    letter-spacing: -0.03em;
}
.pricing-card__period {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-400);
}
.pricing-card__per-unit {
    font-size: var(--font-size-xs);
    color: var(--teal-600);
    font-weight: 500;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--cream-dark);
}

.pricing-card__features { margin-bottom: 1.75rem; }
.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    padding: 0.4rem 0;
    line-height: 1.4;
}
.pricing-card__features svg {
    flex-shrink: 0;
    color: var(--teal-500);
    margin-top: 1px;
}

.pricing__note {
    text-align: center;
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    margin-top: 1.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(8,145,178,0.1) 0%, transparent 70%);
}
.cta-section__content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-section__title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.cta-section__text {
    font-size: var(--font-size-base);
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}
.cta-section__actions { margin-bottom: 0.75rem; }
.cta-section__note {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,0.3);
}

/* ============================================
   BOOKING
   ============================================ */
.booking {
    padding: var(--section-padding);
    background: var(--white);
}
.booking__embed {
    max-width: 800px;
    margin: 0 auto;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.booking__embed iframe { width: 100%; height: 700px; border: none; }
.booking__placeholder {
    width: 100%;
    min-height: 350px;
    border: 2px dashed var(--cream-dark);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-400);
    padding: 2rem;
    text-align: center;
}
.booking__placeholder svg { color: var(--gray-300); }
.booking__placeholder p { font-size: var(--font-size-sm); font-weight: 500; }
.booking__placeholder-hint { font-size: var(--font-size-xs) !important; color: var(--gray-300) !important; font-weight: 400 !important; }

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--section-padding);
    background: var(--cream);
}
.faq__list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--navy-800);
    text-align: left;
    transition: color var(--transition-base);
    cursor: pointer;
    gap: 1rem;
}
.faq-item__question:hover { color: var(--teal-600); }
.faq-item__icon {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform var(--transition-base);
}
.faq-item--open .faq-item__icon {
    transform: rotate(45deg);
    color: var(--teal-600);
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item--open .faq-item__answer {
    max-height: 300px;
    padding-bottom: 1.1rem;
}
.faq-item__answer p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   TEAM — votre interlocuteur
   ============================================ */
.team {
    padding: var(--section-padding);
    background: var(--white);
}
.team__card {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-xl);
    padding: 3rem;
}
.team__avatar-main {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}
.team__avatar-main svg {
    width: 100%;
    height: 100%;
}
.team__name {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--navy-800);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}
.team__title {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--teal-600);
    margin-bottom: 1rem;
}
.team__bio {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.team__bio:last-of-type {
    margin-bottom: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.5);
    padding: 3.5rem 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}
.footer__logo {
    height: 30px;
    width: auto;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}
.footer__tagline {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
    max-width: 260px;
}
.footer__social { display: flex; gap: 0.6rem; }
.footer__social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    transition: all var(--transition-base);
}
.footer__social-link:hover {
    border-color: var(--teal-500);
    color: var(--cyan-400);
    background: rgba(8,145,178,0.1);
}
.footer__links h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.footer__links li { margin-bottom: 0.4rem; }
.footer__links a {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.35);
    transition: color var(--transition-base);
}
.footer__links a:hover { color: var(--cyan-400); }
.footer__links li:not(:has(a)) {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.35);
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: var(--font-size-xs);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
    color: rgba(255,255,255,0.25);
    transition: color var(--transition-base);
}
.footer__legal a:hover { color: var(--cyan-400); }

/* ============================================
   RESPONSIVE — TABLETTE
   ============================================ */
@media (max-width: 1024px) {
    .section-title { font-size: var(--font-size-2xl); }
    .hero__title { font-size: var(--font-size-4xl); }

    .why__grid, .formats__grid { grid-template-columns: repeat(2, 1fr); }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .pricing-card--popular { transform: none; }

    .discovery__body { flex-direction: column; gap: 2rem; }
    .discovery__content { text-align: center; }
    .discovery__price { justify-content: center; }
    .discovery__features { grid-template-columns: 1fr; }
    .discovery__feature { white-space: normal; }

    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem 0;
        --container-padding: 1.25rem;
    }

    /* Nav mobile */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right var(--transition-base);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav__menu.open { right: 0; }
    .nav__menu li { width: 100%; }
    .nav__menu .nav__link {
        display: block;
        padding: 0.75rem 0;
        font-size: var(--font-size-base);
        color: var(--navy-700) !important;
        border-bottom: 1px solid var(--cream-dark);
    }
    .nav__cta { display: none; }
    .nav__cta-mobile { display: block; padding-top: 1rem; }
    .nav__toggle { display: flex; z-index: 1001; }
    .nav__menu.open::before {
        content: '';
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(26, 39, 68, 0.45);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: -1;
    }

    .hero { min-height: auto; padding: 7rem 0 3.5rem; }
    .hero__title { font-size: var(--font-size-2xl); }
    .hero__subtitle { font-size: var(--font-size-base); }
    .hero__actions { flex-direction: column; }

    .section-title { font-size: var(--font-size-xl); }
    .section-header { margin-bottom: 2rem; }

    .why__grid, .formats__grid { grid-template-columns: 1fr; }

    .phone-frame { width: 180px; height: 320px; border-radius: 22px; }

    .team__card { flex-direction: column; text-align: center; padding: 2rem; gap: 1.5rem; }
    .team__avatar-main { width: 110px; height: 110px; }

    .process__timeline::before { left: 22px; }
    .process__timeline::after { left: 22px; }
    .process-step__number { width: 46px; height: 46px; font-size: var(--font-size-xs); }
    .process-step__content { padding: 1rem 1.25rem; }
    .process-step { gap: 1.25rem; }

    .cta-section__title { font-size: var(--font-size-2xl); }

    .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .footer__legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

@media (max-width: 480px) {
    .hero__title { font-size: var(--font-size-xl); }
    .btn--lg { padding: 0.8rem 1.4rem; font-size: var(--font-size-sm); }
    .discovery__amount { font-size: var(--font-size-3xl); }
    .pricing-card { padding: 1.75rem 1.5rem; }
}
