/* ===================================
   YANNSERVICE — Abonnement Site Pro
   Style: Premium strict (angulaire)
   Palette: 90% neutral + 10% accent
   Basé sur yannservice.fr v7.1
   =================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --black: #0A0A0A;

    --brand-silver: #B0B0B8;
    --brand-blue: #1B2A4A;
    --success: #16A34A;
    --whatsapp: #25D366;
    --warning: #F59E0B;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body { padding-bottom: 64px; }
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
}

/* ===================================
   TYPOGRAPHY
   =================================== */

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.section-subheading {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.highlight {
    color: var(--black);
    font-weight: 800;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-subheading {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-heading { font-size: 1.75rem; }
    .section-subheading { font-size: 1rem; margin-bottom: 2rem; }
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 28px;
    width: auto;
    max-width: 28px;
    object-fit: contain;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.brand-yann {
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(105deg, #8E8E96 0%, #C0C0C8 25%, #F0F0F4 50%, #C0C0C8 75%, #8E8E96 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out 1;
}

.brand-service {
    color: var(--brand-blue);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-left: -0.04em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--black);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-whatsapp-small:hover {
    border-color: var(--whatsapp);
    color: var(--whatsapp);
}

.btn-nav-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-nav-call:hover {
    background: var(--gray-800);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 0;
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        flex-direction: column;
        gap: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
        opacity: 1;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .mobile-menu-toggle { display: flex; }

    .nav-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-cta a {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--gray-800);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--black);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--whatsapp);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

.btn-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gray-100);
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
    border: 1px solid var(--gray-200);
}
.btn-demo:hover {
    background: var(--gray-200);
    border-color: var(--gray-300);
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-phone:hover {
    border-color: var(--black);
    color: var(--black);
}

/* ===================================
   HERO
   =================================== */

.hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 2s infinite;
}

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

.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

@media (min-width: 769px) {
    .hero-subtitle:has(.subtitle-line-1) {
        max-width: none;
    }
    .hero-subtitle .subtitle-line-1 {
        white-space: nowrap;
    }
}

.hero-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-period {
    font-size: 1.25rem;
    color: var(--gray-400);
    font-weight: 500;
}

.price-note {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
}

.hero-cta-triple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-micro-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-micro-proof svg {
    color: var(--success);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero { padding: 6rem 0 3rem; }
    .hero-title { font-size: 2rem; }
    .price-amount { font-size: 3rem; }
    .hero-cta-triple { flex-direction: column; }
    .hero-cta-triple a { width: 100%; }
}

/* ===================================
   STATS
   =================================== */

.stats-section {
    padding: 3rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

@media (max-width: 768px) {
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .stat-divider { display: none; }
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

/* ===================================
   FEATURES GRID (Inclus)
   =================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    transition: background var(--transition);
}

.feature-card:hover {
    background: var(--gray-50);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* ===================================
   SEO BOOST
   =================================== */

.seo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.seo-text .section-heading {
    margin-bottom: 1rem;
}

.seo-intro {
    font-size: 1.0625rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.check-list li svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.check-list li small {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 4px;
    font-style: italic;
}

.seo-partner-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--black);
    border-radius: var(--radius-md);
}

.seo-partner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--success);
}

.seo-partner-block h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.seo-partner-block p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.seo-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.google-preview-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.gpc-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.gpc-url {
    font-size: 0.8125rem;
    color: var(--success);
    margin-bottom: 4px;
}

.gpc-title {
    font-size: 1.125rem;
    color: #1a0dab;
    font-weight: 400;
    margin-bottom: 6px;
    cursor: pointer;
}

.gpc-title:hover {
    text-decoration: underline;
}

.gpc-desc {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.seo-score-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.score-ring {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.score-ring svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--success);
}

.score-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

.score-desc {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-400);
}

@media (max-width: 1024px) {
    .seo-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .seo-visual { position: static; }
}

/* ===================================
   OPTIONS
   =================================== */

.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.option-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: border-color var(--transition);
}

.option-card:hover {
    border-color: var(--gray-400);
}

.option-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--gray-700);
}

.option-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
}

.option-price small {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-400);
}

.option-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.option-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-card li {
    font-size: 0.8125rem;
    color: var(--gray-500);
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.option-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-300);
}

@media (max-width: 1024px) {
    .options-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .options-grid { grid-template-columns: 1fr; }
}

/* Partner options */
.partner-section {
    text-align: center;
}

.partner-section .section-label {
    margin-bottom: 1.5rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    transition: border-color var(--transition);
}

.partner-card:hover {
    border-color: var(--gray-400);
}

.partner-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.375rem;
}

.partner-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.partner-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    white-space: nowrap;
    flex-shrink: 0;
}

.partner-price small {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .partner-grid { grid-template-columns: 1fr; }
    .partner-card { flex-direction: column; align-items: flex-start; }
}

/* ===================================
   CONSEIL RÉFÉRENCEMENT
   =================================== */

.conseil-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--gray-200);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.conseil-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem 2rem;
    transition: background var(--transition);
}

.conseil-card:hover {
    background: var(--gray-50);
}

.conseil-card-highlight {
    background: var(--gray-50);
    border-left: 3px solid var(--black);
}

.conseil-card-highlight:hover {
    background: var(--gray-100);
}

.conseil-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--gray-700);
}

.conseil-card-highlight .conseil-number {
    background: var(--black);
    color: var(--white);
}

.conseil-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.conseil-content p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.conseil-important {
    font-weight: 600;
    color: var(--black) !important;
    margin-bottom: 0.25rem !important;
}

.conseil-content ul {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.conseil-content li {
    font-size: 0.8125rem;
    color: var(--gray-500);
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.conseil-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-300);
}

@media (max-width: 640px) {
    .conseil-card { padding: 1.25rem 1.25rem; gap: 1rem; }
}

/* ===================================
   PROCESS
   =================================== */

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
}

.process-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--black);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.25rem;
}

.process-step h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 16px;
    color: var(--gray-300);
}

@media (max-width: 768px) {
    .process-grid { flex-direction: column; align-items: center; }
    .process-connector { transform: rotate(90deg); }
}

/* ===================================
   TESTIMONIALS
   =================================== */

.rating-global {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.rating-global > span {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonials-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 3rem) / 3);
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0.25rem;
    flex: 1;
    min-width: 0;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonials-track > .testimonial-card {
    scroll-snap-align: start;
}

.testimonials-nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition);
}

.testimonials-nav:hover {
    border-color: var(--gray-400);
    color: var(--black);
    background: var(--gray-50);
}

.testimonials-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonial-link-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--gray-400);
    opacity: 0.6;
    transition: all var(--transition);
}

a.testimonial-card:hover .testimonial-link-icon {
    color: var(--brand-blue);
    opacity: 1;
    transform: translate(2px, -2px);
}

a.testimonial-card:hover {
    border-color: var(--gray-400);
}

.testimonial-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: border-color var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gray-400);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-card > p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 700;
    font-size: 0.9375rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-track { grid-auto-columns: 85%; }
}

/* ===================================
   FAQ
   =================================== */

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-200);
}

.faq-item {
    background: var(--white);
}

.faq-item + .faq-item {
    border-top: 1px solid var(--gray-200);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--black);
    list-style: none;
    transition: background var(--transition);
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
    background: var(--gray-50);
}

.faq-item summary span {
    flex: 1;
}

.faq-item summary svg {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.faq-item[open] summary svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===================================
   CTA FINAL
   =================================== */

.cta-final {
    padding: 6rem 0;
    background: var(--black);
    text-align: center;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.cta-content > p {
    font-size: 1.0625rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.cta-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.cta-price span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-500);
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-primary-white {
    background: var(--white);
    color: var(--black);
}

.btn-primary-white:hover {
    background: var(--gray-200);
}

.btn-secondary-white {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-600);
}

.btn-secondary-white:hover {
    border-color: var(--white);
}

.cta-reassurance {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .cta-content h2 { font-size: 1.75rem; }
    .cta-price { font-size: 2.5rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons a { width: 100%; max-width: 360px; }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--gray-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    justify-items: center;
}

.footer-brand > p {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 1.25rem;
    align-items: center;
}

.footer-contact-info a,
.footer-contact-info span {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.footer-contact-info a:hover {
    color: var(--black);
}

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--black);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: center;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ===================================
   WHATSAPP FLOAT
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .whatsapp-float { display: none; }
}

/* ===================================
   MOBILE CTA BAR
   =================================== */

.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    z-index: 997;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.mobile-cta-subscribe {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-cta-bar { display: flex; }
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

.feature-card,
.option-card,
.partner-card,
.testimonial-card,
.process-step,
.conseil-card,
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-card.visible,
.option-card.visible,
.partner-card.visible,
.testimonial-card.visible,
.process-step.visible,
.conseil-card.visible,
.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   TARIFS TABLE
   =================================== */

.tarif-table {
    max-width: 680px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-200);
}

.tarif-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    transition: background var(--transition);
}

.tarif-row + .tarif-row {
    border-top: 1px solid var(--gray-200);
}

.tarif-row:hover {
    background: var(--gray-50);
}

.tarif-row-highlight {
    border-left: 3px solid var(--black);
    background: var(--gray-50);
}

.tarif-row-highlight:hover {
    background: var(--gray-100);
}

.tarif-info h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.tarif-info p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.tarif-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--black);
    white-space: nowrap;
    flex-shrink: 0;
}

.tarif-badge {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.tarif-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.tarif-note a {
    color: var(--black);
    text-decoration: underline;
    font-weight: 600;
}

.tarif-note a:hover {
    color: var(--gray-700);
}

/* FAQ tarif list inside answer */
.faq-tarif-list {
    margin: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-tarif-list li {
    font-size: 0.875rem;
    color: var(--gray-600);
    padding-left: 1rem;
    position: relative;
    line-height: 1.6;
}

.faq-tarif-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-400);
}

@media (max-width: 640px) {
    .tarif-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
    }
}

/* ===================================
   SOUSCRIPTION FORM
   =================================== */

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.stepper-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
    background: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-400);
    transition: all var(--transition);
}

.stepper-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    transition: color var(--transition);
}

.stepper-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin: 0 1rem;
    margin-bottom: 1.5rem;
    transition: background var(--transition);
}

.stepper-step.active .stepper-circle {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.stepper-step.active .stepper-label {
    color: var(--black);
}

.stepper-step.completed .stepper-circle {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.stepper-step.completed .stepper-label {
    color: var(--success);
}

/* Form steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Form sections */
.form-section {
    margin-bottom: 2.5rem;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.form-section-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-optional {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.8125rem;
}

/* Plan card */
.plan-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    transition: border-color var(--transition);
}

.plan-card-selected {
    border-color: var(--black);
    background: var(--gray-50);
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.plan-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.plan-header p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.plan-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
}

.plan-period {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 500;
}

.plan-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.plan-features li svg {
    color: var(--success);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .plan-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .plan-features { grid-template-columns: 1fr; }
}

/* Options select grid */
.options-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.option-select-card {
    position: relative;
    display: block;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all var(--transition);
}

.option-select-card:hover {
    border-color: var(--gray-400);
}

.option-select-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-select-card input[type="checkbox"]:checked ~ .option-select-content {
    color: var(--black);
}

.option-select-card input[type="checkbox"]:checked ~ .option-check {
    opacity: 1;
    background: var(--black);
}

.option-select-card:has(input:checked) {
    border-color: var(--black);
    background: var(--gray-50);
}

.option-check {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--gray-200);
    color: var(--white);
    opacity: 0.5;
    transition: all var(--transition);
}

.option-select-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.option-select-top svg {
    color: var(--gray-600);
}

.option-select-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--black);
}

.option-select-price small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-400);
}

.option-select-content h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.option-select-content p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .options-select-grid { grid-template-columns: 1fr; }
}

/* Price recap */
.price-recap {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.price-recap-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: 0.375rem 0;
}

.price-recap-line-option {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

.price-recap-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
}

/* Form grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--black);
}

.form-group input.form-error,
.form-group textarea.form-error {
    border-color: #DC2626;
    background: #FEF2F2;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.form-upload-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--black);
    border-radius: var(--radius-md);
}

.form-upload-note svg {
    color: var(--gray-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-upload-note strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.form-upload-note p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-group-full { grid-column: 1; }
}

/* Form actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.form-actions-split {
    justify-content: space-between;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Recap card */
.recap-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.recap-block {
    padding: 1.5rem;
}

.recap-block h3 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.recap-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.recap-value {
    font-weight: 600;
    color: var(--black);
}

.recap-line-total {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
}

.recap-line-total .recap-value {
    font-weight: 800;
}

.recap-divider {
    height: 1px;
    background: var(--gray-200);
}

.recap-info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recap-info-item {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.recap-info-item .recap-info-label {
    min-width: 120px;
    color: var(--gray-400);
    font-weight: 500;
    flex-shrink: 0;
}

.recap-info-item span:last-child {
    color: var(--gray-700);
}

.recap-info-full {
    flex-direction: column;
    gap: 0.25rem;
}

/* Payment block */
.payment-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-700);
}

.payment-block h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.payment-block p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.payment-guarantees {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
}

.guarantee-item svg {
    color: var(--success);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .payment-guarantees { grid-template-columns: 1fr; }
}

.btn-pay {
    background: var(--success);
    color: var(--white);
    gap: 0.75rem;
}

.btn-pay:hover {
    background: #15803d;
}

/* Clear data */
.clear-data-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--gray-400);
    cursor: pointer;
    margin-top: 1rem;
    transition: color var(--transition);
}

.clear-data-link:hover {
    color: #DC2626;
}

/* ===================================
   RÉSILIATION
   =================================== */

.resiliation-steps {
    max-width: 680px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-200);
}

.resiliation-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem 2rem;
}

.resiliation-step + .resiliation-step {
    border-top: 1px solid var(--gray-200);
}

.resiliation-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--black);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
}

.resiliation-step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.375rem;
}

.resiliation-step-content p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.resiliation-step-hint {
    margin-top: 0.5rem;
    font-size: 0.8125rem !important;
    color: var(--gray-400) !important;
    font-style: italic;
}

.resiliation-alternative {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    max-width: 680px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--black);
    border-radius: var(--radius-md);
}

