/* ================================================
   ZOT KOZÉ — Style principal
   ================================================ */

/* ====== FONTS (self-hosted) ====== */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/dm-sans-400-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/dm-sans-400-italic-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/dm-sans-500-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/dm-sans-600-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/dm-sans-700-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/fraunces-400-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Fraunces';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/fraunces-400-italic-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/fraunces-600-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Fraunces';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/fraunces-600-italic-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/fraunces-700-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/fraunces-800-latin.woff2') format('woff2');
}

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

:root {
    --cream: #FDF6EC;
    --brown: #2A1F14;
    --terracotta: #C4613A;
    --terracotta-dark: #A84E2D;
    --sage: #7A8B6F;
    --sage-light: #8FA282;
    --gold: #D4A04A;
    --dark-section: #1E1610;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--brown);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ====== FILM GRAIN OVERLAY ====== */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.section-label--light { color: var(--gold); }

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes recBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.4s; }

/* ====== NAVIGATION ====== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.nav.scrolled {
    background: rgba(253, 246, 236, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(42, 31, 20, 0.08);
    padding: 12px 0;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo img {
    height: 100px;
    width: auto;
    transition: height 0.3s ease;
}

.nav.scrolled .nav__logo img {
    height: 60px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.nav__links a:hover { opacity: 1; }

.nav__cta {
    background: var(--terracotta);
    color: var(--cream) !important;
    opacity: 1 !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s, transform 0.2s;
}

.nav__cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
}

/* Mobile menu */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 4px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

/* ====== HERO ====== */
.hero {
    padding: 140px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 97, 58, 0.1);
    border: 1px solid rgba(196, 97, 58, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--terracotta);
    animation: pulse 2s infinite;
}

.hero__title {
    margin-bottom: 20px;
    font-weight: 700;
}

.hero__title em {
    font-style: italic;
    color: var(--terracotta);
}

.hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.75;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn--primary {
    background: var(--terracotta);
    color: var(--cream);
}

.btn--primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 97, 58, 0.3);
}

.btn--outline {
    border: 2px solid var(--brown);
    color: var(--brown);
    background: transparent;
}

.btn--outline:hover {
    background: var(--brown);
    color: var(--cream);
    transform: translateY(-2px);
}

/* ====== VIEWFINDER (hero video) ====== */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.viewfinder {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16/9;
    background: var(--dark-section);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(42, 31, 20, 0.2);
}

.viewfinder__inner {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #3a2a1a 0%, #1E1610 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grain inside viewfinder */
.viewfinder__inner::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
    z-index: 2;
}

.viewfinder__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.viewfinder__placeholder {
    text-align: center;
    color: var(--cream);
    z-index: 1;
}

.viewfinder__placeholder svg {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    opacity: 0.4;
}

.viewfinder__placeholder p {
    font-size: 0.85rem;
    opacity: 0.4;
    font-style: italic;
}

/* Corner brackets */
.viewfinder__corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 3;
}

.viewfinder__corner::before,
.viewfinder__corner::after {
    content: '';
    position: absolute;
    background: rgba(253, 246, 236, 0.5);
}

.viewfinder__corner--tl { top: 16px; left: 16px; }
.viewfinder__corner--tl::before { width: 24px; height: 2px; top: 0; left: 0; }
.viewfinder__corner--tl::after { width: 2px; height: 24px; top: 0; left: 0; }

.viewfinder__corner--tr { top: 16px; right: 16px; }
.viewfinder__corner--tr::before { width: 24px; height: 2px; top: 0; right: 0; }
.viewfinder__corner--tr::after { width: 2px; height: 24px; top: 0; right: 0; }

.viewfinder__corner--bl { bottom: 16px; left: 16px; }
.viewfinder__corner--bl::before { width: 24px; height: 2px; bottom: 0; left: 0; }
.viewfinder__corner--bl::after { width: 2px; height: 24px; bottom: 0; left: 0; }

.viewfinder__corner--br { bottom: 16px; right: 16px; }
.viewfinder__corner--br::before { width: 24px; height: 2px; bottom: 0; right: 0; }
.viewfinder__corner--br::after { width: 2px; height: 24px; bottom: 0; right: 0; }

/* REC indicator */
.viewfinder__rec {
    position: absolute;
    top: 24px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 4;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #e74c3c;
}

