@font-face {
    font-family: 'Bricolage Grotesque';
    font-weight: 200 800;
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,200..800&display=swap');
}

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #042C2B;
    --primary-dark: #023634;
    --primary-light: #0BFF80;
    --secondary: #00EA8B;
    --accent: #0BFF80;
    --text-dark: #24292E;
    --text-gray: #64748B;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-dark: #023634;
    --border: #E2E8F0;
    --success: #0BFF80;
    --warning: #F59E0B;
    --error: #EF4444;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER - Design identique landing PRO
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease;
}

.header.scrolled {
    background: transparent;
    border-bottom-color: transparent;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    border-radius: 0;
    transition: max-width 0.4s cubic-bezier(.4,0,.2,1),
                background 0.35s ease,
                box-shadow 0.35s ease,
                border-radius 0.4s cubic-bezier(.4,0,.2,1),
                margin 0.4s cubic-bezier(.4,0,.2,1),
                padding 0.35s ease;
}

.header.scrolled .header-inner {
    max-width: 1080px;
    margin: 10px auto 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 0 1.25rem;
}

.header.scrolled .header-phone {
    display: none;
}

.header.scrolled .promo-banner {
    display: none;
}

.header.scrolled .header-nav-link {
    font-size: 0.875rem;
    padding: 0.4rem 0.625rem;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 2rem;
    transition: height 0.35s ease;
}

.header.scrolled .header-container {
    height: 60px;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.header-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.header-nav-link:hover {
    color: var(--primary);
    background: rgba(4, 44, 43, 0.05);
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.header-phone {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.header-phone:hover {
    color: var(--primary);
    background: rgba(4, 44, 43, 0.05);
}

.header-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-dark);
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.header-btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(4, 44, 43, 0.04);
}

.header-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.header-btn-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(4, 44, 43, 0.25);
}

/* Burger menu */
.header-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.header-burger span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.header-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.header-burger.active span:nth-child(2) {
    opacity: 0;
}
.header-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav panel */
.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.header.scrolled .mobile-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-top: none;
    border-radius: 0 0 1rem 1rem;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.875rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-nav-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.mobile-nav-phone {
    display: block;
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.75rem 0;
}

.mobile-full {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 0.25rem;
}

/* ============================================
   PROMO BANNER — intégré dans le header fixe
   ============================================ */
.promo-banner {
    display: none;
}

.promo-banner a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.promo-banner a:hover {
    text-decoration: underline;
}

/* ============================================
   HERO - Conversion focused
   ============================================ */