.resiliation-alternative svg {
    color: var(--gray-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.resiliation-alternative h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.resiliation-alternative p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.resiliation-alternative a {
    color: var(--black);
    text-decoration: underline;
    font-weight: 600;
}

.resiliation-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 780px;
    margin: 0 auto;
}

.resiliation-info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: border-color var(--transition);
}

.resiliation-info-card:hover {
    border-color: var(--gray-400);
}

.resiliation-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.resiliation-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.resiliation-info-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .resiliation-info-grid { grid-template-columns: 1fr; }
    .resiliation-step { padding: 1.25rem; gap: 1rem; }
}

/* ===================================
   PAGE MERCI / CONFIRMATION
   =================================== */

.merci-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gray-50);
    border: 2px solid var(--success);
    border-radius: var(--radius-md);
    color: var(--success);
}

/* Timeline */
.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid var(--gray-300);
    background: var(--white);
    flex-shrink: 0;
}

.timeline-dot-done {
    border-color: var(--success);
    background: var(--success);
}

.timeline-line {
    width: 2px;
    flex: 1;
    background: var(--gray-200);
    margin-top: 0.5rem;
}

.timeline-content {
    padding-top: 0;
}

.timeline-when {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.timeline-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.375rem;
}

.timeline-content p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Actions grid */
.merci-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.merci-action-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: border-color var(--transition);
}

.merci-action-card:hover {
    border-color: var(--gray-400);
}

.merci-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.merci-action-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.merci-action-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.merci-action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--black);
    transition: gap var(--transition);
}

.merci-action-link:hover {
    gap: 0.625rem;
}

.merci-actions-grid.merci-actions-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.merci-actions-grid.merci-actions-grid-1col {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .merci-actions-grid,
    .merci-actions-grid.merci-actions-grid-2col,
    .merci-actions-grid.merci-actions-grid-1col { grid-template-columns: 1fr; }
}

/* ===================================
   PAGES LÉGALES
   =================================== */

.legal-page {
    padding: 10rem 0 5rem;
    min-height: 70vh;
    background: var(--gray-50);
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    text-align: center;
}

.legal-content > p:first-of-type {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.legal-section {
    margin-bottom: 2rem;
    padding: 1.75rem;
    border-radius: 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: border-color 0.2s;
}

.legal-section:hover {
    border-color: var(--gray-300);
}

.legal-section h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.legal-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.legal-section ul li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-600);
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 6px;
    height: 6px;
    background: var(--brand-blue);
    border-radius: 50%;
    opacity: 0.5;
}

.legal-section a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.legal-section a:hover {
    border-bottom-color: var(--brand-blue);
}

.legal-section strong {
    color: var(--gray-800);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 7rem 0 3rem;
    }
    .legal-content {
        padding: 2rem 1.25rem;
        border-radius: 12px;
        margin: 0 0.5rem;
    }
    .legal-content h1 {
        font-size: 1.75rem;
    }
    .legal-section {
        padding: 1.25rem;
    }
    .legal-section h2 {
        font-size: 1rem;
    }
}

/* ===================================
   PRINT
   =================================== */

/* Mobile-only / Desktop-only helpers */
.mobile-only { display: none; }
.desktop-only { display: inline; }

@media (max-width: 768px) {
    .mobile-only { display: block; }
    .desktop-only { display: none; }
}

/* ===================================
   COMPARATIF TABLE
   =================================== */

.comparatif-table {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #fff;
    margin-bottom: 2rem;
}

.comparatif-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    background: #fafafa;
    border-bottom: 2px solid #e5e5e5;
}

.comparatif-col-label {
    padding: 1.5rem;
}

.comparatif-col-bad,
.comparatif-col-good {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.5rem 1rem;
    text-align: center;
}

.comparatif-col-bad {
    background: #fef2f2;
    border-left: 1px solid #e5e5e5;
}

.comparatif-col-good {
    background: #f0fdf4;
    border-left: 1px solid #e5e5e5;
}

.comparatif-icon-bad {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fee2e2;
    color: #dc2626;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparatif-icon-good {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
}

.comparatif-title-bad,
.comparatif-title-good {
    font-weight: 700;
    font-size: 0.95rem;
}

.comparatif-title-bad {
    color: #991b1b;
}

.comparatif-title-good {
    color: #166534;
}

.comparatif-price-bad {
    font-size: 0.85rem;
    color: #b91c1c;
    font-weight: 600;
}

.comparatif-price-bad small {
    font-weight: 400;
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.comparatif-price-good {
    font-size: 1.1rem;
    color: #16a34a;
    font-weight: 800;
}

.comparatif-price-good small {
    font-weight: 500;
    font-size: 0.8rem;
}

.comparatif-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s ease;
}

.comparatif-row:last-child {
    border-bottom: none;
}

.comparatif-row:hover {
    background: #fafafa;
}

.comparatif-feature {
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
}

.comparatif-bad {
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #991b1b;
    background: #fef2f2;
    border-left: 1px solid #fde8e8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.comparatif-bad small {
    color: #b91c1c;
    opacity: 0.7;
    font-size: 0.75rem;
    margin-top: 0.15rem;
}

.comparatif-good {
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #166534;
    background: #f0fdf4;
    border-left: 1px solid #dcfce7;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.comparatif-good small {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.15rem;
}

.comparatif-row-total {
    background: #fafafa;
    border-top: 2px solid #e5e5e5;
}

.comparatif-row-total .comparatif-feature {
    font-size: 0.95rem;
}

.comparatif-row-total .comparatif-bad {
    background: #fee2e2;
    font-size: 1rem;
}

.comparatif-row-total .comparatif-good {
    background: #dcfce7;
    font-size: 1rem;
}

.comparatif-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.comparatif-verdict {
    font-size: 1.05rem;
    color: #333;
    max-width: 600px;
}

@media (max-width: 768px) {
    .comparatif-header {
        grid-template-columns: 1fr 1fr;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 0.75rem;
        border: 1px solid #e5e5e5;
    }

    .comparatif-col-label {
        display: none;
    }

    .comparatif-row {
        grid-template-columns: 1fr;
        border-bottom: none;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #e5e5e5;
    }

    .comparatif-row {
        grid-template-columns: 1fr 1fr;
    }

    .comparatif-row .comparatif-feature {
        grid-column: 1 / -1;
        background: #fafafa;
        justify-content: center;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        border-bottom: 1px solid #e5e5e5;
    }

    .comparatif-bad,
    .comparatif-good {
        border-left: none;
    }

    .comparatif-table {
        border: none;
        background: transparent;
    }

    .comparatif-row-total {
        border-top: none;
        margin-top: 0.5rem;
    }

    .comparatif-price-good {
        font-size: 0.95rem;
    }

    .comparatif-verdict {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

/* ===================================
   PRINT
   =================================== */

/* Realisations preview grid */
.realisations-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.realisations-preview-grid > a {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
    background: var(--gray-100);
}
@media (max-width: 768px) {
    .realisations-preview-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .realisations-preview-grid > a > div {
        transform: scale(0.25);
    }
}

@media print {
    .nav, .whatsapp-float, .mobile-cta-bar, .mobile-menu-toggle { display: none !important; }
    .hero { padding-top: 2rem; }
    body { color: #000; }
}

/* ============================================
   MERGED FROM one-shot/css/style.css
   ============================================ */

/* ===================================
   YANNSERVICE — Premium v7.1
   Style: Premium strict (angulaire)
   Palette: 90% neutral + 10% accent
   =================================== */

/* ===================================
   RESET & VARIABLES
   =================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Neutral palette — 90% */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --black: #0A0A0A;

    /* Accent — 10% */
    --accent: #0A0A0A;
    --accent-hover: #262626;

    /* Brand */
    --brand-silver: #B0B0B8;
    --brand-blue: #1B2A4A;

    /* Functional */
    --success: #16A34A;
    --whatsapp: #25D366;

    /* v115 backward-compat aliases */
    --color-primary: #0A0A0A;
    --color-primary-hover: #262626;
    --color-primary-light: #F5F5F5;
    --color-text: #0A0A0A;
    --color-text-secondary: #525252;
    --color-text-tertiary: #737373;
    --color-bg: #FFFFFF;
    --color-bg-secondary: #FAFAFA;
    --color-bg-tertiary: #F5F5F5;
    --color-border: #E5E5E5;
    --color-success: #16A34A;
    --color-success-light: #F0FDF4;
    --color-error: #EF4444;
    --color-error-light: #FEE2E2;
    --color-warning: #F59E0B;
    --color-whatsapp: #25D366;
    --color-urgency: #0A0A0A;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-xl: none;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Radius — premium strict */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;

    /* Transitions */
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   BASE
   =================================== */

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 64px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   LAYOUT
   =================================== */

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* ===================================
   TYPOGRAPHY — Magazine style
   =================================== */

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-lg);
}

.section-label-sm {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.section-subheading {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: var(--space-3xl);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.75rem;
    }

    .section-subheading {
        font-size: 1rem;
        margin-bottom: var(--space-2xl);
    }
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: box-shadow var(--transition);
    will-change: box-shadow;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.nav.scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 28px;
    width: auto;
    max-width: 28px;
    object-fit: contain;
}

/* Brand name — Yann (argent brillant animé) + Service (bleu sombre) */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.brand-yann {
    color: var(--brand-silver);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(105deg, #8E8E96 0%, #C0C0C8 25%, #F0F0F4 50%, #C0C0C8 75%, #8E8E96 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out 1;
}

.brand-service {
    color: var(--brand-blue);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-left: -0.04em;
}

.brand-nova {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 30%, #A78BFA 50%, #7C3AED 70%, #4F46E5 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out 1;
    display: block;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--transition);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--black);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-nav-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-nav-call:hover {
    background: var(--gray-800);
}

.btn-nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-nav-whatsapp:hover {
    border-color: var(--gray-400);
    color: var(--black);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 0;
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        flex-direction: column;
        gap: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
        opacity: 1;
        padding: var(--space-md) var(--space-lg);
        gap: var(--space-sm);
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
        gap: var(--space-xs);
    }

    .nav-cta a {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   BUTTONS — Premium strict
   =================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--gray-800);
}

.btn-primary-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.btn-primary-small:hover {
    background: var(--gray-800);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--black);
}

.btn-primary-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.btn-primary-light:hover {
    background: var(--gray-100);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--whatsapp);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.btn-whatsapp:hover {
    background: #20BD5A;
}

.btn-whatsapp-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    background: var(--whatsapp);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.btn-phone:hover {
    border-color: var(--black);
}

.btn-urgency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

.btn-urgency:hover {
    background: var(--gray-800);
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background var(--transition);
    margin-top: auto;
}

.btn-pricing:hover {
    background: var(--gray-800);
}

.btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.btn-view:hover {
    border-color: var(--black);
}

.btn-submit {
    width: 100%;
    padding: 0.875rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: var(--gray-800);
}

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-primary-light,
    .btn-outline-light,
    .btn-whatsapp,
    .btn-phone,
    .btn-urgency {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

/* ===================================
   HERO — Ultra minimal
   =================================== */

.hero {
    padding: 10rem 0 var(--space-5xl);
    background: var(--white);
}

.hero-content {
    max-width: 720px;
}

.hero-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
    background: none;
    border: none;
    padding: 0;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--black);
    margin-bottom: var(--space-xl);
}

.hero-title .highlight {
    color: var(--black);
}

.hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: var(--space-2xl);
    max-width: 520px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-cta-triple {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-micro-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.hero-micro-proof svg {
    color: var(--success);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 var(--space-3xl);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.03em;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-cta,
    .hero-cta-triple {
        flex-direction: column;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-whatsapp,
    .hero-cta .btn-secondary,
    .hero-cta-triple .btn-primary,
    .hero-cta-triple .btn-whatsapp,
    .hero-cta-triple .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.section-title .highlight {
    color: var(--black);
}

.section-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
}

/* Highlight class */
.highlight {
    color: var(--black);
}

/* ===================================
   SERVICES CARDS
   =================================== */

.services-section {
    padding: var(--space-5xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1080px;
    margin: 0 auto;
}

@media (min-width: 1281px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1080px;
    }

    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        justify-self: center;
        max-width: 340px;
    }
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.service-card:hover {
    border-color: var(--gray-400);
}

.service-card.featured {
    border: 2px solid var(--black);
}

.service-card.urgency {
    border-color: var(--gray-300);
}

.service-card.urgency:hover {
    border-color: var(--gray-400);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.service-badge.urgency {
    background: var(--black);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.service-card .service-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: var(--space-xs);
    white-space: nowrap;
}

.service-card .service-delay {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.service-feature svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

.service-card .btn-primary,
.service-card .btn-urgency {
    width: 100%;
    margin-top: auto;
}

@media (max-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
    }

    .services-grid .service-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 340px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 100%;
        padding: 0 1rem;
    }

    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: auto;
        justify-self: stretch;
        max-width: none;
    }
}

/* ===================================
   PROOF SECTION
   =================================== */

.proof-section {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 880px;
    margin: 0 auto;
}

.proof-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.proof-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.proof-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.03em;
}

.proof-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* ===================================
   SECTION — Problem
   =================================== */

