/* ============================================================
   teaser.css — Carneto landing page / teaser
   ============================================================ */

/* ── Variables ─────────────────────────────────── */
:root {
    --noir:        #1E4D2B;
    --encre:       #1E4D2B;
    --gris-corps:  #4a4a4a;
    --gris-light:  #e8e8ec;
    --fond:        #f0f7e6;
    --fond-alt:    #e4f0d4;
    --blanc:       #ffffff;
    --vert:        #7aaa3a;
    --vert-pale:   #d4edaa;
    --trait:       #c8ddb0;
    --radius-s:    4px;
    --radius-m:    8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--encre);
    background: var(--fond);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 17px;
}

/* ── NAV ────────────────────────────────────────── */
nav.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 48px;
    height: 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: var(--blanc);
    border-bottom: 2px solid var(--noir);
}

.nav-logo {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--encre);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.nav-logo .dot {
    color: var(--vert);
    font-style: italic;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--gris-corps);
    text-decoration: none;
    transition: color 0.15s;
}
.nav-link:hover { color: var(--noir); }

.nav-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--blanc);
    background: var(--vert);
    padding: 8px 20px;
    border-radius: var(--radius-s);
    text-decoration: none;
    transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.88; }

/* ── HERO ───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    padding-top: 60px;
    display: grid;
    grid-template-rows: 1fr auto;
    background: var(--blanc);
    border-bottom: 2px solid var(--noir);
}

.hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
    padding: 72px 48px 60px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 80px;
    align-items: center;
}

/* Pastille statut */
.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gris-corps);
    margin-bottom: 28px;
    border: 1px solid var(--trait);
    border-radius: 2px;
    padding: 5px 12px;
    background: var(--fond);
}
.hero-status .dot {
    width: 6px; height: 6px;
    background: var(--vert);
    border-radius: 50%;
}

.hero-title {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 1.08;
    color: var(--noir);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

/* Une ligne en italic orange — la signature */
.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--vert);
}

.hero-sub {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gris-corps);
    max-width: 460px;
    margin-bottom: 40px;
}

/* Formulaire */
.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--encre);
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-row {
    display: flex;
    max-width: 440px;
    border: 1.5px solid var(--encre);
    border-radius: var(--radius-s);
    overflow: hidden;
    background: var(--blanc);
}

.form-input {
    flex: 1;
    padding: 13px 16px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    border: none;
    outline: none;
    background: transparent;
    color: var(--noir);
}
.form-input::placeholder { color: #aaa; }

.form-btn {
    padding: 13px 22px;
    background: var(--encre);
    color: var(--blanc);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0;
}
.form-btn:hover { background: #5a9632; }

.form-note {
    font-size: 12px;
    color: #aaa;
    margin-top: 10px;
    font-weight: 300;
}

.success-msg {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--vert);
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
    border-left: 2px solid var(--vert);
    padding-left: 12px;
}
.success-msg.show { display: flex; }

/* Screenshots placeholder — côté droit hero */
.hero-right { position: relative; }

.screenshots-placeholder {
    border: 1.5px solid var(--encre);
    border-radius: var(--radius-m);
    background: var(--fond);
    padding: 20px;
    box-shadow: 4px 4px 0 0 var(--encre);
}

.screenshots-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gris-corps);
    margin-bottom: 14px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.screenshot-thumb {
    cursor: pointer;
    border: 1px solid var(--trait);
    border-radius: var(--radius-s);
    overflow: hidden;
    background: var(--blanc);
    transition: border-color 0.15s, transform 0.15s;
}
.screenshot-thumb:hover {
    border-color: var(--vert);
    transform: translateY(-2px);
}
.screenshot-thumb span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--gris-corps);
    text-align: center;
    padding: 5px 0;
    border-top: 1px solid var(--trait);
    background: var(--fond);
}

.screenshot-inner {
    height: 90px;
    overflow: hidden;
}

.screenshot-bar {
    height: 10px;
    background: var(--encre);
}

