/* ========================
   VARIABLES + RESET
======================== */
:root {
    --primary: #0f172a;
    --accent: #F99584;
    --accent-hover: #f77d68;
    --accent-light: rgba(249,149,132,0.1);
    --bg: #fff6f3;
    --bg-deep: #fdeee9;
    --white: #ffffff;
    --border: #f0d8d2;
    --muted: #64748b;
    --success: #10b981;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: var(--primary);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
h4 { font-size: 1rem; margin-bottom: 0.35rem; }
p { line-height: 1.75; }
a { color: var(--accent); text-decoration: none; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
section { padding: 6rem 0; }

/* ========================
   NAVIGATION
======================== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 1rem 0;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
#navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo:hover { opacity: 0.8; }
.logo img {
    height: 28px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: var(--muted);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,149,132,0.35);
}

.burger {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
    position: absolute;
    top: 1.25rem; right: 1.5rem;
    background: none; border: none;
    color: var(--muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

/* ========================
   HERO
======================== */
.hero {
    padding: 8rem 0 5rem;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(249,149,132,0.1) 0%, transparent 65%);
    pointer-events: none;
}

/* Social proof badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff6f3 0%, #fdeee9 100%);
    border: 1px solid rgba(249,149,132,0.25);
    border-radius: 40px;
    padding: 6px 16px 6px 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 2rem;
}
.badge-avatars {
    display: flex;
    align-items: center;
}
.badge-avatars span {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800; color: white;
    margin-right: -8px;
    flex-shrink: 0;
}
.badge-avatars span:last-child { margin-right: 6px; }
.av1 { background: #F99584; }
.av2 { background: #10a37f; }
.av3 { background: #7c3aed; }
.av4 { background: #0ea5e9; }

.hero h1 {
    max-width: 780px;
    margin: 0 auto 1.25rem;
}
.hero h1 em {
    font-style: normal;
    color: var(--accent);
}
.hero-sub {
    max-width: 540px;
    margin: 0 auto 2.5rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Email CTA */
.hero-input-wrap {
    display: flex;
    align-items: center;
    max-width: 460px;
    margin: 0 auto 4rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 5px 5px 5px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    gap: 8px;
}
.hero-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary);
    background: transparent;
    min-width: 0;
}
.hero-input-wrap input::placeholder { color: #94a3b8; }
.hero-input-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 9px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.hero-input-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 16px rgba(249,149,132,0.4);
}
.hero-input-btn svg { width: 15px; height: 15px; }

/* ========================
   HERO BENTO GRID
======================== */
.hero-bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    text-align: left;
    max-width: 980px;
    margin: 0 auto;
}
.hb-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hb-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Card labels & content */
.hb-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}
.hb-card h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.35rem;
}
.hb-card > p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Card 1 — Audit IA */
.hb-card-1 { grid-column: 1; }
.mini-chat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mc-bubble {
    padding: 7px 11px;
    border-radius: 11px;
    font-size: 0.875rem;
    line-height: 1.45;
    max-width: 90%;
}
.mc-user {
    background: var(--accent);
    color: white;
    border-radius: 11px 11px 4px 11px;
    align-self: flex-end;
}
.mc-ai {
    background: #f1f5f9;
    color: var(--primary);
    border-radius: 11px 11px 11px 4px;
}
.mc-alert {
    background: rgba(239,68,68,0.07);
    border: 1px solid rgba(239,68,68,0.25);
    color: #dc2626;
    font-size: 0.8125rem;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 2px;
}