.section-problem {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.problem-content {
    max-width: 800px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.problem-item {
    border-left: 2px solid var(--gray-200);
    padding-left: var(--space-lg);
}

.problem-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.problem-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .section-problem {
        padding: var(--space-4xl) 0;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        margin-top: var(--space-2xl);
    }
}

/* ===================================
   SECTION — Result
   =================================== */

.section-result {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.result-content {
    max-width: 800px;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.result-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.result-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .section-result {
        padding: var(--space-4xl) 0;
    }

    .result-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ===================================
   SECTION — Method (3 steps)
   =================================== */

.section-method {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.method-step {
    position: relative;
}

.method-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.method-step h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.method-step p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .section-method {
        padding: var(--space-4xl) 0;
    }

    .method-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* ===================================
   SECTION — Proof (stats + testimonials)
   =================================== */

.section-proof {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.proof-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-bottom: var(--space-4xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--gray-200);
}

.proof-stat {
    display: flex;
    flex-direction: column;
}

.proof-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1;
}

.proof-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: var(--space-xs);
    line-height: 1.4;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    padding: var(--space-xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-initial,
.author-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    color: var(--gray-600);
    font-weight: 700;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--black);
}

.author-role {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .section-proof {
        padding: var(--space-4xl) 0;
    }

    .proof-stats {
        flex-direction: column;
        gap: var(--space-xl);
        margin-bottom: var(--space-2xl);
        padding-bottom: var(--space-2xl);
    }

    .proof-stat-number {
        font-size: 2rem;
    }

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

/* ===================================
   TESTIMONIALS (shared)
   =================================== */

.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

/* ===================================
   SECTION — Offer
   =================================== */

.section-offer {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 720px;
    margin: 0 auto var(--space-2xl);
    text-align: left;
}

.offer-card {
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
}

.offer-card-primary {
    border-color: var(--black);
    border-width: 2px;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: var(--space-xl);
    padding: 0.25rem 0.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
}

.offer-tag {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
}

.offer-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.offer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex-grow: 1;
}

.offer-list li {
    font-size: 0.875rem;
    color: var(--gray-700);
    padding-left: 1.25rem;
    position: relative;
}

.offer-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 0.8125rem;
}

.offer-note {
    font-size: 0.8125rem;
    color: var(--gray-500);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.offer-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .section-offer {
        padding: var(--space-4xl) 0;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .offer-card {
        padding: var(--space-xl);
    }

    .offer-cta {
        flex-direction: column;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===================================
   SECTION — Guarantees
   =================================== */

.section-guarantees {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.guarantee-item {
    padding-top: var(--space-lg);
    border-top: 2px solid var(--gray-200);
}

.guarantee-item h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.guarantee-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   SECTION — FAQ
   =================================== */

.section-faq {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.section-faq .section-heading {
    margin-bottom: var(--space-3xl);
}

.faq {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    background: transparent;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gray-600);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer-content {
    padding-bottom: var(--space-lg);
}

.faq-answer-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* ===================================
   PROCESS SECTION
   =================================== */

.process {
    padding: var(--space-5xl) 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: 880px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    display: none;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin: 0 auto var(--space-lg);
}

.process-step h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ===================================
   CTA SECTION (dark)
   =================================== */

.section-cta-final {
    padding: var(--space-5xl) 0;
    background: var(--black);
}

.cta-final-content {
    max-width: 560px;
}

.cta-final-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-final-content p {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
}

.cta-final-buttons {
    display: flex;
    gap: var(--space-md);
}

.cta-section {
    padding: var(--space-5xl) 0;
    background: var(--black);
}

.cta-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.0625rem;
    color: var(--gray-400);
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-buttons .btn-white {
    padding: 0.875rem 1.75rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
}

.cta-buttons .btn-white:hover {
    background: var(--gray-100);
}

.cta-buttons .btn-outline-white {
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
}

.cta-buttons .btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .section-cta-final {
        padding: var(--space-4xl) 0;
    }

    .cta-final-content h2,
    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-final-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-white,
    .cta-buttons .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   PRICING
   =================================== */

.pricing {
    padding: var(--space-5xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1080px;
    margin: var(--space-xl) auto 0;
}

.pricing-grid--narrow {
    max-width: 900px;
}

.pricing-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 780px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    position: relative;
    transition: border-color var(--transition);
}

.pricing-card:hover {
    border-color: var(--gray-400);
}

.pricing-card.featured,
.pricing-card.recommended {
    border: 2px solid var(--black);
}

.pricing-badge,
.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: var(--space-lg);
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.pricing-subtitle,
.pricing-description {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.pricing-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: var(--space-lg) 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1;
    white-space: nowrap;
}

.price-delivery {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    line-height: 1.4;
}

.price-period {
    font-size: 0.9375rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: var(--space-sm);
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--success);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.feature-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--success);
}

.feature-item strong {
    color: var(--black);
    font-weight: 600;
}

.feature-item + .feature-item {
    margin-top: var(--space-sm);
}

.pricing-target {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
    margin-bottom: var(--space-lg);
}

.pricing-note {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.pricing-save {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: var(--space-lg);
}

.pricing-card .btn-secondary,
.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid,
    .pricing-grid--two {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* ===================================
   TARIFS PAGE
   =================================== */

.tarifs-hero {
    padding: 8rem 0 3rem;
}

.tarifs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: var(--space-xl);
}

.tarifs-nav .btn-secondary {
    font-size: 0.875rem;
}

.tarifs-section {
    padding: var(--space-3xl) 0;
}

.tarifs-section--alt {
    background: var(--gray-50);
}

.pricing-table-simple {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: 600px;
    margin: var(--space-xl) auto 0;
}

.pricing-row-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-row-simple:last-child {
    border-bottom: none;
}

.pricing-row-simple:hover {
    background: var(--gray-50);
}

.pricing-row-simple.highlighted {
    border: 2px solid var(--black);
    border-radius: var(--radius-md);
}

.pricing-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.125rem;
}

.pricing-info p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.pricing-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
    white-space: nowrap;
}

.pricing-row-simple .inline-badge {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.tarifs-surmesure {
    max-width: 700px;
    margin: var(--space-xl) auto 0;
    text-align: center;
}

.surmesure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.surmesure-item {
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--black);
}

.tarifs-validity {
    margin-top: var(--space-xl);
    color: var(--gray-500);
    font-size: 0.875rem;
    text-align: center;
}

@media (max-width: 768px) {
    .tarifs-hero {
        padding: 7rem 0 2rem;
    }

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

    .pricing-row-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features-section {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 880px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-md);
}

.feature-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   EXAMPLES / PORTFOLIO
   =================================== */

.examples {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1080px;
    margin: 0 auto;
}

.example-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.example-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition);
    cursor: pointer;
}

.example-image:hover .example-overlay {
    opacity: 1;
}

.example-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background: rgba(0,0,0,0.5);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.example-content {
    padding: var(--space-lg);
}

.example-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.example-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .examples-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    padding: var(--space-5xl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    max-width: 1080px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: var(--space-2xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.contact-method:hover {
    border-color: var(--gray-400);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-md);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.contact-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-md) var(--space-lg);
    background: #F0FDF4;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
}

.contact-guarantee svg {
    flex-shrink: 0;
    color: var(--success);
}

.contact-form-wrapper {
    padding: var(--space-2xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: var(--space-lg);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--black);
    transition: border-color var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--black);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23525252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }
}

/* ===================================
   SECTION — PROFILE CARD
   =================================== */

.section-profile {
    padding: var(--space-5xl) 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.profile-card {
    max-width: 680px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    background: var(--gray-50);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.profile-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.profile-role {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.profile-skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-xl);
}

.profile-skill-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
}

.profile-skill-col ul {
    list-style: none;
    padding: 0;
}

.profile-skill-col li {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
    padding: 4px 0;
    position: relative;
    padding-left: 1rem;
}

.profile-skill-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gray-300);
}

.profile-stat {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--black);
    background: var(--gray-100);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: var(--space-md);
    border: 1px solid var(--gray-200);
}

.profile-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 999px;
    transition: background var(--transition), color var(--transition);
}

.profile-link-linkedin {
    background: #0A66C2;
    color: var(--white);
}

.profile-link-linkedin:hover {
    background: #004182;
}

.profile-link-malt {
    background: #FC5656;
    color: var(--white);
}

.profile-link-malt:hover {
    background: #D93636;
}

.profile-link-more {
    color: var(--gray-500);
    padding: 8px 12px;
}

.profile-link-more:hover {
    color: var(--black);
    background: var(--gray-100);
}

@media (max-width: 768px) {
    .profile-card {
        padding: var(--space-xl);
    }

    .profile-skills {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .profile-links {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-link {
        justify-content: center;
    }
}

/* ===================================
   TRUST BLOCK (urgence page)
   =================================== */

.trust-block {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.trust-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    text-align: center;
}

.trust-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xl);
    line-height: 1.4;
}

.trust-content {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    text-align: left;
    margin-bottom: var(--space-xl);
}

.trust-avatar {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-initials {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.trust-info {
    flex: 1;
}

.trust-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.trust-role {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.trust-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-checks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.trust-checks .check-icon {
    flex-shrink: 0;
}

.trust-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.trust-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none;
}

.trust-btn-linkedin {
    background: #0A66C2;
    color: var(--white);
}

.trust-btn-linkedin:hover {
    background: #004182;
}

.trust-btn-malt {
    background: #FC5656;
    color: var(--white);
}

.trust-btn-malt:hover {
    background: #D93636;
}

@media (max-width: 600px) {
    .trust-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .trust-buttons {
        flex-direction: column;
    }

    .trust-btn {
        width: 100%;
    }
}

/* ===================================
   URGENCY SPECIFIC
   =================================== */

.urgency-problems {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.urgency-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 880px;
    margin: 0 auto;
}

.urgency-problem-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.urgency-problem-item svg {
    flex-shrink: 0;
    color: var(--gray-700);
}

.urgency-problem-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--black);
}

@media (max-width: 768px) {
    .urgency-problems-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   A PROPOS — FULL STYLES
   =================================== */

.ap-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.ap-section {
    padding: var(--space-4xl) 0;
}

.ap-section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.ap-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.ap-section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* CTA Button */
.ap-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background var(--transition);
}

.ap-cta-btn:hover {
    background: var(--gray-800);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: var(--space-2xl);
}

/* Hero */
.ap-hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
}

.ap-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.ap-hero-text h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.ap-hero-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.ap-proof-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.ap-proof-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    color: var(--black);
    flex-shrink: 0;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Hero Visual / Cred Panel */
.ap-hero-visual {
    position: relative;
}

.ap-cred-panel {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.ap-cred-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.ap-cred-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
}

.ap-cred-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.ap-cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.ap-cred-col h3 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: var(--space-sm);
}

.ap-cred-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.ap-cred-list li {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.ap-cred-divider {
    height: 1px;
    background: var(--gray-200);
    margin: var(--space-lg) 0;
}

.ap-cred-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.ap-check-item,
.ap-code-item,
.ap-standard-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--gray-700);
}

.ap-check-dot {
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Positioning */
.ap-positioning-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.ap-positioning-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.ap-positioning-title .accent {
    color: var(--gray-500);
}

.ap-positioning-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.ap-positioning-highlight {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-xl);
    display: inline-block;
}

/* Method Grid */
.ap-method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.ap-method-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.ap-method-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.ap-method-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.ap-method-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Cycle Steps */
.ap-cycle-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.ap-cycle-step {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
}

.ap-cycle-badge {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.ap-cycle-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
}

.ap-cycle-arrow {
    font-size: 1.25rem;
    color: var(--gray-400);
    font-weight: 700;
}

/* Standard Grid */
.ap-standard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm) var(--space-2xl);
    max-width: 720px;
    margin: 0 auto;
}

/* Skills Grid */
.ap-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.ap-skill-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.ap-skill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    color: var(--black);
}

.ap-skill-content h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.ap-skill-content p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.ap-skill-content .result {
    font-weight: 600;
    color: var(--gray-600);
}

/* Trust Grid */
.ap-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.ap-trust-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.ap-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin: 0 auto var(--space-md);
    color: var(--black);
}

.ap-trust-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.ap-trust-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Guarantees */
.ap-guarantees {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.ap-guarantees h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.ap-guarantees-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.ap-guarantees-list li {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.ap-guarantees-note {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: var(--space-md);
    font-style: italic;
}

.ap-note-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    text-align: center;
}

/* About Short */
.ap-about-short {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.ap-about-short h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.ap-about-short p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Stack Grid */
.ap-stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.ap-stack-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.ap-stack-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.ap-stack-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Code List */
.ap-code-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 640px;
    margin: 0 auto;
}

/* Final CTA */
.ap-final-cta {
    padding: var(--space-4xl) 0;
    background: var(--black);
}

.ap-final-cta-content {
    text-align: center;
}

.ap-final-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.ap-final-cta-content p {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
}

.ap-final-cta .ap-cta-btn {
    background: var(--white);
    color: var(--black);
}

.ap-final-cta .ap-cta-btn:hover {
    background: var(--gray-100);
}

.ap-cta-reassurance {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: var(--space-md);
}

/* Responsive A Propos */
@media (max-width: 768px) {
    .ap-hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .ap-hero-text h1 {
        font-size: 1.75rem;
    }

    .ap-section-title {
        font-size: 1.5rem;
    }

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

    .ap-skills-grid {
        grid-template-columns: 1fr;
    }

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

    .ap-stack-grid {
        grid-template-columns: 1fr;
    }

    .ap-standard-grid {
        grid-template-columns: 1fr;
    }

    .ap-cycle-steps {
        flex-direction: column;
    }

    .ap-cycle-arrow {
        transform: rotate(90deg);
    }

    .ap-cred-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ap-method-grid {
        grid-template-columns: 1fr;
    }

    .ap-trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   AP-PROFILE (dark card)
   =================================== */

.ap-profile {
    padding: var(--space-5xl) var(--space-lg);
    background: var(--gray-50);
}

.ap-profile-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
}

.ap-profile-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    text-align: center;
    color: var(--white);
    letter-spacing: -0.02em;
}

.ap-profile-content {
    display: flex;
    gap: var(--space-2xl);
    align-items: flex-start;
}

.ap-profile-avatar {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-md);
    background: var(--black);
    color: var(--white);
    font-weight: 800;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ap-profile-info h3 {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.ap-profile-role {
    margin: 0 0 var(--space-md);
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.ap-profile-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.75;
}

.ap-profile-checks li {
    margin-bottom: 0.25rem;
}

.ap-profile-checks li::before {
    content: "\2713 ";
    color: var(--success);
    font-weight: bold;
}

.ap-profile-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.ap-profile-btn {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition);
}

.ap-profile-btn.linkedin {
    background: #0A66C2;
    color: var(--white);
}

.ap-profile-btn.linkedin:hover {
    background: #004182;
}

.ap-profile-btn.malt {
    background: transparent;
    border: 1px solid var(--gray-600);
    color: var(--gray-300);
}

.ap-profile-btn.malt:hover {
    border-color: var(--gray-400);
    color: var(--white);
}

@media (max-width: 768px) {
    .ap-profile-card {
        padding: var(--space-xl);
    }

    .ap-profile-title {
        font-size: 1.375rem;
    }

    .ap-profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-xl);
    }

    .ap-profile-links {
        justify-content: center;
    }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: var(--space-xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
    .footer {
        padding-bottom: calc(var(--space-xl) + 72px);
    }
}

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