.screenshot-content {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Éléments décoratifs du placeholder */
.sc-line {
    height: 6px;
    border-radius: 3px;
    background: var(--trait);
}
.sc-line.wide   { width: 90%; }
.sc-line.medium { width: 65%; }
.sc-line.short  { width: 40%; }
.sc-row {
    height: 10px;
    border-radius: 3px;
    background: var(--fond-alt);
    width: 100%;
}
.sc-block {
    height: 22px;
    border-radius: 3px;
    background: var(--vert-pale);
    width: 100%;
}
.sc-block.tall { height: 30px; }
.sc-btn {
    height: 12px;
    border-radius: 3px;
    background: var(--encre);
    width: 50%;
    opacity: 0.3;
}

.screenshots-note {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

/* Lightbox galerie */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 500;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.lightbox.open { display: flex; }

.lb-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.15s;
    line-height: 1;
}
.lb-close:hover { opacity: 1; }

.lb-nav {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 20px;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.lb-nav:hover { background: rgba(255,255,255,0.25); }

.lightbox-inner {
    background: var(--blanc);
    border: 1.5px solid var(--encre);
    border-radius: var(--radius-m);
    width: min(780px, 85vw);
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 8px 8px 0 0 var(--encre);
    position: relative;
    overflow: hidden;
}

.lightbox-placeholder {
    text-align: center;
    color: var(--gris-corps);
    font-size: 15px;
    font-weight: 300;
}

.lb-counter {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 11px;
    color: #bbb;
    font-weight: 400;
}

/* Bandeau bas héro — fond vert moyen */
.hero-band {
    background: var(--vert);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 14px 48px;
    flex-wrap: wrap;
}
.hero-band span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}
.hero-band .sep {
    width: 4px; height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── SECTION PROBLÈME ──────────────────────────── */
.section-probleme {
    padding: 100px 48px;
    background: var(--noir);
    color: var(--blanc);
}

.pb-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 100px;
    align-items: start;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vert);
    margin-bottom: 16px;
    display: block;
}

.pb-left h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: clamp(26px, 3.5vw, 40px);
    line-height: 1.15;
    color: var(--blanc);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.pb-left h2 em { color: var(--vert); font-style: italic; font-weight: 400; }

.pb-left p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}

.pb-items { display: flex; flex-direction: column; }

.pb-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 20px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pb-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.pb-num {
    font-family: 'Bitter', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--vert);
    padding-top: 2px;
}

.pb-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--blanc);
    margin-bottom: 6px;
    line-height: 1.3;
}
.pb-item p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

/* ── FEATURES ───────────────────────────────────── */
.section-features {
    padding: 100px 48px;
    background: var(--fond);
    border-top: 1px solid var(--trait);
}

.features-top {
    max-width: 1100px;
    margin: 0 auto 56px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: end;
}

.features-top h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    color: var(--noir);
    letter-spacing: -0.02em;
}
.features-top h2 em { font-style: italic; font-weight: 400; color: var(--vert); }

.features-top p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gris-corps);
    align-self: end;
}

/* Grid features — 6 cartes identiques, 3 colonnes */
.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: transparent;
    border: 1px solid var(--trait);
    border-radius: var(--radius-m);
    overflow: hidden;
}

.feature-card {
    background: var(--blanc);
    padding: 32px 28px;
    transition: background 0.2s;
    border-right: 1px solid var(--trait);
    border-bottom: 1px solid var(--trait);
}
.feature-card:hover { background: var(--vert-pale); }

/* Pas de border-right sur la 3e colonne */
.features-grid > .feature-card:nth-child(3n) { border-right: none; }

/* Pas de border-bottom sur la dernière ligne */
.features-grid > .feature-card:nth-child(4),
.features-grid > .feature-card:nth-child(5),
.features-grid > .feature-card:nth-child(6) { border-bottom: none; }

.feature-card h3 {
    font-family: 'Bitter', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--noir);
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.feature-card p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gris-corps);
}

.feature-icon {
    display: block;
    margin-bottom: 16px;
    width: 32px;
    height: 32px;
    color: var(--encre);
    flex-shrink: 0;
}

/* ── POURQUOI CARNETO ───────────────────────────── */
.section-pourquoi {
    padding: 100px 48px;
    background: var(--blanc);
    border-top: 1px solid var(--trait);
}

.pourquoi-inner {
    max-width: 780px;
    margin: 0 auto;
}

.pourquoi-inner h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--noir);
    letter-spacing: -0.02em;
    margin-bottom: 36px;
    line-height: 1.15;
}
.pourquoi-inner h2 em { font-style: italic; font-weight: 400; color: var(--vert); }

.pourquoi-texte p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gris-corps);
    margin-bottom: 20px;
}

.pourquoi-signature {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--encre) !important;
    border-left: 3px solid var(--vert);
    padding-left: 16px;
    margin-top: 32px !important;
}

/* ── MÉTIERS ────────────────────────────────────── */
.section-metiers {
    padding: 80px 48px;
    background: var(--fond-alt);
    border-top: 1px solid var(--trait);
    border-bottom: 1px solid var(--trait);
}

.metiers-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.metiers-inner h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: clamp(26px, 3.5vw, 38px);
    color: var(--noir);
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    line-height: 1.15;
}
.metiers-inner h2 em { font-style: italic; font-weight: 400; color: var(--vert); }