/* Chat animation */
.mini-chat .mc-bubble,
.mini-chat .mc-alert {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.mini-chat .mc-bubble.mc-user {
    transform: translateY(10px) translateX(6px);
}
.mini-chat .mc-bubble.visible,
.mini-chat .mc-alert.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Card 2 — Benchmark */
.hb-card-2 { grid-column: 2; }
.bench-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bench-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.bench-name {
    width: 78px;
    color: var(--muted);
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bench-track {
    flex: 1;
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}
.bench-fill {
    height: 100%;
    border-radius: 10px;
    width: 0;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.bench-score {
    width: 26px;
    text-align: right;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Card 3 — Dashboard (tall, spans 2 rows) */
.hb-card-3 {
    grid-column: 3;
    grid-row: 1 / span 2;
}
.dash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 0.75rem;
}
.dash-metric {
    background: linear-gradient(135deg, #fff6f3 0%, #fdeee9 100%);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.dash-metric.visible {
    opacity: 1;
    transform: translateY(0);
}
.dash-metric-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
}
.dash-metric-label {
    font-size: 1rem;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}
.dash-chart {
    height: 75px;
    background: linear-gradient(135deg, #fff6f3 0%, #fdeee9 100%);
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    padding: 8px;
    gap: 4px;
    margin-bottom: 0.75rem;
}
.dash-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(249,149,132,0.2);
    height: 0;
    transition: height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.dash-bar.hi { background: var(--accent); }
.dash-platforms {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.dp {
    font-size: 1rem;
    padding: 3px 9px;
    border-radius: 20px;
    font-weight: 600;
}
.dp-gpt { background: rgba(16,163,127,0.1); color: #10a37f; }
.dp-claude { background: rgba(249,149,132,0.12); color: #d45e4e; }
.dp-gemini { background: rgba(66,133,244,0.1); color: #4285f4; }

/* Card 4 — Wide CTA */
.hb-card-wide {
    grid-column: 1 / span 2;
    background: linear-gradient(135deg, #fff4f1 0%, #ffeae5 100%);
    border-color: rgba(249,149,132,0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2rem;
}
.hb-wide-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}
.hb-wide-text p {
    font-size: 1rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
}
.hb-wide-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.hb-wide-btn:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-1px);
}
.hb-wide-btn svg { width: 15px; height: 15px; }

/* ========================
   STATS ROW
======================== */
.stats-section {
    background: var(--white);
    padding: 3.5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-num {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}
.stat-num em { font-style: normal; color: var(--accent); }
.stat-label { font-size: 1rem; color: var(--muted); line-height: 1.5; }

/* ========================
   VALUE PROP SPLIT
======================== */
.value-section {
    padding: 7rem 0;
    background: var(--white);
}
.value-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.value-left h2 { margin-bottom: 0; }
.value-right p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ========================
   BUTTONS
======================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-filled {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}
.btn-filled:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,149,132,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: rgba(15,23,42,0.2);
}
.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

/* ========================
   SECTION LABELS + HEADERS
======================== */
.section-label {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.label-coral {
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(249,149,132,0.25);
}
.label-white {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}
.section-header p { color: var(--muted); font-size: 1rem; margin-top: 0.6rem; margin-bottom: 0; }

/* ========================
   PROBLEM SECTION
======================== */
.problem-section { background: linear-gradient(180deg, #ffffff 0%, #fff3ef 50%, #fde8e0 100%); }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.bento-1 { grid-column: 1 / span 2; }
.bento-2 { grid-column: 3; }
.bento-3 { grid-column: 1; }
.bento-4 { grid-column: 2 / span 2; }

.bento-card {
    background: linear-gradient(150deg, #ffffff 0%, #fff9f7 100%);
    border: 1px solid rgba(249,149,132,0.18);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.bento-card:hover {
    border-color: rgba(249,149,132,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}
.bento-num {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(249,149,132,0.07);
    line-height: 1;
    position: absolute;
    top: 1rem; right: 1.25rem;
    letter-spacing: -0.04em;
    pointer-events: none;
}
.bento-icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    margin-bottom: 1.25rem;
}
.bento-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.bento-card p { font-size: 1rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ========================
   APPROACH SECTION
======================== */
.approach-section { background: var(--white); }
.approach-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.step-card {
    background: linear-gradient(150deg, #ffffff 0%, #fff6f3 100%);
    border: 1px solid rgba(249,149,132,0.2);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.step-card:hover {
    border-color: rgba(249,149,132,0.35);
    box-shadow: 0 10px 36px rgba(249,149,132,0.1);
    transform: translateY(-4px);
}
.step-num {
    width: 52px; height: 52px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(249,149,132,0.35);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.step-card > p { font-size: 1rem; color: var(--muted); margin-bottom: 1.25rem; }
.step-features { list-style: none; text-align: left; }
.step-features li {
    padding: 4px 0;
    color: var(--muted);
    font-size: 1rem;
    display: flex; gap: 8px;
    line-height: 1.5;
}
.step-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ========================
   EXPERTISE SECTION
======================== */
.expertise-section { background: linear-gradient(160deg, #fff6f3 0%, #fdeee9 50%, #fde4db 100%); }
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.expertise-card {
    background: linear-gradient(150deg, #ffffff 0%, #fff9f7 100%);
    border: 1px solid rgba(249,149,132,0.18);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: all 0.3s ease;
}
.expertise-card:hover {
    border-color: rgba(249,149,132,0.3);
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}
.expertise-icon {
    width: 42px; height: 42px;
    background: var(--accent-light);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    margin-bottom: 1rem;
}
.expertise-icon svg { width: 20px; height: 20px; }
.expertise-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.expertise-card p { font-size: 1rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ========================
   OFFERS SECTION
======================== */
.offers-section { background: var(--white); }
.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: start;
}
.offer-card {
    background: linear-gradient(150deg, #ffffff 0%, #fff6f3 100%);
    border: 1.5px solid rgba(249,149,132,0.2);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    display: flex; flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}
.offer-card:hover {
    border-color: rgba(249,149,132,0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(0,0,0,0.07);
}
.offer-card.featured {
    background: var(--white);
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 4px 24px rgba(249,149,132,0.15);
}
.offer-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.offer-type {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.25rem;
}
.offer-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.3rem; }
.offer-desc {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    line-height: 1.55;
}
.offer-features { list-style: none; flex-grow: 1; margin-bottom: 1.5rem; }
.offer-features li {
    padding: 4px 0;
    font-size: 1rem;
    color: var(--primary);
    display: flex; gap: 8px;
    line-height: 1.4;
}
.offer-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.offer-features li.inherit { color: var(--muted); font-style: italic; }
.offer-features li.inherit::before { content: '+'; color: var(--muted); }
.offer-cta {
    display: block;
    text-align: center;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.25s ease;
    text-decoration: none;
}
.cta-filled { background: var(--accent); color: white; }
.cta-filled:hover { background: var(--accent-hover); color: white; transform: translateY(-1px); }
.cta-outline-acc { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.cta-outline-acc:hover { background: var(--accent); color: white; }

/* ========================
   FAQ SECTION
======================== */
.faq-section { background: var(--white); }
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex; flex-direction: column; gap: 0.625rem;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(249,149,132,0.35); }
.faq-item.open { border-color: var(--accent); }
.faq-q {
    width: 100%;
    background: none; border: none;
    padding: 1.1rem 1.25rem;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
    font-size: 1rem; font-weight: 600;
    color: var(--primary); text-align: left; gap: 1rem;
    font-family: inherit;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 220px; }
.faq-a p {
    padding: 0 1.25rem 1.1rem;
    color: var(--muted); font-size: 1rem; line-height: 1.75; margin: 0;
}

/* ========================
   CONTACT SECTION
======================== */
.contact-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: -20%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(249,149,132,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
    position: relative; z-index: 1;
}
.contact-info { color: white; }
.contact-info h2 { color: white; margin-bottom: 1rem; }
.contact-info > p { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; font-size: 1rem; }
.contact-perks { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-perk { display: flex; gap: 1rem; align-items: flex-start; }
.perk-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(249,149,132,0.12);
    border: 1px solid rgba(249,149,132,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); flex-shrink: 0;
}
.perk-icon svg { width: 17px; height: 17px; }
.perk-title { font-weight: 700; color: white; font-size: 1rem; }
.perk-sub { font-size: 1rem; color: rgba(255,255,255,0.45); margin-top: 1px; }

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-card h3 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.form-sub { color: var(--muted); font-size: 1rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-weight: 600; font-size: 1rem; margin-bottom: 0.35rem; color: var(--primary); }
.form-label .req { color: #ef4444; }
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(249,149,132,0.25);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: 1rem;
    background: #fff9f7; color: var(--primary);
    transition: all 0.25s ease;
    outline: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(249,149,132,0.1);
}
.form-textarea { resize: vertical; min-height: 85px; }
.check-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1.5;
}
.check-label input {
    margin: 0;
    margin-top: 0.25em;
    accent-color: var(--accent);
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
}
.check-label span {
    flex: 1;
    min-width: 0;
}
.check-label a { color: var(--accent); }
.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: white;
    border: none; border-radius: var(--radius-sm);
    font-family: inherit; font-size: 1rem; font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,149,132,0.4);
}
.form-note { text-align: center; font-size: 1rem; color: var(--muted); margin-top: 0.75rem; }
.form-feedback { font-size: 1rem; padding: 1rem 1.25rem; border-radius: var(--radius-sm); }
.form-ajax-error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: #dc2626; }
.form-ajax-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #059669; font-weight: 600; }
.form-ajax-success i { flex-shrink: 0; }
/* Honeypot : invisible pour les humains, visible pour les bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* ========================
   FOOTER
======================== */
.footer { background: #070f1a; color: rgba(255,255,255,0.5); padding: 4rem 0 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo { display: block; margin-bottom: 0.75rem; }
.footer-brand .logo img { filter: brightness(0) invert(1); }
.footer-brand p { font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-col h4 {
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.45); font-size: 1rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-audit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.footer-audit-btn:hover { background: var(--accent-hover); color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1rem; color: rgba(255,255,255,0.25);
    flex-wrap: wrap; gap: 0.5rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.25); font-size: 1rem; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ========================
   SCROLL REVEAL
======================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ========================
   MINIMUM TEXT SIZE
   (tout le texte de contenu ≥16px)
======================== */
body,
p,
li,
.hero-sub,
.stat-label,
.value-right p,
.offer-desc,
.offer-features li,
.faq-a p,
.form-sub,
.form-input,
.form-select,
.form-textarea,
.form-note,
.check-label,
.contact-info > p,
.footer-brand p,
.footer-col a {
    font-size: 1rem;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
    .offers-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-bento {
        grid-template-columns: 1fr 1fr;
        gap: 0.875rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    .hb-card { padding: 1.25rem; }
    .hb-card-3 { grid-column: 1 / span 2; grid-row: auto; }
    .hb-card-wide {
        grid-column: 1 / span 2;
        padding: 1.25rem 1.5rem;
        flex-wrap: wrap;
    }
    .hb-wide-text { min-width: 0; }
    .hb-wide-btn { flex-shrink: 0; }
    .dash-metrics { gap: 6px; }
    .dash-metric { padding: 8px; }
    .dash-metric-num { font-size: 1.1rem; }
    .dash-chart { height: 65px; }
    .bench-name { width: 72px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h2 { font-size: 1.75rem; }
    section { padding: 4rem 0; }

    .nav-links, .nav-cta { display: none; }
    .burger { display: block; }

    .hero { padding: 6rem 0 3rem; }
    .hero-bento {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        padding: 0;
    }
    .hero-bento .hb-card-1,
    .hero-bento .hb-card-2,
    .hero-bento .hb-card-3,
    .hero-bento .hb-card-wide {
        grid-column: 1;
        grid-row: auto;
    }
    .hb-card {
        padding: 1.25rem 1rem;
        min-width: 0;
    }
    .hb-card h4 { font-size: 1rem; }
    .hb-card > p { margin-bottom: 0.75rem; }
    .dash-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin-bottom: 0.5rem;
    }
    .dash-metric { padding: 8px 6px; }
    .dash-metric-num { font-size: 1.1rem; }
    .dash-metric-label { font-size: 0.875rem; }
    .dash-chart { height: 60px; margin-bottom: 0.5rem; }
    .dash-platforms { justify-content: center; }
    .bench-row { gap: 6px; font-size: 0.875rem; }
    .bench-name { width: 68px; font-size: 0.875rem; }
    .bench-score { width: 22px; font-size: 0.875rem; }
    .mini-chat .mc-bubble { max-width: 95%; padding: 6px 10px; }
    .mc-alert { padding: 5px 8px; font-size: 0.8125rem; }
    .hb-card-wide {
        grid-column: 1;
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 1rem;
    }
    .hb-wide-text h4 { margin-bottom: 0.25rem; }
    .hb-wide-text p { margin: 0; }
    .hb-wide-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 1.5rem;
    }
    .hero-input-wrap { max-width: 100%; }

    .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .value-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-1, .bento-2, .bento-3, .bento-4 { grid-column: 1; }
    .approach-steps { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-bento { gap: 0.875rem; }
    .hb-card { padding: 1rem; }
    .hb-label { font-size: 0.7rem; padding: 2px 8px; }
    .bench-name { width: 60px; }
    .dash-metric-num { font-size: 1rem; }
    .dash-chart { height: 50px; padding: 6px; }
    .hb-card-wide { padding: 1rem; }
    .hb-wide-btn { padding: 11px 1rem; font-size: 0.9rem; }
}