.footer-copy {
    font-size: 0.8125rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-copy .brand-yann {
    background: linear-gradient(105deg, #7A7A82 0%, #9A9AA2 25%, #C8C8D0 50%, #9A9AA2 75%, #7A7A82 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out 1;
    font-size: 0.8125rem;
}

.footer-copy .brand-service {
    font-size: 0.8125rem;
}

.footer-links,
.footer-right {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a,
.footer-link {
    font-size: 0.8125rem;
    color: var(--gray-500);
    transition: color var(--transition);
    text-decoration: none;
}

.footer-links a:hover,
.footer-link:hover {
    color: var(--black);
}

.footer-left p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-left .brand-yann {
    background: linear-gradient(105deg, #7A7A82 0%, #9A9AA2 25%, #C8C8D0 50%, #9A9AA2 75%, #7A7A82 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out 1;
    font-size: 0.8125rem;
}

.footer-left .brand-service {
    font-size: 0.8125rem;
}

.footer-left .brand-nova,
.footer-copy + .brand-nova {
    display: block;
    font-size: 0.5625rem;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-links,
    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .footer-link {
        font-size: 0.8125rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ===================================
   STICKY MOBILE CTA
   =================================== */

.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    z-index: 9999;
    padding: 8px 12px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
        gap: 8px;
        justify-content: center;
    }
}

.sticky-mobile-cta-content {
    display: flex;
    gap: 8px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.sticky-btn {
    flex: 1;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
}

.sticky-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.sticky-btn-call {
    background: var(--black);
    color: var(--white);
}

.sticky-btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.sticky-btn-devis {
    background: var(--gray-100);
    color: var(--black);
    border: 1px solid var(--gray-200);
}

/* ===================================
   PAGE HEADER (service pages)
   =================================== */

.page-header {
    padding: 10rem 0 4rem;
    background: var(--white);
    text-align: center;
}

.page-header-content {
    max-width: 680px;
    margin: 0 auto;
}

.page-header .hero-cta {
    justify-content: center;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.page-header h1 .highlight {
    color: var(--black);
}

.page-header h1 .urgency {
    color: var(--black);
}

.page-header p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .page-header {
        padding: 7rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-page {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-lg);
}

.legal-section {
    margin-bottom: var(--space-2xl);
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.legal-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.legal-section ul {
    list-style: disc;
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-section li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-xs);
}

.legal-section a {
    color: var(--black);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 0 3rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }
}

/* ===================================
   MODAL
   =================================== */

/* Generic modal overlay (forms, dialogs) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Gallery modal (examples) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.modal .modal-content {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal .modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: var(--radius-sm);
    z-index: 3;
    cursor: pointer;
    border: none;
}

.modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.modal-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 80vh;
}

.modal-gallery img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.modal-nav {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.modal-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition);
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Generic modal content (forms) */
.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 440px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    color: var(--gray-400);
    padding: 4px;
    border-radius: var(--radius-sm);
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--black);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.modal-subtitle {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

/* ===================================
   TOAST NOTIFICATIONS
   =================================== */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast {
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: all;
    animation: slideIn 0.2s ease;
    border-left: 3px solid var(--black);
}

.toast.success {
    border-left-color: var(--success);
}

.toast.error {
    border-left-color: #EF4444;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast.removing {
    animation: slideOut 0.2s ease forwards;
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.toast-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.toast-content { flex: 1; }

.toast-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--black);
}

.toast-message {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.toast-close {
    flex-shrink: 0;
    color: var(--gray-400);
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .toast-container {
        top: auto;
        bottom: 90px;
        right: 12px;
        left: 12px;
    }

    .toast {
        min-width: auto;
        max-width: none;
    }
}

/* ===================================
   RESPONSIVE — Global
   =================================== */

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    select,
    textarea {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp,
    .btn-phone,
    .btn-urgency {
        min-height: 48px;
    }

    .btn-submit {
        min-height: 52px;
    }
}

/* Safe Area (iPhone X+) */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        body {
            padding-bottom: max(64px, calc(64px + env(safe-area-inset-bottom)));
        }

        .sticky-mobile-cta {
            padding-bottom: max(8px, calc(8px + env(safe-area-inset-bottom)));
        }
    }
}

/* Small Mobile (320-480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero {
        padding: 6rem 0 var(--space-3xl);
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .page-header {
        padding: 6rem 0 2rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: var(--space-lg);
        min-width: 0;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .services-grid {
        overflow: hidden;
    }

    .service-card .service-price {
        white-space: normal !important;
        font-size: 1.4rem;
    }

    .service-card .btn-primary,
    .service-card .btn-urgency {
        white-space: normal !important;
    }

    .service-card h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
    }

    .service-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .page-header {
        padding: 5rem 0 2rem;
    }

    .sticky-mobile-cta {
        padding: 8px 12px;
    }

    .sticky-btn {
        flex-direction: row;
        gap: 6px;
        padding: 6px 12px;
        min-height: 44px;
    }
}

/* ===================================
   REFONTE PAGE — Checklist, Result, Grid
   =================================== */

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 720px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.checklist-item svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

/* Refonte 6 cards grid */
.refonte-grid {
    grid-template-columns: repeat(3, 1fr);
}

.refonte-grid .service-card p {
    flex-grow: 0;
    margin-bottom: 0;
}

@media (max-width: 1280px) {
    .refonte-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .refonte-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Result case block */
.result-case {
    max-width: 680px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.result-case-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.result-case-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.result-case-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.03em;
}

.result-case-label {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

/* Pricing footer note */
.pricing-footer-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: var(--space-xl);
}

/* Service badge "Nouveau" */
.service-badge.nouveau {
    background: var(--success);
}

/* Homepage 4-card grid — 2x2 */
.services-grid.services-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 900px !important;
    margin: 0 auto;
}

.services-grid--four .service-card:nth-child(4),
.services-grid--four .service-card:nth-child(5) {
    justify-self: stretch !important;
    max-width: none !important;
    grid-column: auto !important;
}

@media (max-width: 768px) {
    .services-grid.services-grid--four {
        grid-template-columns: minmax(0, 1fr) !important;
        max-width: 100% !important;
        padding: 0 1rem;
    }

    .services-grid--four .service-card {
        max-width: 100% !important;
        min-width: 0 !important;
    }
}

.testimonials-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonials-grid--two {
        grid-template-columns: 1fr;
    }
}

.cta-sub-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: calc(-1 * var(--space-lg));
    margin-bottom: var(--space-xl);
}

.cta-sub-link {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cta-sub-link:hover {
    color: var(--gray-300);
}

/* ===================================
   PERFORMANCE — Scroll fluide & GPU
   =================================== */

/* Animations d'apparition au scroll */
.fade-in-up {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Stagger delays pour les grilles */
.fade-in-up:nth-child(1) { transition-delay: 0ms; }
.fade-in-up:nth-child(2) { transition-delay: 80ms; }
.fade-in-up:nth-child(3) { transition-delay: 160ms; }
.fade-in-up:nth-child(4) { transition-delay: 240ms; }
.fade-in-up:nth-child(5) { transition-delay: 320ms; }
.fade-in-up:nth-child(6) { transition-delay: 400ms; }

/* GPU acceleration pour éléments interactifs */
.service-card,
.pricing-card,
.testimonial-card,
.proof-card,
.process-step,
.example-card,
.feature-card,
.faq-item {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Images fluides */
img {
    content-visibility: auto;
}

/* Sections — optimisation rendu */
section {
    contain: layout style;
}

/* ===================================
   MODALE DETAIL ABONNEMENTS — Cartes
   =================================== */

/* ── Modale détail abonnements ── */
#modalDetailAbonnements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 1.5rem;
}

#modalDetailAbonnements.active {
    display: flex;
}

.modal-detail-inner {
    background: var(--white);
    border-radius: 16px;
    max-width: 1060px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2.5rem 2.5rem 2rem;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.modal-close-btn {
    position: sticky;
    top: 0;
    float: right;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-500);
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -40px;
}

.modal-close-btn:hover {
    color: var(--black);
    background: var(--gray-100);
}

.modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.35rem;
    padding-right: 3rem;
}

.modal-subtitle {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.modal-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.modal-card {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    position: relative;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.modal-card--featured {
    border: 2px solid var(--black);
}

.modal-card-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 0.2rem 0.85rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.modal-card-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-card-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.15rem;
}

.modal-card-tagline {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.modal-card-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
    display: inline-block;
}

.modal-card-price small {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
}

.modal-card-section {
    margin-bottom: 1rem;
}

.modal-card-section:last-of-type {
    flex: 1;
}

.modal-card-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.modal-card-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-card-section li {
    font-size: 0.8rem;
    padding: 0.35rem 0;
    padding-left: 1.35rem;
    position: relative;
    color: var(--gray-600);
    line-height: 1.45;
}

.modal-card-section li::before {
    position: absolute;
    left: 0;
    font-size: 0.75rem;
}

.modal-card-section li.included::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

.modal-card-section li.excluded::before {
    content: "✗";
    color: var(--gray-400);
}

.modal-card-section li.excluded {
    color: var(--gray-400);
    text-decoration: line-through;
}

.modal-card-section li.neutral::before {
    content: "–";
    color: var(--gray-500);
}

.modal-card-section li strong {
    color: var(--black);
}

.modal-card-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: center;
}

/* ── Tablette paysage (769px - 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
    #modalDetailAbonnements {
        padding: 1rem;
    }

    .modal-detail-inner {
        padding: 2rem 1.75rem;
        max-height: 92vh;
        max-width: 720px;
    }

    .modal-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Sur tablette, on rend les cartes plus compactes en layout horizontal */
    .modal-card {
        padding: 1.25rem;
        display: grid;
        grid-template-columns: 200px 1fr;
        grid-template-rows: auto;
        gap: 0 1.5rem;
    }

    .modal-card-header {
        grid-column: 1;
        grid-row: 1 / -1;
        border-bottom: none;
        border-right: 1px solid var(--gray-200);
        padding-right: 1.5rem;
        padding-bottom: 0;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .modal-card-section,
    .modal-card-footer {
        grid-column: 2;
    }

    .modal-card-badge {
        top: -10px;
        left: auto;
        right: 1rem;
        transform: none;
    }
}

/* ── Tablette portrait / Grand mobile (481px - 768px) ── */
@media (min-width: 481px) and (max-width: 768px) {
    #modalDetailAbonnements {
        padding: 0.75rem;
        align-items: center;
    }

    .modal-detail-inner {
        padding: 2rem 1.5rem 1.5rem;
        max-height: 90vh;
        max-width: 560px;
    }

    .modal-title {
        font-size: 1.2rem;
        padding-right: 3rem;
    }

    .modal-subtitle {
        margin-bottom: 1.5rem;
    }

    .modal-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal-card {
        padding: 1.25rem;
    }

    .modal-card-price {
        font-size: 1.5rem;
    }
}

/* ── Mobile (max 480px) ── */
@media (max-width: 480px) {
    #modalDetailAbonnements {
        padding: 0;
        align-items: flex-end;
    }

    .modal-detail-inner {
        padding: 1.25rem 1rem 6rem;
        max-height: 95vh;
        border-radius: 20px 20px 0 0;
        max-width: 100%;
    }

    .modal-close-btn {
        position: sticky;
        top: 0;
        width: 36px;
        height: 36px;
        margin-bottom: -36px;
    }

    .modal-close-btn svg {
        width: 18px;
        height: 18px;
    }

    .modal-title {
        font-size: 1.1rem;
        padding-right: 3rem;
        line-height: 1.3;
    }

    .modal-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }

    .modal-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .modal-card {
        padding: 1rem;
        border-radius: 10px;
    }

    .modal-card-header {
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .modal-card-header h4 {
        font-size: 1rem;
    }

    .modal-card-tagline {
        font-size: 0.75rem;
    }

    .modal-card-price {
        font-size: 1.4rem;
    }

    .modal-card-price small {
        font-size: 0.8rem;
    }

    .modal-card-section li {
        font-size: 0.78rem;
        padding: 0.25rem 0;
        padding-left: 1.2rem;
    }

    .modal-card-label {
        font-size: 0.65rem;
        margin-bottom: 0.35rem;
    }

    .modal-card-footer {
        font-size: 0.7rem;
        padding-top: 0.6rem;
    }

    .modal-card-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.7rem;
    }
}

/* ===================================
   MOBILE OPTIMISATION COMPLETE
   =================================== */

@media (max-width: 768px) {
    /* Réduction padding sections sur mobile */
    .services-section,
    .features-section,
    .proof-section,
    .process,
    .pricing,
    .examples,
    .faq-section,
    .cta-section,
    .tarifs-section {
        padding: var(--space-3xl) 0;
    }

    /* Section header plus compact */
    .section-header {
        margin-bottom: var(--space-xl);
    }

    /* Pricing cards mobile */
    .pricing-card {
        padding: var(--space-xl) var(--space-lg);
    }

    .price-amount {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.875rem;
    }

    .pricing-badge,
    .recommended-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.75rem;
    }

    /* Refonte grid 6 cartes — 2 colonnes sur mobile */
    .refonte-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0;
    }

    /* Carte maintenance responsive */
    .maintenance-card-inline {
        padding: 1.25rem 1rem;
        margin: 1.5rem 1rem 0;
    }

    .maintenance-card-inline p {
        font-size: 0.85rem;
    }

    /* Process steps */
    .process-step {
        padding: var(--space-lg);
    }

    /* Proof cards compact */
    .proof-card {
        padding: var(--space-lg);
    }

    .proof-card h3 {
        font-size: 1.5rem;
    }

    /* FAQ items */
    .faq-question {
        font-size: 0.9375rem;
        padding: var(--space-md) 0;
    }

    /* Result case */
    .result-case {
        padding: var(--space-lg);
    }

    .result-case-number {
        font-size: 1.5rem;
    }

    /* Surmesure grid */
    .surmesure-grid {
        grid-template-columns: 1fr;
    }

    /* Animations plus légères sur mobile */
    .fade-in-up {
        transform: translate3d(0, 15px, 0);
        transition-duration: 0.4s;
    }

    .fade-in-up:nth-child(1),
    .fade-in-up:nth-child(2),
    .fade-in-up:nth-child(3),
    .fade-in-up:nth-child(4),
    .fade-in-up:nth-child(5),
    .fade-in-up:nth-child(6) {
        transition-delay: 0ms;
    }
}