.metiers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.metier-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: var(--blanc);
    border: 1px solid var(--trait);
    border-radius: var(--radius-s);
    font-size: 13px;
    font-weight: 500;
    color: var(--encre);
    cursor: default;
    transition: border-color 0.15s, color 0.15s;
}
.metier-tag:hover { border-color: var(--vert); color: var(--vert); }

/* ── TOGGLE BILLING ─────────────────────────────── */
.billing-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--gris-corps);
    cursor: pointer;
    transition: color 0.15s;
}
.toggle-label.active { font-weight: 600; color: var(--encre); }

.toggle-track {
    width: 44px;
    height: 24px;
    background: var(--trait);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.toggle-track.on { background: var(--encre); }

.toggle-thumb {
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    background: var(--blanc);
    border-radius: 50%;
    transition: left 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-track.on .toggle-thumb { left: 23px; }

.toggle-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--blanc);
    background: var(--vert);
    padding: 2px 8px;
    border-radius: 2px;
    display: none;
}
.toggle-badge.show { display: inline-block; }

/* ── TARIFS ─────────────────────────────────────── */
.section-tarifs {
    padding: 100px 48px;
    background: var(--blanc);
    border-top: 1px solid var(--trait);
}

.tarifs-top {
    max-width: 1100px;
    margin: 0 auto 48px;
}

.tarifs-top h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--noir);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.1;
}
.tarifs-top p {
    font-size: 15px;
    font-weight: 300;
    color: var(--gris-corps);
}

.tarifs-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border: 1.5px solid var(--encre);
    border-radius: var(--radius-m);
    overflow: hidden;
}

.tarif-card {
    padding: 36px 32px;
    border-right: 1px solid var(--trait);
    position: relative;
}
.tarif-card:last-child { border-right: none; }

.tarif-card.featured {
    background: var(--noir);
    border-right: none;
}

.tarif-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gris-corps);
    margin-bottom: 16px;
    display: block;
}
.tarif-card.featured .tarif-name { color: rgba(255,255,255,0.4); }

.tarif-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--vert);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 4px;
}

.tarif-price {
    font-family: 'Bitter', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--noir);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}
.tarif-card.featured .tarif-price { color: var(--blanc); }

.tarif-price-unit {
    font-size: 12px;
    font-weight: 300;
    color: var(--gris-corps);
    display: block;
    margin-bottom: 24px;
}
.tarif-card.featured .tarif-price-unit { color: rgba(255,255,255,0.4); }

.tarif-sep {
    border: none;
    border-top: 1px solid var(--trait);
    margin: 20px 0;
}
.tarif-card.featured .tarif-sep { border-color: rgba(255,255,255,0.1); }

.tarif-features {
    list-style: none;
    margin-bottom: 28px;
}
.tarif-features li {
    font-size: 15px;
    font-weight: 400;
    color: var(--gris-corps);
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.tarif-card.featured .tarif-features li {
    color: rgba(255,255,255,0.6);
    border-bottom-color: rgba(255,255,255,0.05);
}
.tarif-features li::before {
    content: '✓';
    color: var(--vert);
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

.tarif-btn {
    display: block;
    text-align: center;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-s);
    transition: all 0.15s;
}
.tarif-btn.outline {
    border: 1.5px solid var(--encre);
    color: var(--encre);
}
.tarif-btn.outline:hover { background: var(--encre); color: var(--blanc); }
.tarif-btn.solid {
    background: var(--vert);
    color: var(--blanc);
    border: 1.5px solid var(--vert);
}
.tarif-btn.solid:hover { opacity: 0.88; }

/* ── CTA FINAL ──────────────────────────────────── */
.section-cta {
    padding: 100px 48px;
    background: var(--fond);
    text-align: center;
    border-top: 2px solid var(--encre);
    position: relative;
}

.section-cta h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: clamp(28px, 4.5vw, 52px);
    color: var(--noir);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.section-cta h2 em { font-style: italic; font-weight: 400; color: var(--vert); }

.section-cta > p {
    font-size: 16px;
    font-weight: 300;
    color: var(--gris-corps);
    margin-bottom: 36px;
}

.cta-form-row {
    display: inline-flex;
    max-width: 460px;
    width: 100%;
    border: 1.5px solid var(--encre);
    border-radius: var(--radius-s);
    overflow: hidden;
    background: var(--blanc);
}

.cta-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    border: none;
    outline: none;
    background: transparent;
    color: var(--noir);
}
.cta-input::placeholder { color: #bbb; }

.cta-btn {
    padding: 14px 24px;
    background: var(--vert);
    color: var(--blanc);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s;
    flex-shrink: 0;
}
.cta-btn:hover { opacity: 0.88; }

.cta-note {
    font-size: 11px;
    color: #bbb;
    margin-top: 12px;
    font-weight: 300;
}

.success-cta-wrap {
    display: flex;
    justify-content: center;
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
    padding: 32px 48px;
    background: #0f2d18;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.footer-logo .dot { color: var(--vert); }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    width: 100%;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── CONTACT ─────────────────────────────────────── */
.section-contact {
    padding: 100px 48px;
    background: var(--blanc);
    border-top: 2px solid var(--encre);
}

.contact-inner {
    max-width: 780px;
    margin: 0 auto;
}

.contact-inner h2 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--noir);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.15;
}
.contact-inner h2 em { font-style: italic; font-weight: 400; color: var(--vert); }