.hero {
    padding-top: calc(72px + 1rem);
    padding-bottom: 2rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(4, 44, 43, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(11, 255, 128, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    align-items: start;
}

.hero-content {
    padding-top: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-top {
    width: 100%;
}

.hero-bottom {
    width: 100%;
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(11, 255, 128, 0.12);
    border: 1px solid rgba(11, 255, 128, 0.25);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    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: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.875rem;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.hero-title .accent {
    color: var(--primary);
    position: relative;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 3px;
}

.hero-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.hero-trust-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-trust-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-stats-row {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ============================================
   HERO REVIEWS LINE
   ============================================ */
.hero-reviews-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.875rem;
    flex-wrap: wrap;
}

.hero-reviews-stars {
    color: #F59E0B;
    font-size: 0.875rem;
    letter-spacing: 1px;
    line-height: 1;
}

.hero-reviews-count {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-reviews-sep {
    color: var(--text-light);
    font-size: 0.75rem;
}

.hero-reviews-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(11, 255, 128, 0.12);
    padding: 0.2rem 0.625rem;
    border-radius: 1rem;
}

.hero-trustpilot-inline {
    margin: 1rem 0 0 0;
    padding: 0;
    width: 250px;
    text-align: left;
}

.hero-trustpilot-inline .trustpilot-widget {
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.hero-trustpilot-inline iframe {
    margin: 0 !important;
    padding: 0 !important;
}

/* Mini reviews dans le hero */
.hero-mini-reviews {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.mini-review {
    padding: 0.5rem 0.625rem;
    background: rgba(248, 250, 252, 0.85);
    border: 1px solid var(--border);
    border-radius: 0.625rem;
}

.mini-review-stars {
    color: #F59E0B;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.mini-review-text {
    font-size: 0.8125rem;
    color: var(--text-dark);
    line-height: 1.45;
    margin-bottom: 0.25rem;
    font-style: italic;
}

.mini-review-author {
    font-size: 0.6875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Stats inline dans le hero (desktop) */
.hero-stats-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hero-stat-inline {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.hero-stat-inline strong {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9375rem;
}

.hero-stat-sep {
    width: 3px;
    height: 3px;
    background: var(--text-light);
    border-radius: 50%;
    flex-shrink: 0;
}

/* CTA rappel dans le hero */
.hero-callback-cta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.hero-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-cta-phone:hover {
    color: var(--accent);
}

.hero-cta-phone svg {
    flex-shrink: 0;
}

.hero-cta-callback {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 0.4375rem 0.875rem;
    border: 1.5px solid var(--primary);
    border-radius: 2rem;
    transition: all 0.2s;
}

.hero-cta-callback svg {
    flex-shrink: 0;
}

.hero-cta-callback:hover {
    background: var(--primary);
    color: #fff;
}

.hero-cta-sep {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
}

/* hero-bottom : masqué sur desktop, visible sur mobile */

/* ============================================
   FORM CARD - Main conversion element
   ============================================ */
.form-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(4, 44, 43, 0.10), 0 0 0 1px rgba(4, 44, 43, 0.06);
    overflow: hidden;
    position: relative;
}

.form-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, #034E4C 100%);
    padding: 0.625rem 1rem;
    text-align: center;
}

.form-card-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.form-card-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    font-weight: 400;
}

.form-card-body {
    padding: 0.75rem 1rem;
}

.form-card-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.375rem 0.5rem;
    background: rgba(11, 255, 128, 0.08);
    border: 1px solid rgba(11, 255, 128, 0.2);
    border-radius: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.375rem;
}

.form-card-urgency svg {
    flex-shrink: 0;
}

/* Social proof dynamique */
.form-card-social-proof {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.5rem;
    background: rgba(4, 44, 43, 0.04);
    border-radius: 0.5rem;
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 0.375rem;
    min-height: 1.25rem;
}

#social-proof-text {
    transition: opacity 0.4s ease;
}

.social-proof-dot {
    width: 6px;
    height: 6px;
    background: #EF4444;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Jeu concours / garantie badge */
.form-card-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(90deg, rgba(11, 255, 128, 0.08) 0%, rgba(11, 255, 128, 0.14) 100%);
    border-top: 1px solid rgba(11, 255, 128, 0.2);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: background 0.2s;
}

.form-card-guarantee:hover {
    background: rgba(11, 255, 128, 0.18);
}

.form-card-guarantee svg {
    flex-shrink: 0;
    color: var(--accent);
}

.form-card-guarantee u {
    text-decoration-color: var(--accent);
    text-underline-offset: 2px;
}

/* Bandeau géolocalisation dans hero-bottom */
.hero-geo-banner {
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(11, 255, 128, 0.08);
    border: 1px solid rgba(11, 255, 128, 0.2);
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-geo-banner svg {
    flex-shrink: 0;
    color: var(--accent);
}

.hero-geo-banner strong {
    font-weight: 700;
}

.hs-form-container {
    min-height: 140px;
}

.form-card-footer {
    padding: 0.375rem 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    align-items: flex-start;
}

.form-card-trust {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    color: var(--text-gray);
    line-height: 1.35;
}

.form-card-trust svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* ============================================
   TRUSTPILOT BAR
   ============================================ */
.trustpilot-bar {
    padding: 2rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ============================================
   PROCESS SECTION - 3 steps
   ============================================ */
.process-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.process-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(4, 44, 43, 0.08);
    border-color: rgba(11, 255, 128, 0.4);
}

.process-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.process-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.process-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   REASSURANCE / WHY DIMO
   ============================================ */
.reassurance-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.reassurance-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.reassurance-card:hover {
    border-color: rgba(11, 255, 128, 0.4);
    box-shadow: 0 4px 16px rgba(4, 44, 43, 0.06);
}

.reassurance-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 255, 128, 0.1);
    border-radius: 0.75rem;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.reassurance-content {
    flex: 1;
}

.reassurance-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.reassurance-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ============================================
   STATS BANNER
   ============================================ */
.stats-banner {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(11, 255, 128, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.stats-banner .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ============================================
   DIAGNOSTICS TABLE
   ============================================ */
.diagnostics-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.diagnostics-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.diag-tab {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s;
}

.diag-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--accent);
}

.diag-tab:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.diag-table-wrapper {
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.diag-table {
    width: 100%;
    border-collapse: collapse;
}

.diag-table th {
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.diag-table td {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.diag-table tr:last-child td {
    border-bottom: none;
}

.diag-table tr:hover td {
    background: rgba(11, 255, 128, 0.04);
}

.diag-check {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
}

.diag-table-panel {
    display: none;
}

.diag-table-panel.active {
    display: block;
}

/* ============================================
   CTA BAND MID-PAGE
   ============================================ */
.cta-band {
    padding: 3rem 0;
    background: rgba(11, 255, 128, 0.06);
    border-top: 1px solid rgba(11, 255, 128, 0.15);
    border-bottom: 1px solid rgba(11, 255, 128, 0.15);
    text-align: center;
}

.cta-band-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cta-band-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.cta-band-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CALLBACK SECTION
   ============================================ */
.callback-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.callback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.callback-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.callback-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.callback-text {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.callback-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.callback-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.callback-benefit-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.callback-form-card {
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(4, 44, 43, 0.10), 0 0 0 1px rgba(4, 44, 43, 0.06);
    overflow: hidden;
}

.callback-form-header {
    background: linear-gradient(135deg, var(--primary) 0%, #034E4C 100%);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.callback-form-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
}

.callback-form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

.callback-form-body {
    padding: 1.5rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.active {
    border-color: rgba(11, 255, 128, 0.4);
    box-shadow: 0 2px 12px rgba(11, 255, 128, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(11, 255, 128, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.final-cta-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.final-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

.final-trust-icon {
    color: var(--accent);
}

/* ============================================
   FOOTER - Minimal pour SEA
   ============================================ */
.footer {
    background: #0A1F1F;
    color: white;
    padding: 2.5rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 26px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

.footer-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: white;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    border-radius: 0.625rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(11, 255, 128, 0.35);
    filter: brightness(1.05);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid white;
    cursor: pointer;
    background: transparent;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--primary);
    cursor: pointer;
    background: transparent;
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--accent);
    transform: translateY(-1px);
}

/* ============================================
   STICKY BUTTONS
   ============================================ */
.sticky-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--primary);
    padding: 0.875rem 1.25rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: 0 4px 20px rgba(11, 255, 128, 0.4), 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.sticky-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(11, 255, 128, 0.5), 0 4px 12px rgba(0,0,0,0.2);
}

.sticky-phone svg {
    flex-shrink: 0;
}

.sticky-devis {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--accent);
    padding: 0.875rem 1.25rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: 0 4px 20px rgba(4, 44, 43, 0.3), 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s;
    border: 1px solid var(--accent);
}

.sticky-devis:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(4, 44, 43, 0.4);
    background: var(--accent);
    color: var(--primary);
}

.sticky-devis svg {
    flex-shrink: 0;
}

/* Sticky phone wrapper avec micro-texte */
.sticky-phone-wrapper {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.sticky-phone-label {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--text-gray);
    background: white;
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s, transform 0.3s;
}

.sticky-phone-wrapper:hover .sticky-phone-label {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse animation sur le bouton sticky téléphone */
@keyframes sticky-pulse {
    0% { box-shadow: 0 4px 20px rgba(11, 255, 128, 0.4), 0 2px 8px rgba(0,0,0,0.15), 0 0 0 0 rgba(11, 255, 128, 0.4); }
    70% { box-shadow: 0 4px 20px rgba(11, 255, 128, 0.4), 0 2px 8px rgba(0,0,0,0.15), 0 0 0 12px rgba(11, 255, 128, 0); }
    100% { box-shadow: 0 4px 20px rgba(11, 255, 128, 0.4), 0 2px 8px rgba(0,0,0,0.15), 0 0 0 0 rgba(11, 255, 128, 0); }
}

.sticky-phone.pulsing {
    animation: sticky-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Bandeau scroll-nudge pour hésitants */
.scroll-nudge {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8500;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    pointer-events: none;
}

.scroll-nudge.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.scroll-nudge-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary);
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
}

.scroll-nudge-cta {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    padding: 0.375rem 1rem;
    background: rgba(11, 255, 128, 0.15);
    border-radius: 2rem;
    transition: background 0.2s;
}

.scroll-nudge-cta:hover {
    background: rgba(11, 255, 128, 0.25);
}

.scroll-nudge-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}

.scroll-nudge-close:hover {
    color: white;
}

/* HubSpot form overrides */
.hs-form-container .hs-form {
    font-family: 'Bricolage Grotesque', -apple-system, sans-serif !important;
}

.hs-form-container .hs-input {
    border-radius: 0.375rem !important;
    border: 1px solid var(--border) !important;
    padding: 0.375rem 0.5rem !important;
    font-size: 0.75rem !important;
    font-family: inherit !important;
    transition: border-color 0.2s !important;
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.4 !important;
}

.hs-form-container select.hs-input {
    padding: 0.3125rem 0.5rem !important;
    height: 1.875rem !important;
    appearance: auto !important;
}

.hs-form-container .hs-input:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 2px rgba(11, 255, 128, 0.15) !important;
    outline: none !important;
}

.hs-form-container .hs-button {
    background: var(--accent) !important;
    color: var(--primary) !important;
    border: none !important;
    border-radius: 0.5rem !important;
    padding: 0.4375rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    letter-spacing: 0.01em !important;
}

.hs-form-container .hs-button:hover {
    filter: brightness(1.05) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(11, 255, 128, 0.35) !important;
}

.hs-form-container label {
    font-weight: 600 !important;
    font-size: 0.6875rem !important;
    color: var(--text-dark) !important;
    margin-bottom: 0.0625rem !important;
    line-height: 1.3 !important;
}

.hs-form-container .hs-form-field {
    margin-bottom: 0.25rem !important;
}

.hs-form-container .hs_submit {
    margin-top: 0.125rem !important;
}

.hs-form-container .hs-richtext,
.hs-form-container .legal-consent-container {
    font-size: 0.625rem !important;
    line-height: 1.35 !important;
    margin-top: 0.125rem !important;
}

.hs-form-container .hs-error-msgs {
    color: var(--error) !important;
    font-size: 0.8125rem !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Laptop 13 pouces (~1280px) */
@media (max-width: 1366px) {
    .hero {
        padding-top: calc(64px + 0.75rem);
        padding-bottom: 1.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr 380px;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .hero-mini-reviews {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .mini-review {
        padding: 0.5rem 0.625rem;
    }

    .mini-review-text {
        font-size: 0.75rem;
    }

    .form-card-body {
        padding: 0.625rem 0.875rem;
    }

    .form-card-header {
        padding: 0.5rem 0.875rem;
    }

    .form-card-title {
        font-size: 0.9375rem;
    }

    .form-card-subtitle {
        font-size: 0.6875rem;
    }

    .hs-form-container .hs-input {
        padding: 0.3125rem 0.4375rem !important;
        font-size: 0.6875rem !important;
    }

    .hs-form-container select.hs-input {
        height: 1.625rem !important;
    }

    .hs-form-container .hs-button {
        padding: 0.375rem 0.75rem !important;
        font-size: 0.75rem !important;
    }

    .hs-form-container label {
        font-size: 0.625rem !important;
    }

    .hs-form-container .hs-form-field {
        margin-bottom: 0.1875rem !important;
    }

    .form-card-body {
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        padding-top: 0;
        align-items: center;
    }

    .hero-mini-reviews,
    .hero-callback-cta,
    .hero-stats-inline,
    .hero-trustpilot-inline {
        display: none;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-reviews-line {
        justify-content: center;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .form-card {
        max-width: 520px;
        margin: 0 auto;
    }

    .callback-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .callback-form-card {
        max-width: 520px;
        margin: 0 auto;
    }

    .reassurance-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header mobile */
    .header-nav,
    .header-actions {
        display: none !important;
    }

    .header-burger {
        display: flex;
    }

    .header-logo-img {
        height: 26px;
    }

    .header-inner {
        padding: 0 1rem;
    }

    .header-container {
        height: 56px;
    }

    .mobile-nav-body {
        padding: 1rem 1.5rem 1.5rem;
    }

    /* Masquer le bandeau promo sur mobile (le numéro est dans le sticky) */
    .promo-banner {
        display: none;
    }

    /* Hero mobile-first : formulaire visible sans scroller */
    .hero {
        padding-top: calc(56px + 1rem);
        padding-bottom: 1.5rem;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .hero-content {
        display: contents;
    }

    .hero-mini-reviews,
    .hero-callback-cta,
    .hero-stats-inline,
    .hero-trustpilot-inline,
    .hero-content > .hero-description {
        display: none;
    }

    /* Ordre mobile : 1) titre+subtitle, 2) formulaire, 3) stats */
    .hero-top {
        order: 1;
        padding-bottom: 0.5rem;
        text-align: center;
    }

    .form-card {
        order: 2;
        max-width: 100%;
        margin: 0;
    }

    .hero-bottom {
        display: block;
        order: 3;
        padding-top: 1.25rem;
        border-top: 1px solid var(--border);
        margin-top: 1.25rem;
        text-align: center;
    }

    .hero-bottom .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
        line-height: 1.15;
    }

    .hero-reviews-line {
        justify-content: center;
        gap: 0.375rem;
        margin-bottom: 0.375rem;
    }

    .hero-reviews-stars {
        font-size: 0.75rem;
    }

    .hero-reviews-count {
        font-size: 0.75rem;
    }

    .hero-reviews-badge {
        font-size: 0.6875rem;
        padding: 0.15rem 0.5rem;
    }

    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .hero-stats-row {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Sections */
    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Diagnostics table */
    .diagnostics-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .diag-table th,
    .diag-table td {
        padding: 0.75rem;
        font-size: 0.8125rem;
    }

    /* CTA band */
    .cta-band-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-band-actions .btn-primary,
    .cta-band-actions .btn-outline {
        width: 100%;
        max-width: 320px;
    }

    /* Callback */
    .callback-title {
        font-size: 1.625rem;
    }

    /* Final CTA */
    .final-cta-title {
        font-size: 1.75rem;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-actions .btn-primary,
    .final-cta-actions .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    .final-cta-trust {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    /* Sticky — icônes seules sur mobile */
    .sticky-phone-wrapper {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .sticky-phone {
        padding: 1rem;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }

    .sticky-phone span {
        display: none;
    }

    .sticky-phone-label {
        display: none;
    }

    .sticky-devis {
        padding: 1rem;
        border-radius: 50%;
        bottom: 1.25rem;
        left: 1.25rem;
        width: 52px;
        height: 52px;
        justify-content: center;
    }

    .sticky-devis span {
        display: none;
    }

    /* Scroll nudge mobile */
    .scroll-nudge-inner {
        flex-direction: column;
        gap: 0.375rem;
        padding: 0.75rem 1rem 5rem;
        font-size: 0.8125rem;
        text-align: center;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    /* Promo banner */
    .promo-banner {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    /* Reassurance grid */
    .reassurance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.875rem;
    }

    .hero {
        padding-top: calc(56px + 0.75rem);
    }

    .hero-title {
        font-size: 1.375rem;
        letter-spacing: -0.02em;
    }

    .hero-reviews-sep {
        display: none;
    }

    .hero-reviews-badge {
        font-size: 0.625rem;
    }

    .hero-stats-row {
        gap: 0.75rem;
    }

    .hero-stat-number {
        font-size: 1.375rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .form-card-title {
        font-size: 1.125rem;
    }

    .callback-title {
        font-size: 1.375rem;
    }

    .final-cta-title {
        font-size: 1.5rem;
    }

    .diag-table th,
    .diag-table td {
        padding: 0.625rem 0.75rem;
        font-size: 0.75rem;
    }
}