/* ===================================
   CHOICE SECTION (2 offres home)
   =================================== */

.choice-section {
    padding: var(--space-5xl) 0;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 960px;
    margin: 0 auto;
}

.choice-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.choice-item .choice-card {
    flex: 1;
}

.choice-question {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-500);
    text-align: center;
    margin: 0;
    letter-spacing: -0.01em;
}

.choice-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-3xl) var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.choice-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.choice-card.choice-urgence {
    border-color: var(--gray-200);
}

.choice-card.choice-urgence:hover {
    border-color: #DC2626;
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.12);
}

.choice-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
    transition: background var(--transition), color var(--transition);
}

.choice-card.choice-urgence .choice-icon {
    background: #FEE2E2;
    color: #DC2626;
}

.choice-card:hover .choice-icon {
    background: var(--black);
    color: var(--white);
}

.choice-card.choice-urgence:hover .choice-icon {
    background: #DC2626;
    color: var(--white);
}

.choice-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.choice-baseline {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.choice-or {
    color: var(--gray-400);
    font-weight: 500;
    padding: 0 0.25rem;
}

.choice-tagline {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--gray-500);
    margin-bottom: var(--space-2xl);
    line-height: 1.5;
    flex-grow: 1;
}

.choice-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-top: auto;
    transition: gap var(--transition);
}

.choice-card:hover .choice-cta {
    gap: 0.75rem;
}

.choice-card.choice-urgence .choice-cta {
    color: #DC2626;
}

@media (max-width: 768px) {
    .choice-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0 1rem;
    }

    .choice-card {
        padding: var(--space-2xl) var(--space-xl);
    }

    .choice-title {
        font-size: 1.5rem;
    }

    .choice-baseline {
        font-size: 1rem;
    }

    .choice-icon {
        width: 56px;
        height: 56px;
    }

    .choice-icon svg {
        width: 36px;
        height: 36px;
    }
}


/* ============================================
   MERGED FROM one-shot/css/style-propos.css
   ============================================ */

/* ===================================
   PAGE À PROPOS - DESIGN SOMBRE PREMIUM
   Yann WZ Service
   =================================== */

:root {
    --ap-dark: #0A0A0A;
    --ap-dark-card: #141414;
    --ap-dark-border: #262626;
    --ap-accent: #0066FF;
    --ap-accent-hover: #0052CC;
    --ap-text: #FAFAFA;
    --ap-text-secondary: #A3A3A3;
    --ap-text-muted: #737373;
}

/* ===================================
   PAGE OVERRIDE - BODY & NAV
   =================================== */
.page-apropos {
    background: var(--ap-dark);
    color: var(--ap-text);
}

.page-apropos .nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ap-dark-border);
}

.page-apropos .nav-link {
    color: var(--ap-text-secondary);
}

.page-apropos .nav-link:hover {
    color: var(--ap-text);
}

.page-apropos .logo {
    color: var(--ap-text);
}

/* ===================================
   CONTAINER
   =================================== */
.ap-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================================
   SECTION 1 - HERO
   =================================== */
.ap-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.ap-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ap-hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.ap-hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--ap-text);
}

.ap-hero-text h1 .accent {
    color: var(--ap-accent);
}

.ap-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--ap-text-secondary);
    margin-bottom: 2.5rem;
}

/* ===================================
   PROOF BADGES
   =================================== */
.ap-proof-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ap-proof-badge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.ap-proof-badge:hover {
    border-color: var(--ap-accent);
    transform: translateX(4px);
}

.ap-proof-badge .badge-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    color: var(--ap-accent);
    flex-shrink: 0;
}

.ap-proof-badge .badge-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ap-text);
}

/* ===================================
   HERO VISUAL - DASHBOARD MOCKUP
   =================================== */
.ap-hero-visual {
    position: relative;
}

.ap-hero-visual-card {
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.ap-hero-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ap-accent), #00D4FF);
}



/* ===================================
   HERO VISUAL - PANEL CREDIBILITE
   =================================== */
.ap-cred-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ap-dark-border);
}

.ap-cred-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ap-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ap-cred-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ap-text-muted);
    padding: 0.35rem 0.6rem;
    border: 1px solid var(--ap-dark-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.ap-cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.ap-cred-col h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--ap-text);
}

.ap-cred-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--ap-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.45;
}

.ap-cred-list li {
    position: relative;
    padding-left: 1.1rem;
}

.ap-cred-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ap-accent);
}

.ap-cred-divider {
    height: 1px;
    background: var(--ap-dark-border);
    margin: 1.5rem 0 1.25rem;
}

.ap-check-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 255, 0.35);
    background: rgba(0, 102, 255, 0.10);
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.ap-check-dot::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 6px;
    height: 9px;
    border-right: 2px solid var(--ap-accent);
    border-bottom: 2px solid var(--ap-accent);
    transform: rotate(40deg);
}

.ap-cred-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.ap-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--ap-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ===================================
   MICRO-SECTION - STANDARD
   =================================== */
.ap-standard {
    background: var(--ap-dark);
}

.ap-standard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.ap-standard-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   OUTILS - VISUEL MODULES (PAS DE STATS)
   =================================== */
.ap-tools-modules {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ap-module-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--ap-dark-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
}

.ap-module-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ap-accent);
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 255, 0.25);
    background: rgba(0, 102, 255, 0.08);
    flex-shrink: 0;
}

/* ===================================
   CTA BUTTON
   =================================== */
.ap-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: var(--ap-accent);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ap-cta-btn:hover {
    background: var(--ap-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    color: white;
}

.ap-cta-btn svg {
    transition: transform 0.2s ease;
}

.ap-cta-btn:hover svg {
    transform: translateX(4px);
}

/* ===================================
   SECTIONS COMMUNES
   =================================== */
.ap-section {
    padding: 100px 0;
    position: relative;
}

.ap-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ap-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ap-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ap-section-subtitle {
    font-size: 1.125rem;
    color: var(--ap-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   SECTION 2 - POSITIONNEMENT
   =================================== */
.ap-positioning {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}

.ap-positioning-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ap-positioning-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--ap-text);
    margin-bottom: 2rem;
}

.ap-positioning-title .accent {
    color: var(--ap-accent);
}

.ap-positioning-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--ap-text-secondary);
    margin-bottom: 1.5rem;
}

.ap-positioning-highlight {
    display: inline-block;
    padding: 1.25rem 2rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ap-accent);
    margin-top: 1rem;
}

/* ===================================
   SECTION 3 - METHODE
   =================================== */
.ap-method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ap-method-card {
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.ap-method-card:hover {
    border-color: var(--ap-accent);
    transform: translateY(-4px);
}

.ap-method-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ap-accent);
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.ap-method-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ap-text);
    margin-bottom: 0.75rem;
}

.ap-method-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ap-text-secondary);
    margin: 0;
}

/* ===================================
   SECTION 4 - COMPETENCES
   =================================== */
.ap-skills {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}

.ap-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ap-skill-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.ap-skill-card:hover {
    border-color: var(--ap-accent);
    background: rgba(0, 102, 255, 0.03);
}

.ap-skill-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    color: var(--ap-accent);
    flex-shrink: 0;
}

.ap-skill-content h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ap-text);
    margin-bottom: 0.5rem;
}

.ap-skill-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ap-text-secondary);
    margin: 0;
}

.ap-skill-content p .result {
    color: var(--ap-accent);
    font-weight: 500;
}

/* ===================================
   SECTION 5 - OUTILS SUR MESURE
   =================================== */
.ap-tools-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ap-tools-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--ap-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ap-tools-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--ap-text-secondary);
    margin-bottom: 2rem;
}

.ap-tools-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ap-tools-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ap-text);
    transition: all 0.2s ease;
}

.ap-tools-item:hover {
    border-color: var(--ap-accent);
    transform: translateX(4px);
}

.ap-tools-item svg {
    color: var(--ap-accent);
    flex-shrink: 0;
}

.ap-tools-visual {
    position: relative;
}

.ap-tools-card {
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.ap-tools-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ap-accent), transparent);
}

.ap-tools-mockup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ap-mockup-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.ap-mockup-label {
    width: 100px;
    font-size: 0.75rem;
    color: var(--ap-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ap-mockup-bar {
    flex: 1;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--ap-dark-border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.ap-mockup-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ap-accent), rgba(0, 102, 255, 0.5));
    border-radius: 8px;
}

.ap-mockup-row:nth-child(1) .ap-mockup-fill { width: 85%; }
.ap-mockup-row:nth-child(2) .ap-mockup-fill { width: 70%; }
.ap-mockup-row:nth-child(3) .ap-mockup-fill { width: 92%; }
.ap-mockup-row:nth-child(4) .ap-mockup-fill { width: 65%; }

/* ===================================
   SECTION 6 - FIABILITE
   =================================== */
.ap-trust {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}

.ap-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ap-trust-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.ap-trust-card:hover {
    border-color: var(--ap-accent);
}

.ap-trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 14px;
    color: var(--ap-accent);
    margin: 0 auto 1.25rem;
}

.ap-trust-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ap-text);
    margin-bottom: 0.5rem;
}

.ap-trust-card p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--ap-text-secondary);
    margin: 0;
}

/* ===================================
   SECTION 7 - ABOUT SHORT
   =================================== */
.ap-about-short {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ap-about-short h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ap-text);
    margin-bottom: 1.5rem;
}

.ap-about-short p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--ap-text-secondary);
}

/* ===================================
   SECTION 8 - CTA FINAL
   =================================== */
.ap-final-cta {
    text-align: center;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--ap-dark) 0%, #0D1117 100%);
    position: relative;
    overflow: hidden;
}

.ap-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ap-final-cta-content {
    position: relative;
    z-index: 1;
}

.ap-final-cta h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--ap-text);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.ap-final-cta h2 .accent {
    color: var(--ap-accent);
}

.ap-final-cta-content > p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--ap-text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.ap-final-cta .ap-cta-btn {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.ap-cta-reassurance {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--ap-text-muted);
}

/* ===================================
   FOOTER OVERRIDE
   =================================== */
.page-apropos .footer {
    background: #050505;
    border-top: 1px solid var(--ap-dark-border);
}

.page-apropos .footer-content {
    color: var(--ap-text-secondary);
}

.page-apropos .footer-link {
    color: var(--ap-text-secondary);
}

.page-apropos .footer-link:hover {
    color: var(--ap-text);
}

/* ===================================
   STICKY CTA OVERRIDE
   =================================== */
.page-apropos .sticky-mobile-cta {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--ap-dark-border);
}

/* ===================================
   RESPONSIVE - TABLETTE
   =================================== */