.contact-intro {
    font-size: 15px;
    font-weight: 300;
    color: var(--gris-corps);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-field label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--encre);
}

.contact-field input,
.contact-field textarea {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--noir);
    background: var(--fond);
    border: 1.5px solid var(--trait);
    border-radius: var(--radius-s);
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.15s;
    resize: none;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #bbb; }

.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--encre); }

.contact-field textarea { min-height: 130px; }

.contact-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 13px 28px;
    background: var(--encre);
    color: var(--blanc);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-s);
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.contact-btn:hover { background: #5a9632; }
.contact-btn:disabled { opacity: 0.5; cursor: default; }

.contact-note {
    font-size: 12px;
    font-weight: 300;
    color: #aaa;
}

.contact-success {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--vert);
    font-size: 13px;
    font-weight: 500;
    border-left: 2px solid var(--vert);
    padding-left: 12px;
    margin-top: 4px;
}
.contact-success.show { display: flex; }

.contact-error {
    font-size: 13px;
    color: #d4601a;
    display: none;
    margin-top: 4px;
}
.contact-error.show { display: block; }

/* ── NAV BURGER MOBILE ──────────────────────────── */
.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}
.nav-burger span {
    display: block;
    height: 2px;
    background: var(--encre);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s, width 0.2s;
}
.nav-burger span:nth-child(1) { width: 22px; }
.nav-burger span:nth-child(2) { width: 16px; }
.nav-burger span:nth-child(3) { width: 22px; }

/* Croix quand ouvert */
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* Tiroir slide depuis le haut */
.nav-drawer {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--blanc);
    border-bottom: 2px solid var(--encre);
    z-index: 99;
    transform: translateY(-110%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 0 16px;
}
.nav-drawer.open {
    transform: translateY(0);
}
.nav-drawer a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 400;
    color: var(--gris-corps);
    text-decoration: none;
    border-bottom: 1px solid var(--gris-light);
    transition: color 0.15s, background 0.15s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--noir); background: var(--fond); }
.nav-drawer a.drawer-cta {
    margin: 12px 24px 0;
    display: block;
    text-align: center;
    background: var(--vert);
    color: var(--blanc);
    font-weight: 600;
    font-size: 13px;
    padding: 12px 20px;
    border-radius: var(--radius-s);
    border-bottom: none;
}
.nav-drawer a.drawer-cta:hover { opacity: 0.88; background: var(--vert); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
    nav { padding: 0 20px; }
    .nav-link { display: none; }
    .nav-burger { display: flex; }
    .nav-drawer { display: block; }
    .nav-cta { padding: 7px 12px; font-size: 12px; white-space: nowrap; }
    .nav-cta-arrow { display: none; }
    .nav-right { gap: 10px; }
    .nav-logo svg { width: 130px; height: auto; }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 48px 20px 40px;
        gap: 40px;
    }
    .hero-right { display: none; }

    .hero-band { gap: 16px; padding: 12px 20px; }
    .hero-band .sep { display: none; }

    .section-probleme,
    .section-features,
    .section-metiers,
    .section-tarifs,
    .section-cta,
    .section-contact { padding: 60px 20px; }

    .pb-inner,
    .features-top { grid-template-columns: 1fr; gap: 36px; }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card.wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .tarifs-grid { grid-template-columns: 1fr; }
    .tarif-card { border-right: none; border-bottom: 1px solid var(--trait); }
    .tarif-card.featured { border-bottom: none; }

    .contact-row { grid-template-columns: 1fr; }

    footer { padding: 24px 20px; }
}

@media (max-width: 560px) {
    .form-row, .cta-form-row { flex-direction: column; border-radius: var(--radius-m); }
    .form-btn, .cta-btn { border-radius: 0 0 var(--radius-m) var(--radius-m); }
}