.viewfinder__rec::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: recBlink 1.2s infinite;
}

/* Timecode */
.viewfinder__timecode {
    position: absolute;
    bottom: 24px;
    left: 28px;
    z-index: 4;
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(253, 246, 236, 0.4);
    letter-spacing: 0.05em;
}

/* ====== TRUST BAND ====== */
.trust {
    background: var(--dark-section);
    color: var(--cream);
    padding: 48px 0;
}

.trust__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust__item h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold);
    margin-bottom: 4px;
}

.trust__item p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ====== HOW IT WORKS ====== */
.steps {
    padding: 100px 0;
}

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

.steps__header h2 { margin-bottom: 16px; }
.steps__header p { opacity: 0.65; font-size: 1.05rem; }

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--terracotta) 10%, var(--terracotta) 90%, transparent);
    transform: translateX(-50%);
}

.timeline__step {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    margin-bottom: 48px;
}

.timeline__step:last-child { margin-bottom: 0; }

.timeline__content {
    padding: 24px;
    background: rgba(42, 31, 20, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(42, 31, 20, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.timeline__content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(42, 31, 20, 0.08);
}

.timeline__content h3 { margin-bottom: 8px; }
.timeline__content p { font-size: 0.9rem; opacity: 0.65; line-height: 1.6; }

.timeline__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(196, 97, 58, 0.3);
}

.timeline__step:nth-child(odd) .timeline__content--left { text-align: right; }
.timeline__step:nth-child(odd) .timeline__content--right { visibility: hidden; }
.timeline__step:nth-child(even) .timeline__content--left { visibility: hidden; }
.timeline__step:nth-child(even) .timeline__content--right { text-align: left; }

/* ====== UNIQUE / DIFFERENTIATORS ====== */
.unique {
    padding: 100px 0;
    background: var(--dark-section);
    color: var(--cream);
}

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

.unique__header h2 { margin-bottom: 16px; }
.unique__header p { opacity: 0.55; font-size: 1.05rem; }

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

.unique__card {
    background: rgba(253, 246, 236, 0.05);
    border: 1px solid rgba(253, 246, 236, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.unique__card:hover {
    transform: translateY(-5px);
    background: rgba(253, 246, 236, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.unique__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(212, 160, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.unique__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.unique__card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.unique__card p { font-size: 0.88rem; opacity: 0.55; line-height: 1.6; }

/* ====== VIDEO DEMO (9/16 portrait) ====== */
.demo {
    padding: 100px 0;
    background: var(--dark-section);
    color: var(--cream);
}

.demo__inner {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.demo__header {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demo__header h2 { margin-bottom: 12px; }
.demo__header p { opacity: 0.55; }

.demo__player {
    position: relative;
    aspect-ratio: 9/16;
    background: rgba(253, 246, 236, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(253, 246, 236, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.demo__player:hover { border-color: rgba(253, 246, 236, 0.15); }

.demo__player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.demo__play {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    z-index: 3;
}

.demo__player:hover .demo__play {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(196, 97, 58, 0.4);
}

.demo__player.playing .demo__play {
    opacity: 0;
    pointer-events: none;
}

.demo__play svg {
    width: 28px;
    height: 28px;
    fill: var(--cream);
    margin-left: 4px;
}

/* Corner brackets for demo */
.demo__player .viewfinder__corner::before,
.demo__player .viewfinder__corner::after {
    background: rgba(253, 246, 236, 0.2);
}

/* ====== TESTIMONIALS ====== */
.testimonials {
    padding: 100px 0;
}

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

.testimonials__header h2 { margin-bottom: 16px; }
.testimonials__header p { opacity: 0.65; }

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

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    border: 1px solid rgba(42, 31, 20, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(42, 31, 20, 0.08);
}

.testimonial-card__quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--terracotta);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 28px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 20px;
    padding-top: 24px;
    font-style: italic;
}

.testimonial-card__author { font-weight: 600; font-size: 0.9rem; }

.testimonial-card__event {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 2px;
}

/* ====== PRICING ====== */
.pricing {
    padding: 100px 0;
    background: var(--dark-section);
    color: var(--cream);
}

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

.pricing__header h2 { margin-bottom: 16px; }
.pricing__header p { opacity: 0.55; }

.pricing__card {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(253, 246, 236, 0.05);
    border: 1px solid rgba(253, 246, 236, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
}

.pricing__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.pricing__price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 8px;
}

.pricing__price span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.5;
}

.pricing__desc {
    opacity: 0.5;
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.pricing__features {
    text-align: left;
    margin-bottom: 36px;
}

.pricing__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.92rem;
    opacity: 0.8;
    border-bottom: 1px solid rgba(253, 246, 236, 0.05);
}

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

.pricing__check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(122, 139, 111, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing__check svg {
    width: 12px;
    height: 12px;
    stroke: var(--sage-light);
    fill: none;
    stroke-width: 2.5;
}

.pricing__cta .btn--primary {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
}

.pricing__note {
    margin-top: 16px;
    font-size: 0.8rem;
    opacity: 0.4;
}

/* ====== BOOKING FORM ====== */
.booking {
    padding: 100px 0;
}

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

.booking__header h2 { margin-bottom: 16px; }
.booking__header p { opacity: 0.65; font-size: 1.05rem; }

.booking__form {
    max-width: 600px;
    margin: 0 auto;
}

.booking__form iframe {
    width: 100%;
    border: none;
}

/* ====== FAQ ====== */
.faq {
    padding: 100px 0;
    background: var(--dark-section);
    color: var(--cream);
}

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

.faq__header h2 { margin-bottom: 16px; }
.faq__header p { opacity: 0.55; }

.faq__list {
    max-width: 700px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(253, 246, 236, 0.1);
}

.faq__question {
    width: 100%;
    background: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq__question:hover { color: var(--gold); }

.faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--cream);
    border-radius: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s, opacity 0.3s;
}

.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; }

.faq__item.open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.open .faq__answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq__answer p {
    font-size: 0.92rem;
    opacity: 0.6;
    line-height: 1.7;
}

/* ====== FINAL CTA ====== */
.final-cta {
    padding: 100px 0;
    background: var(--dark-section);
    color: var(--cream);
    text-align: center;
}

.final-cta__inner {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h2 { margin-bottom: 16px; }
.final-cta p { opacity: 0.55; margin-bottom: 36px; font-size: 1.05rem; }

.final-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn--whatsapp {
    background: #25D366;
    color: white;
}

.btn--whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn--outline-light {
    border: 2px solid rgba(253, 246, 236, 0.3);
    color: var(--cream);
    background: transparent;
}

.btn--outline-light:hover {
    background: rgba(253, 246, 236, 0.1);
    transform: translateY(-2px);
}

.final-cta__contact {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0.5;
    font-size: 0.9rem;
}

.final-cta__contact a { transition: opacity 0.2s; }
.final-cta__contact a:hover { opacity: 0.8; }

/* ====== FOOTER ====== */
.footer {
    background: #151009;
    color: var(--cream);
    padding: 40px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__logo {
    display: flex;
    align-items: center;
}

.footer__logo img {
    height: 60px;
    width: auto;
}

.footer__links {
    display: flex;
    gap: 24px;
    font-size: 0.8rem;
    opacity: 0.4;
}

.footer__links a:hover { opacity: 1; }

.footer__copy {
    font-size: 0.8rem;
    opacity: 0.3;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero__subtitle { margin: 0 auto 36px; }
    .hero__ctas { justify-content: center; }

    .trust__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .timeline::before { left: 24px; }

    .timeline__step {
        grid-template-columns: 48px 1fr;
        gap: 20px;
    }

    .timeline__number { grid-column: 1; grid-row: 1; }

    .timeline__content--left { display: none; }
    .timeline__content--right {
        visibility: visible !important;
        text-align: left !important;
        grid-column: 2;
        grid-row: 1;
    }

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

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

}

@media (max-width: 600px) {
    /* Nav toujours compacte sur mobile */
    .nav {
        background: rgba(253, 246, 236, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 1px 20px rgba(42, 31, 20, 0.08);
        padding: 12px 0;
    }

    .nav__logo img {
        height: 60px;
    }

    .nav__links { display: none; }
    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--cream);
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(42, 31, 20, 0.1);
    }
    .nav__burger { display: flex; }

    .hero { padding: 100px 0 60px; min-height: auto; }

    .trust__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust__item h3 { font-size: 1.8rem; }

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

    .pricing__card { padding: 36px 24px; }


    .final-cta__contact {
        flex-direction: column;
        gap: 12px;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
}