@media (max-width: 1024px) {
    .ap-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ap-hero-text h1 {
        font-size: 2.5rem;
    }

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

    .ap-skills-grid {
        grid-template-columns: 1fr;
    }

    .ap-tools-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 768px) {
    .ap-hero {
        padding: 140px 0 80px;
    }

    .ap-hero-text h1 {
        font-size: 2rem;
    }

    .ap-hero-subtitle {
        font-size: 1.0625rem;
    }

    .ap-section {
        padding: 80px 0;
    }

    .ap-section-title {
        font-size: 1.75rem;
    }

    .ap-method-grid {
        grid-template-columns: 1fr;
    }

    .ap-trust-grid {
        grid-template-columns: 1fr;
    }

    .ap-final-cta {
        padding: 80px 0;
    }

    .ap-final-cta h2 {
        font-size: 1.75rem;
    }

    .ap-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .ap-positioning-title {
        font-size: 1.75rem;
    }

    .ap-tools-text h2 {
        font-size: 1.75rem;
    }

    .ap-proof-badge {
        padding: 0.875rem 1rem;
    }

    .ap-proof-badge .badge-icon {
        width: 40px;
        height: 40px;
    }

    .ap-proof-badge .badge-text {
        font-size: 0.875rem;
    }

    .ap-dashboard-stats {
        gap: 0.75rem;
    }

    .ap-stat-card {
        padding: 1rem;
    }

    .ap-stat-value {
        font-size: 1.5rem;
    }

    .ap-method-card {
        padding: 1.5rem;
    }

    .ap-skill-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .ap-skill-icon {
        margin: 0 auto;
    }

    .ap-tools-item {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .ap-mockup-label {
        width: 80px;
        font-size: 0.6875rem;
    }

    .ap-mockup-bar {
        height: 30px;
    }


    .ap-standard-grid { grid-template-columns: 1fr; }
}

/* ===================================
   RESPONSIVE - PETIT MOBILE
   =================================== */
@media (max-width: 480px) {
    .ap-container {
        padding: 0 1rem;
    }

    .ap-hero-text h1 {
        font-size: 1.75rem;
    }

    .ap-section-title {
        font-size: 1.5rem;
    }

    .ap-positioning-title {
        font-size: 1.5rem;
    }

    .ap-final-cta h2 {
        font-size: 1.5rem;
    }

    .ap-about-short h2 {
        font-size: 1.5rem;
    }

    .ap-tools-text h2 {
        font-size: 1.5rem;
    }
}



/* ===================================
   BLOC - CYCLE D'AMELIORATION CONTINUE
   =================================== */
.ap-cycle {
    background: var(--ap-dark);
}
.ap-cycle-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}
.ap-cycle-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text);
}
.ap-cycle-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.25);
    color: var(--ap-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.ap-cycle-text {
    color: var(--ap-text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}
.ap-cycle-arrow {
    color: var(--ap-text-muted);
    font-weight: 700;
}

/* ===================================
   BLOC - STACK TECHNIQUE
   =================================== */
.ap-stack {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}
.ap-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.ap-stack-card {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.ap-stack-card:hover {
    border-color: var(--ap-accent);
    background: rgba(0, 102, 255, 0.03);
    transform: translateY(-2px);
}
.ap-stack-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ap-text);
}
.ap-stack-card p {
    margin: 0;
    color: var(--ap-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   BLOC - CODE -> RESULTAT BUSINESS
   =================================== */
.ap-code-business {
    background: var(--ap-dark);
}
.ap-code-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.ap-code-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   BLOC - GARANTIES
   =================================== */
.ap-guarantees {
    margin-top: 2.5rem;
    padding: 2rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 16px;
}
.ap-guarantees h3 {
    margin: 0 0 1rem;
    color: var(--ap-text);
    font-weight: 800;
    font-size: 1.125rem;
}
.ap-guarantees-list {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    color: var(--ap-text-secondary);
    line-height: 1.7;
}
.ap-guarantees-note {
    margin: 0;
    color: var(--ap-text-muted);
    line-height: 1.7;
}

/* ===================================
   BLOC - POUR QUI
   =================================== */
.ap-who {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}

/* ===================================
   BANDEAU - RAPIDITE
   =================================== */
.ap-speed-band {
    padding: 40px 0;
    background: rgba(0, 102, 255, 0.06);
    border-top: 1px solid rgba(0, 102, 255, 0.18);
    border-bottom: 1px solid rgba(0, 102, 255, 0.18);
}
.ap-speed-items {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.ap-speed-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.15rem;
    background: rgba(10, 10, 10, 0.35);
    border: 1px solid rgba(0, 102, 255, 0.18);
    border-radius: 999px;
    color: var(--ap-text);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===================================
   RESPONSIVE - NEW BLOCKS
   =================================== */
@media (max-width: 768px) {
    .ap-stack-grid { grid-template-columns: 1fr; }
    .ap-code-list { grid-template-columns: 1fr; }
    .ap-cycle-arrow { display: none; }
}

   <style>
        /* ===================================
           PAGE À PROPOS - DESIGN SOMBRE PREMIUM
           =================================== */

        :root {
            --ap-dark: #0A0A0A;
            --ap-dark-card: #141414;
            --ap-dark-border: #262626;
            --ap-accent: #0066FF;
            --ap-accent-hover: #0052CC;
            --ap-text: #FAFAFA;
            --ap-text-secondary: #A3A3A3;
            --ap-text-muted: #737373;
        }

        /* Override body pour cette page */
        .page-apropos {
            background: var(--ap-dark);
            color: var(--ap-text);
        }

        .page-apropos .nav {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--ap-dark-border);
        }

        .page-apropos .nav-link {
            color: var(--ap-text-secondary);
        }

        .page-apropos .nav-link:hover {
            color: var(--ap-text);
        }

        .page-apropos .logo {
            color: var(--ap-text);
        }

        /* Container spécifique */
        .ap-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* ===================================
           SECTION 1 - HERO
           =================================== */
        .ap-hero {
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .ap-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at top right, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .ap-hero-content {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }

        .ap-hero-text h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            color: var(--ap-text);
        }

        .ap-hero-text h1 .accent {
            color: var(--ap-accent);
        }

        .ap-hero-subtitle {
            font-size: 1.25rem;
            line-height: 1.7;
            color: var(--ap-text-secondary);
            margin-bottom: 2.5rem;
        }

        .ap-proof-badges {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .ap-proof-badge {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 1rem 1.25rem;
            background: var(--ap-dark-card);
            border: 1px solid var(--ap-dark-border);
            border-radius: 12px;
            transition: all 0.2s ease;
        }

        .ap-proof-badge:hover {
            border-color: var(--ap-accent);
            transform: translateX(4px);
        }

        .ap-proof-badge .badge-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 102, 255, 0.1);
            border-radius: 10px;
            color: var(--ap-accent);
            flex-shrink: 0;
        }

        .ap-proof-badge .badge-text {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--ap-text);
        }

        .ap-hero-visual {
            position: relative;
        }

        .ap-hero-visual-card {
            background: var(--ap-dark-card);
            border: 1px solid var(--ap-dark-border);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .ap-hero-visual-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--ap-accent), #00D4FF);
        }


/* ===================================
   HERO VISUAL - PANEL CREDIBILITE
   =================================== */
.ap-cred-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ap-dark-border);
}

.ap-cred-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ap-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ap-cred-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ap-text-muted);
    padding: 0.35rem 0.6rem;
    border: 1px solid var(--ap-dark-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.ap-cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.ap-cred-col h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--ap-text);
}

.ap-cred-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--ap-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.45;
}

.ap-cred-list li {
    position: relative;
    padding-left: 1.1rem;
}

.ap-cred-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ap-accent);
}

.ap-cred-divider {
    height: 1px;
    background: var(--ap-dark-border);
    margin: 1.5rem 0 1.25rem;
}

.ap-check-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 255, 0.35);
    background: rgba(0, 102, 255, 0.10);
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.ap-check-dot::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 6px;
    height: 9px;
    border-right: 2px solid var(--ap-accent);
    border-bottom: 2px solid var(--ap-accent);
    transform: rotate(40deg);
}

.ap-cred-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.ap-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--ap-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ===================================
   MICRO-SECTION - STANDARD
   =================================== */
.ap-standard {
    background: var(--ap-dark);
}

.ap-standard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.ap-standard-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   OUTILS - VISUEL MODULES (PAS DE STATS)
   =================================== */
.ap-tools-modules {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ap-module-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--ap-dark-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
}

.ap-module-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ap-accent);
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 255, 0.25);
    background: rgba(0, 102, 255, 0.08);
    flex-shrink: 0;
}
/* ===================================
           BOUTON CTA PRINCIPAL
           =================================== */
        .ap-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.125rem 2rem;
            background: var(--ap-accent);
            color: white;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .ap-cta-btn:hover {
            background: var(--ap-accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
            color: white;
        }

        .ap-cta-btn svg {
            transition: transform 0.2s ease;
        }

        .ap-cta-btn:hover svg {
            transform: translateX(4px);
        }

        /* ===================================
           SECTIONS COMMUNES
           =================================== */
        .ap-section {
            padding: 100px 0;
            position: relative;
        }

        .ap-section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .ap-section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--ap-text);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .ap-section-subtitle {
            font-size: 1.125rem;
            color: var(--ap-text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ===================================
           SECTION 2 - POSITIONNEMENT
           =================================== */
        .ap-positioning {
            background: var(--ap-dark-card);
            border-top: 1px solid var(--ap-dark-border);
            border-bottom: 1px solid var(--ap-dark-border);
        }

        .ap-positioning-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .ap-positioning-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--ap-text);
            margin-bottom: 2rem;
        }

        .ap-positioning-title .accent {
            color: var(--ap-accent);
        }

        .ap-positioning-text {
            font-size: 1.125rem;
            line-height: 1.9;
            color: var(--ap-text-secondary);
            margin-bottom: 1.5rem;
        }

        .ap-positioning-highlight {
            display: inline-block;
            padding: 1.25rem 2rem;
            background: rgba(0, 102, 255, 0.1);
            border: 1px solid rgba(0, 102, 255, 0.2);
            border-radius: 12px;
            font-size: 1.0625rem;
            font-weight: 600;
            color: var(--ap-accent);
            margin-top: 1rem;
        }

        /* ===================================
           SECTION 3 - METHODE
           =================================== */
        .ap-method-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .ap-method-card {
            background: var(--ap-dark-card);
            border: 1px solid var(--ap-dark-border);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .ap-method-card:hover {
            border-color: var(--ap-accent);
            transform: translateY(-4px);
        }

        .ap-method-number {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--ap-accent);
            color: white;
            font-size: 1.25rem;
            font-weight: 800;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

        .ap-method-card h3 {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--ap-text);
            margin-bottom: 0.75rem;
        }

        .ap-method-card p {
            font-size: 0.9375rem;
            line-height: 1.6;
            color: var(--ap-text-secondary);
            margin: 0;
        }

        /* ===================================
           SECTION 4 - COMPETENCES
           =================================== */
        .ap-skills {
            background: var(--ap-dark-card);
            border-top: 1px solid var(--ap-dark-border);
            border-bottom: 1px solid var(--ap-dark-border);
        }

        .ap-skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .ap-skill-card {
            display: flex;
            gap: 1.25rem;
            padding: 1.75rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--ap-dark-border);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .ap-skill-card:hover {
            border-color: var(--ap-accent);
            background: rgba(0, 102, 255, 0.03);
        }

        .ap-skill-icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 102, 255, 0.1);
            border-radius: 12px;
            color: var(--ap-accent);
            flex-shrink: 0;
        }

        .ap-skill-content h3 {
            font-size: 1.0625rem;
            font-weight: 700;
            color: var(--ap-text);
            margin-bottom: 0.5rem;
        }

        .ap-skill-content p {
            font-size: 0.9375rem;
            line-height: 1.6;
            color: var(--ap-text-secondary);
            margin: 0;
        }

        .ap-skill-content p .result {
            color: var(--ap-accent);
            font-weight: 500;
        }

        /* ===================================
           SECTION 5 - OUTILS SUR MESURE
           =================================== */
        .ap-tools-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .ap-tools-text h2 {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--ap-text);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .ap-tools-text p {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--ap-text-secondary);
            margin-bottom: 2rem;
        }

        .ap-tools-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .ap-tools-item {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 1rem 1.25rem;
            background: var(--ap-dark-card);
            border: 1px solid var(--ap-dark-border);
            border-radius: 10px;
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--ap-text);
            transition: all 0.2s ease;
        }

        .ap-tools-item:hover {
            border-color: var(--ap-accent);
            transform: translateX(4px);
        }

        .ap-tools-item svg {
            color: var(--ap-accent);
            flex-shrink: 0;
        }

        .ap-tools-visual {
            position: relative;
        }

        .ap-tools-card {
            background: var(--ap-dark-card);
            border: 1px solid var(--ap-dark-border);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
        }

        .ap-tools-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20%;
            right: 20%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--ap-accent), transparent);
        }

        .ap-tools-mockup {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .ap-mockup-row {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .ap-mockup-label {
            width: 100px;
            font-size: 0.75rem;
            color: var(--ap-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .ap-mockup-bar {
            flex: 1;
            height: 36px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--ap-dark-border);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .ap-mockup-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--ap-accent), rgba(0, 102, 255, 0.5));
            border-radius: 8px;
        }

        .ap-mockup-row:nth-child(1) .ap-mockup-fill { width: 85%; }
        .ap-mockup-row:nth-child(2) .ap-mockup-fill { width: 70%; }
        .ap-mockup-row:nth-child(3) .ap-mockup-fill { width: 92%; }
        .ap-mockup-row:nth-child(4) .ap-mockup-fill { width: 65%; }

        /* ===================================
           SECTION 6 - FIABILITE
           =================================== */
        .ap-trust {
            background: var(--ap-dark-card);
            border-top: 1px solid var(--ap-dark-border);
            border-bottom: 1px solid var(--ap-dark-border);
        }

        .ap-trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .ap-trust-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--ap-dark-border);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .ap-trust-card:hover {
            border-color: var(--ap-accent);
        }

        .ap-trust-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 102, 255, 0.1);
            border-radius: 14px;
            color: var(--ap-accent);
            margin: 0 auto 1.25rem;
        }

        .ap-trust-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--ap-text);
            margin-bottom: 0.5rem;
        }

        .ap-trust-card p {
            font-size: 0.875rem;
            line-height: 1.5;
            color: var(--ap-text-secondary);
            margin: 0;
        }

        /* ===================================
           SECTION 7 - ABOUT SHORT
           =================================== */
        .ap-about-short {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .ap-about-short h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--ap-text);
            margin-bottom: 1.5rem;
        }

        .ap-about-short p {
            font-size: 1.0625rem;
            line-height: 1.9;
            color: var(--ap-text-secondary);
        }

        /* ===================================
           SECTION 8 - CTA FINAL
           =================================== */
        .ap-final-cta {
            text-align: center;
            padding: 120px 0;
            background: linear-gradient(180deg, var(--ap-dark) 0%, #0D1117 100%);
            position: relative;
            overflow: hidden;
        }

        .ap-final-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .ap-final-cta-content {
            position: relative;
            z-index: 1;
        }

        .ap-final-cta h2 {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--ap-text);
            margin-bottom: 1.25rem;
            line-height: 1.2;
        }

        .ap-final-cta h2 .accent {
            color: var(--ap-accent);
        }

        .ap-final-cta > .ap-container > p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--ap-text-secondary);
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        .ap-final-cta .ap-cta-btn {
            font-size: 1.125rem;
            padding: 1.25rem 2.5rem;
        }

        .ap-cta-reassurance {
            margin-top: 1.25rem;
            font-size: 0.875rem;
            color: var(--ap-text-muted);
        }

        /* ===================================
           FOOTER OVERRIDE
           =================================== */
        .page-apropos .footer {
            background: #050505;
            border-top: 1px solid var(--ap-dark-border);
        }

        .page-apropos .footer-content {
            color: var(--ap-text-secondary);
        }

        .page-apropos .footer-link {
            color: var(--ap-text-secondary);
        }

        .page-apropos .footer-link:hover {
            color: var(--ap-text);
        }

        /* ===================================
           STICKY CTA OVERRIDE
           =================================== */
        .page-apropos .sticky-mobile-cta {
            background: rgba(10, 10, 10, 0.95);
            border-top: 1px solid var(--ap-dark-border);
        }

        /* ===================================
           RESPONSIVE
           =================================== */
        @media (max-width: 1024px) {
            .ap-hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .ap-hero-text h1 {
                font-size: 2.5rem;
            }

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

            .ap-skills-grid {
                grid-template-columns: 1fr;
            }

            .ap-tools-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

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

        @media (max-width: 768px) {
            .ap-hero {
                padding: 140px 0 80px;
            }

            .ap-hero-text h1 {
                font-size: 2rem;
            }

            .ap-hero-subtitle {
                font-size: 1.0625rem;
            }

            .ap-section {
                padding: 80px 0;
            }

            .ap-section-title {
                font-size: 1.75rem;
            }

            .ap-method-grid {
                grid-template-columns: 1fr;
            }

            .ap-trust-grid {
                grid-template-columns: 1fr;
            }

            .ap-final-cta {
                padding: 80px 0;
            }

            .ap-final-cta h2 {
                font-size: 1.75rem;
            }

            .ap-cta-btn {
                width: 100%;
                justify-content: center;
            }

            .ap-positioning-title {
                font-size: 1.75rem;
            }

            .ap-tools-text h2 {
                font-size: 1.75rem;
            }
        

            .ap-standard-grid { grid-template-columns: 1fr; }
}
    
/* ===================================
   BLOC - CYCLE D'AMELIORATION CONTINUE
   =================================== */
.ap-cycle {
    background: var(--ap-dark);
}
.ap-cycle-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}
.ap-cycle-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text);
}
.ap-cycle-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.25);
    color: var(--ap-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.ap-cycle-text {
    color: var(--ap-text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}
.ap-cycle-arrow {
    color: var(--ap-text-muted);
    font-weight: 700;
}

/* ===================================
   BLOC - STACK TECHNIQUE
   =================================== */
.ap-stack {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}
.ap-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.ap-stack-card {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.ap-stack-card:hover {
    border-color: var(--ap-accent);
    background: rgba(0, 102, 255, 0.03);
    transform: translateY(-2px);
}
.ap-stack-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ap-text);
}
.ap-stack-card p {
    margin: 0;
    color: var(--ap-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   BLOC - CODE -> RESULTAT BUSINESS
   =================================== */
.ap-code-business {
    background: var(--ap-dark);
}
.ap-code-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.ap-code-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 14px;
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   BLOC - GARANTIES
   =================================== */
.ap-guarantees {
    margin-top: 2.5rem;
    padding: 2rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ap-dark-border);
    border-radius: 16px;
}
.ap-guarantees h3 {
    margin: 0 0 1rem;
    color: var(--ap-text);
    font-weight: 800;
    font-size: 1.125rem;
}
.ap-guarantees-list {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    color: var(--ap-text-secondary);
    line-height: 1.7;
}
.ap-guarantees-note {
    margin: 0;
    color: var(--ap-text-muted);
    line-height: 1.7;
}

/* ===================================
   BLOC - POUR QUI
   =================================== */
.ap-who {
    background: var(--ap-dark-card);
    border-top: 1px solid var(--ap-dark-border);
    border-bottom: 1px solid var(--ap-dark-border);
}

/* ===================================
   BANDEAU - RAPIDITE
   =================================== */
.ap-speed-band {
    padding: 40px 0;
    background: rgba(0, 102, 255, 0.06);
    border-top: 1px solid rgba(0, 102, 255, 0.18);
    border-bottom: 1px solid rgba(0, 102, 255, 0.18);
}
.ap-speed-items {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.ap-speed-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.15rem;
    background: rgba(10, 10, 10, 0.35);
    border: 1px solid rgba(0, 102, 255, 0.18);
    border-radius: 999px;
    color: var(--ap-text);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===================================
   RESPONSIVE - NEW BLOCKS
   =================================== */
@media (max-width: 768px) {
    .ap-stack-grid { grid-template-columns: 1fr; }
    .ap-code-list { grid-template-columns: 1fr; }
    .ap-cycle-arrow { display: none; }
}

/* Empêche la coupure des mots sur tous les appareils */
html, body {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

/* Sécurité supplémentaire sur les textes principaux */
h1, h2, h3, h4, h5, h6,
p, span, a, li, button {
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

/* ===============================
   BLOC IDENTITÉ
=============================== */

.ap-identity {
    background: var(--ap-dark);
}

.ap-identity-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--ap-dark-card);
    border: 1px solid var(--ap-dark-border);
    border-radius: 20px;
    text-align: center;
}

.ap-identity-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.ap-identity-avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF7A18, #FF3D00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
}

.ap-identity-headtext h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ap-text);
}

.ap-identity-role {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: var(--ap-text-secondary);
}

.ap-identity-proof {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: var(--ap-accent);
    font-weight: 600;
}

.ap-identity-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 1rem 0 2rem;
}

.ap-identity-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.75rem;
    color: var(--ap-text-secondary);
    font-size: 0.95rem;
}

.ap-identity-list li::before {
    content: "✔";
    color: var(--ap-accent);
    margin-right: 0.6rem;
}

.ap-identity-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.ap-id-btn {
    padding: 0.75rem 1.4rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.2s;
}

.ap-id-linkedin {
    background: #0A66C2;
    color: white;
}

.ap-id-linkedin:hover {
    opacity: 0.9;
}

.ap-id-malt {
    background: #FF6A00;
    color: white;
}

.ap-id-malt:hover {
    opacity: 0.9;
}

/* responsive */

@media (max-width: 768px) {
    .ap-identity-card {
        padding: 2rem 1.5rem;
    }

    .ap-identity-header {
        flex-direction: column;
        text-align: center;
    }

    .ap-identity-buttons {
        flex-direction: column;
    }

    .ap-id-btn {
        width: 100%;
        text-align: center;
    }
}


/* ===================================
   PROFILE CARD – VERSION ABOUT PREMIUM
   =================================== */

.ap-profile {
    padding: 5rem 1.5rem;
    background: #F9FAFB;
}

/* Card */

.ap-profile-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;

    background: #111827;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;

    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);

    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ap-profile-card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 40px 110px rgba(15, 23, 42, 0.28);
}

/* Title */

.ap-profile-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #F9FAFB;
    letter-spacing: -0.02em;
}

/* Layout */

.ap-profile-content {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

/* Avatar */

.ap-profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 26px;

    background: linear-gradient(135deg, #0066FF, #00A3FF);
    color: white;

    font-weight: 900;
    font-size: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    box-shadow: 0 10px 30px rgba(0,102,255,0.35);
}

/* Info */

.ap-profile-info h3 {
    margin: 0 0 0.4rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #F9FAFB;
}

.ap-profile-role {
    margin: 0 0 1.2rem;
    color: #D1D5DB;
    font-size: 1rem;
}

/* List */

.ap-profile-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;

    color: #D1D5DB;
    font-size: 0.98rem;
    line-height: 1.75;
}

.ap-profile-checks li {
    margin-bottom: 0.4rem;
}

.ap-profile-checks li::before {
    content: "✔ ";
    color: #22C55E;
    font-weight: bold;
}

/* Buttons */

.ap-profile-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ap-profile-btn {
    padding: 0.85rem 1.4rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;

    transform: translateZ(0);
    will-change: transform;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border 0.18s ease,
        color 0.18s ease;
}

.ap-profile-btn:hover {
    transform: translateY(-2px);
}

/* LinkedIn */

.ap-profile-btn.linkedin {
    background: #0A66C2;
    color: white;
    box-shadow: 0 6px 18px rgba(10,102,194,0.35);
}

.ap-profile-btn.linkedin:hover {
    box-shadow: 0 10px 24px rgba(10,102,194,0.45);
}

/* Malt */

.ap-profile-btn.malt {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: #F9FAFB;
}

.ap-profile-btn.malt:hover {
    border-color: #3B82F6;
    color: #3B82F6;
}

/* Responsive */

@media (max-width: 768px) {

    .ap-profile-card {
        padding: 2.2rem 1.6rem;
    }

    .ap-profile-title {
        font-size: 1.5rem;
    }

    .ap-profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.8rem;
    }

    .ap-profile-links {
        justify-content: center;
    }
}

.ap-profile {
    padding: 5rem 1.5rem;
    background: #000000; /* blanc doux */
}



/* ============================================
   MERGED FROM one-shot/urgence.css
   ============================================ */

/* ===================================
   YANNSERVICE — Premium v7.1
   Style: Premium strict (angulaire)
   Palette: 90% neutral + 10% accent
   =================================== */

/* ===================================
   RESET & VARIABLES
   =================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Neutral palette — 90% */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --black: #0A0A0A;

    /* Accent — 10% */
    --accent: #0A0A0A;
    --accent-hover: #262626;

    /* Brand */
    --brand-silver: #B0B0B8;
    --brand-blue: #1B2A4A;

    /* Functional */
    --success: #16A34A;
    --whatsapp: #25D366;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Radius — premium strict */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;

    /* Transitions */
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   BASE
   =================================== */

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 64px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   LAYOUT
   =================================== */

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* ===================================
   TYPOGRAPHY — Magazine style
   =================================== */

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-lg);
}

.section-label-sm {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.section-subheading {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: var(--space-3xl);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.75rem;
    }

    .section-subheading {
        font-size: 1rem;
        margin-bottom: var(--space-2xl);
    }
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 28px;
    width: auto;
    max-width: 28px;
    object-fit: contain;
}

/* Brand name — Yann (argent brillant animé) + Service (bleu sombre) */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.brand-yann {
    color: var(--brand-silver);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(105deg, #8E8E96 0%, #C0C0C8 25%, #F0F0F4 50%, #C0C0C8 75%, #8E8E96 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.brand-service {
    color: var(--brand-blue);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-left: -0.04em;
}

.brand-nova {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 30%, #A78BFA 50%, #7C3AED 70%, #4F46E5 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    display: block;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--transition);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--black);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-nav-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-nav-call:hover {
    background: var(--gray-800);
}

.btn-nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-nav-whatsapp:hover {
    border-color: var(--gray-400);
    color: var(--black);
}

/* Status indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: all var(--transition);
}

.status-indicator .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.available {
    background: rgba(22, 163, 74, 0.08);
    color: #15803d;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.status-indicator.available .status-dot {
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
    animation: status-pulse 2s ease-in-out infinite;
}

.status-indicator.unavailable {
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.status-indicator.unavailable .status-dot {
    background: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

@keyframes status-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.08); }
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 0;
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        flex-direction: column;
        gap: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active {
        max-height: 320px;
        opacity: 1;
        padding: var(--space-md) var(--space-lg);
        gap: var(--space-sm);
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
        gap: var(--space-xs);
    }

    .nav-cta a {
        width: 100%;
        justify-content: center;
    }

    .status-indicator {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   BUTTONS — Premium strict
   =================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--gray-800);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--black);
}

.btn-primary-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.btn-primary-light:hover {
    background: var(--gray-100);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-primary-light,
    .btn-outline-light,
    .btn-whatsapp {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

/* ===================================
   HERO — Ultra minimal
   =================================== */

.hero {
    padding: 10rem 0 var(--space-5xl);
    background: var(--white);
}

.hero-content {
    max-width: 720px;
}

.hero-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--black);
    margin-bottom: var(--space-xl);
}

.hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: var(--space-2xl);
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
}

.hero-proof {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.hero-stars {
    font-size: 1.125rem;
    color: #f59e0b;
    letter-spacing: 2px;
}

.hero-proof-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-style: italic;
}

.hero-proof-author {
    font-size: 0.8125rem;
    color: var(--gray-400);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 var(--space-3xl);
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.03em;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-cta {
        flex-direction: column;
    }
}

/* ===================================
   SECTION — Problem
   =================================== */

.section-problem {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.problem-content {
    max-width: 680px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.problem-item {
    border-left: 2px solid var(--gray-200);
    padding-left: var(--space-lg);
}

.problem-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.problem-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .section-problem {
        padding: var(--space-4xl) 0;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        margin-top: var(--space-2xl);
    }
}

/* ===================================
   SECTION — Result
   =================================== */

.section-result {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.result-content {
    max-width: 800px;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.result-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.result-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .section-result {
        padding: var(--space-4xl) 0;
    }

    .result-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ===================================
   SECTION — Method (3 steps)
   =================================== */

.section-method {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
}

.method-step {
    position: relative;
}

.method-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.method-step h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.method-step p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
}

@media (max-width: 1024px) {
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-method {
        padding: var(--space-4xl) 0;
    }

    .method-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* ===================================
   SECTION — Proof (stats + testimonials)
   =================================== */

.section-proof {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.proof-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-bottom: var(--space-4xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--gray-200);
}

.proof-stat {
    display: flex;
    flex-direction: column;
}

.proof-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1;
}

.proof-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: var(--space-xs);
    line-height: 1.4;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    padding: var(--space-xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-initial {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    color: var(--gray-600);
    font-weight: 700;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--black);
}

.author-role {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .section-proof {
        padding: var(--space-4xl) 0;
    }

    .proof-stats {
        flex-direction: column;
        gap: var(--space-xl);
        margin-bottom: var(--space-2xl);
        padding-bottom: var(--space-2xl);
    }

    .proof-stat-number {
        font-size: 2rem;
    }

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

/* ===================================
   SECTION — Offer
   =================================== */

.section-offer {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 480px;
    margin: 0 auto var(--space-2xl);
    text-align: left;
}

.offer-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
}

.offer-card {
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.offer-card-primary {
    border-color: var(--black);
    border-width: 2px;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: var(--space-xl);
    padding: 0.25rem 0.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
}

.offer-tag {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
}

.offer-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.offer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex-grow: 1;
}

.offer-list li {
    font-size: 0.875rem;
    color: var(--gray-700);
    padding-left: 1.25rem;
    position: relative;
}

.offer-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 0.8125rem;
}

.offer-note {
    font-size: 0.8125rem;
    color: var(--gray-500);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.offer-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .section-offer {
        padding: var(--space-4xl) 0;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .offer-card {
        padding: var(--space-xl);
    }

    .offer-cta {
        flex-direction: column;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===================================
   SECTION — Guarantees
   =================================== */

.section-guarantees {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.guarantee-item {
    padding-top: var(--space-lg);
    border-top: 2px solid var(--gray-200);
}

.guarantee-item h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.guarantee-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   SECTION — PROFILE CARD
   =================================== */

.section-profile {
    padding: var(--space-5xl) 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.profile-card {
    max-width: 680px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: var(--space-2xl);
    background: var(--gray-50);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.profile-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.profile-role {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.profile-skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-xl);
}

.profile-skill-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
}

.profile-skill-col ul {
    list-style: none;
    padding: 0;
}

.profile-skill-col li {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
    padding: 4px 0;
    position: relative;
    padding-left: 1rem;
}

.profile-skill-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gray-300);
}

.profile-stat {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--black);
    background: var(--gray-100);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: var(--space-md);
    border: 1px solid var(--gray-200);
}

.profile-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 999px;
    transition: background var(--transition), color var(--transition);
}

.profile-link-linkedin {
    background: #0A66C2;
    color: var(--white);
}

.profile-link-linkedin:hover {
    background: #004182;
}

.profile-link-linkedin svg {
    fill: var(--white);
}

.profile-link-malt {
    background: #FC5656;
    color: var(--white);
}

.profile-link-malt:hover {
    background: #D93636;
}

.profile-link-malt svg {
    fill: var(--white);
}

.profile-link-more {
    color: var(--gray-500);
    padding: 8px 12px;
}

.profile-link-more:hover {
    color: var(--black);
    background: var(--gray-100);
}

@media (max-width: 768px) {
    .profile-card {
        padding: var(--space-xl);
    }

    .profile-skills {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .profile-links {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-link {
        justify-content: center;
    }
}

/* ===================================
   SECTION — FAQ
   =================================== */

.section-faq {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.section-faq .section-heading {
    margin-bottom: var(--space-3xl);
}

.faq-list {
    max-width: 680px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    background: transparent;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gray-600);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding-bottom: var(--space-lg);
}

.faq-answer-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ===================================
   SECTION — CTA Final
   =================================== */

.section-cta-final {
    padding: var(--space-5xl) 0;
    background: var(--black);
}

.cta-final-content {
    max-width: 560px;
}

.cta-final-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-final-content p {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
}

.cta-final-buttons {
    display: flex;
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .section-cta-final {
        padding: var(--space-4xl) 0;
    }

    .cta-final-content h2 {
        font-size: 1.75rem;
    }

    .cta-final-buttons {
        flex-direction: column;
    }
}

/* ===================================
   FOOTER — Clean
   =================================== */

.footer {
    padding: var(--space-xl) 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
    .footer {
        padding-bottom: calc(var(--space-xl) + 72px);
    }
}

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

.footer-copy {
    font-size: 0.8125rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-copy .brand-yann {
    background: linear-gradient(105deg, #7A7A82 0%, #9A9AA2 25%, #C8C8D0 50%, #9A9AA2 75%, #7A7A82 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    font-size: 0.8125rem;
}

.footer-copy .brand-service {
    font-size: 0.8125rem;
}

.footer-links,
.footer-right {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a,
.footer-link {
    font-size: 0.8125rem;
    color: var(--gray-500);
    transition: color var(--transition);
    text-decoration: none;
}

.footer-links a:hover,
.footer-link:hover {
    color: var(--black);
}

.footer-left p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-left .brand-yann {
    background: linear-gradient(105deg, #7A7A82 0%, #9A9AA2 25%, #C8C8D0 50%, #9A9AA2 75%, #7A7A82 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    font-size: 0.8125rem;
}

.footer-left .brand-service {
    font-size: 0.8125rem;
}

.footer-left .brand-nova,
.footer-copy + .brand-nova {
    display: block;
    font-size: 0.5625rem;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-links,
    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .footer-link {
        font-size: 0.8125rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ===================================
   STICKY MOBILE CTA
   =================================== */

.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    z-index: 9999;
    padding: 8px 12px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

.sticky-mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
        gap: 8px;
        justify-content: center;
    }
}

.sticky-btn {
    flex: 1;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
}

.sticky-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.sticky-btn-call {
    background: var(--black);
    color: var(--white);
}

.sticky-btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

/* ===================================
   RESPONSIVE — Global mobile fixes
   =================================== */

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    select,
    textarea {
        font-size: 16px;
    }
}

/* ===================================
   SAFE AREA (iPhone X+)
   =================================== */

@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        body {
            padding-bottom: max(64px, calc(64px + env(safe-area-inset-bottom)));
        }

        .sticky-mobile-cta {
            padding-bottom: max(8px, calc(8px + env(safe-area-inset-bottom)));
        }
    }
}

/* ===================================
   STYLES FOR OTHER PAGES
   Keep existing page classes working
   =================================== */

/* Page header for service pages */
.page-header {
    padding: 10rem 0 4rem;
    background: var(--white);
    text-align: center;
}

.page-header-content {
    max-width: 680px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.page-header p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .page-header {
        padding: 7rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

/* Section headers (for other pages) */
.section-header {
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
}

/* Services cards (other pages) */
.services-section {
    padding: var(--space-5xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1080px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.service-card:hover {
    border-color: var(--gray-400);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.service-card .service-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Pricing — see TARIFS PAGE section below */

/* Testimonials (shared style for other pages) */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
}

/* Contact section (contact page) */
.contact {
    padding: var(--space-5xl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    max-width: 1080px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: var(--space-2xl);
}

.contact-form-wrapper {
    padding: var(--space-2xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: var(--space-lg);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--black);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--black);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 0.875rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: var(--gray-800);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Legal pages */
.legal-page {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: var(--space-lg);
}

.legal-section {
    margin-bottom: var(--space-2xl);
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.legal-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.legal-section ul {
    list-style: disc;
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-section li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-xs);
}

.legal-section a {
    color: var(--black);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 0 3rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }
}

/* Tarifs page */
/* ===================================
   TARIFS PAGE
   =================================== */
.tarifs-hero {
    padding: 8rem 0 3rem;
}

.tarifs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: var(--space-xl);
}

.tarifs-nav .btn-secondary {
    font-size: 0.875rem;
}

.tarifs-section {
    padding: var(--space-3xl) 0;
}

.tarifs-section--alt {
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1080px;
    margin: var(--space-xl) auto 0;
}

.pricing-grid--narrow {
    max-width: 900px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--black);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.pricing-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: var(--space-sm);
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--success);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin: var(--space-lg) 0;
}

.price-period {
    font-size: 0.9375rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-note {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.pricing-save {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: var(--space-lg);
}

.pricing-card .btn-secondary,
.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-table-simple {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: 600px;
    margin: var(--space-xl) auto 0;
}

.pricing-row-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-row-simple:last-child {
    border-bottom: none;
}

.pricing-row-simple:hover {
    background: var(--gray-50);
}

.pricing-row-simple.highlighted {
    border: 2px solid var(--black);
    border-radius: var(--radius-md);
}

.pricing-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.125rem;
}

.pricing-info p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.pricing-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
}

.pricing-row-simple .inline-badge {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.tarifs-surmesure {
    max-width: 700px;
    margin: var(--space-xl) auto 0;
    text-align: center;
}

.surmesure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.surmesure-item {
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--black);
}

.tarifs-validity {
    margin-top: var(--space-xl);
    color: var(--gray-500);
    font-size: 0.875rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tarifs-hero {
        padding: 7rem 0 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .pricing-row-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
}

/* WhatsApp buttons (shared) */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--whatsapp);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.btn-whatsapp:hover {
    background: #20BD5A;
}

.btn-whatsapp-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    background: var(--whatsapp);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
}

/* CTA section (dark, for other pages) */
.cta-section {
    padding: var(--space-5xl) 0;
    background: var(--black);
}

.cta-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.0625rem;
    color: var(--gray-400);
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-buttons .btn-white {
    padding: 0.875rem 1.75rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
}

.cta-buttons .btn-white:hover {
    background: var(--gray-100);
}

.cta-buttons .btn-outline-white {
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
}

.cta-buttons .btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-white,
    .cta-buttons .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

/* Features section (other pages) */
.features-section {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 880px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-md);
}

.feature-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Process section (other pages) */
.process {
    padding: var(--space-5xl) 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: 880px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin: 0 auto var(--space-lg);
}

.process-step h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Examples/Portfolio (other pages) */
.examples {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1080px;
    margin: 0 auto;
}

.example-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.example-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--gray-100);
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-content {
    padding: var(--space-lg);
}

.example-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.example-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .examples-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Toast notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast {
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: all;
    animation: slideIn 0.2s ease;
    border-left: 3px solid var(--black);
}

.toast.success {
    border-left-color: var(--success);
}

.toast.error {
    border-left-color: #EF4444;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast.removing {
    animation: slideOut 0.2s ease forwards;
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.toast-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.toast-content { flex: 1; }

.toast-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--black);
}

.toast-message {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.toast-close {
    flex-shrink: 0;
    color: var(--gray-400);
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

/* Highlight class (used on other pages) */
.highlight {
    color: var(--black);
}

/* Button phone (used on other pages) */
.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.btn-phone:hover {
    border-color: var(--black);
}

/* Urgency button (other pages) */
.btn-urgency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

.btn-urgency:hover {
    background: var(--gray-800);
}

/* Modal overlay (kept for other pages) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 440px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    color: var(--gray-400);
    padding: 4px;
    border-radius: var(--radius-sm);
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--black);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.modal-subtitle {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

/* ===================================
   OFFER CARD SECONDARY
   =================================== */

.offer-card-secondary {
    border-color: var(--gray-300);
    border-width: 2px;
    background: var(--gray-50);
}

.offer-details-link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-bottom: var(--space-md);
    transition: color 0.2s ease;
}

.offer-details-link:hover {
    color: var(--gray-600);
}

/* ===================================
   REMISE EN FORME SECTION
   =================================== */

.section-remise {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
}

.remise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.remise-block {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.remise-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.remise-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--black);
}

.remise-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.remise-block li {
    font-size: 0.875rem;
    color: var(--gray-700);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.remise-block li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--success, #22c55e);
    font-weight: 700;
    font-size: 0.8125rem;
}

@media (max-width: 768px) {
    .offer-grid--two {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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


/* ============================================
   COMPARE V2 — site-web.html (abonnement vs one-shot neutre)
   ============================================ */

/* Override la colonne "bad" pour une de présentation neutre (pas rouge) */
.compare-v2 .comparatif-col-bad {
    background: #F9FAFB;
    border-left: 1px solid #E5E5E5;
}
.compare-v2 .comparatif-bad {
    background: #FAFAFA;
    color: #404040;
    border-left: 1px solid #E5E5E5;
}
.compare-v2 .comparatif-bad small {
    color: #737373;
    opacity: 0.9;
}
.compare-v2 .comparatif-icon-bad {
    background: #E5E5E5;
    color: #525252;
    font-weight: 400;
}
.compare-v2 .comparatif-title-bad {
    color: #171717;
}
.compare-v2 .comparatif-price-bad {
    color: #262626;
    font-weight: 800;
    font-size: 1.1rem;
}
.compare-v2 .comparatif-row-total .comparatif-bad {
    background: #F5F5F5;
}

.compare-v2 .comparatif-col-good {
    position: relative;
}

.compare-popular-badge {
    display: inline-block;
    margin-top: 0.35rem;
    padding: 0.2rem 0.6rem;
    background: #16A34A;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
}

/* CTAs double bouton */
.compare-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.compare-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.5rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 200ms ease, box-shadow 200ms ease;
    position: relative;
}

.compare-cta svg {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 200ms ease;
}

.compare-cta:hover {
    transform: translateY(-2px);
}

.compare-cta:hover svg {
    transform: translateY(-50%) translateX(3px);
}

.compare-cta-good {
    background: #16A34A;
    color: #FFFFFF;
    border: 2px solid #16A34A;
}

.compare-cta-good:hover {
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.25);
}

.compare-cta-bad {
    background: #FFFFFF;
    color: #171717;
    border: 2px solid #E5E5E5;
}

.compare-cta-bad:hover {
    border-color: #171717;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.compare-cta-label {
    font-size: 1.05rem;
    font-weight: 700;
}

.compare-cta-desc {
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 500;
}

.compare-footnote {
    text-align: center;
    color: #737373;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.compare-footnote a {
    color: #171717;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .compare-cta-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .compare-cta {
        padding: 1.25rem 1.5rem;
    }
    .compare-popular-badge {
        font-size: 0.65rem;
    }
}

.compare-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: #16A34A;
    color: #FFFFFF !important;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background 150ms ease, transform 150ms ease;
}
.compare-inline-btn:hover {
    background: #15803D;
    transform: translateY(-1px);
}

.compare-col-subtitle {
    font-size: 0.75rem;
    color: #737373;
    font-weight: 500;
    font-style: italic;
    margin-top: -0.15rem;
}

/* Centrage horizontal du hero-subtitle */
.hero .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

/* Hero direct suivi de choice-section : resserrer l'espace */
.hero:has(+ .choice-section) {
    padding-bottom: 2rem;
}
.hero + .choice-section {
    padding-top: 1rem;
}

/* Baseline des choice-cards : rester sur 1 ligne en desktop, wrap en mobile */
.choice-card .choice-baseline {
    font-size: 0.8125rem;
}

@media (min-width: 769px) {
    .choice-card .choice-baseline {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .choice-card .choice-baseline {
        font-size: 0.9375rem;
        white-space: normal;
        line-height: 1.5;
    }
}

.hero-micro-proofs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

/* Fix feature-card layout : icone top, titre, desc en colonne (pas en flex row) */
.feature-card {
    display: block;
    padding: 2rem;
    border: none;
    border-radius: 0;
    background: var(--white);
}
.feature-card .feature-icon {
    margin-bottom: 1rem;
}

/* Enlever les bordures grises entre les feature-cards */
#inclus .features-grid {
    gap: 1rem;
    background: transparent;
    border: none;
}
#inclus .feature-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

/* Fix bouton Appeler dans cta-final (texte noir sur fond noir) */
.cta-final .btn-secondary-white {
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF;
    background: transparent;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}
.cta-final .btn-secondary-white:hover {
    background: #FFFFFF;
    color: #0A0A0A !important;
}
.cta-final .btn-secondary-white svg {
    stroke: currentColor;
}

/* Fix carrousel avis sur mobile : 1 card pleine largeur, nav en overlay gauche/droite */
@media (max-width: 768px) {
    .testimonials-carousel {
        position: relative;
        display: block;
    }
    .testimonials-track {
        display: flex;
        width: 100%;
        gap: 1rem;
        padding: 0.5rem 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }
    .testimonials-track::-webkit-scrollbar { display: none; }
    .testimonials-track > .testimonial-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        padding: 1.5rem 3rem;
    }
    .testimonials-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        z-index: 2;
        border-radius: 50%;
    }
    .testimonials-carousel .testimonials-prev {
        left: 0.5rem;
    }
    .testimonials-carousel .testimonials-next {
        right: 0.5rem;
    }
}

/* Fix FAQ <details> : afficher la réponse seulement quand open */
.faq-item[open] .faq-answer,
.faq-item[open] .faq-answer-content {
    max-height: none !important;
}
details.faq-item:not([open]) .faq-answer {
    display: none;
}
details.faq-item[open] .faq-answer {
    display: block;
    animation: faqFadeIn 200ms ease-out;
}
@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary { list-style: none; }
details.faq-item[open] summary svg { transform: rotate(180deg); }
