    /* =============================================
       VARIABLES & RESET
    ============================================= */
    :root {
      --blue-dark:    #071829;
      --blue-mid:     #0C2D55;
      --blue-light:   #163F7A;
      --orange:       #b70e0c;
      --orange-hover: #8f0b0a;
      --white:        #FFFFFF;
      --grey-light:   #F4F6FA;
      --grey-mid:     #E2E8F0;
      --grey-text:    #4A5568;
      --text-dark:    #1A202C;
      --green-check:  #22A65A;
      --radius:       8px;
      --shadow:       0 4px 24px rgba(7,24,41,0.12);
      --shadow-lg:    0 8px 40px rgba(7,24,41,0.20);
      --font-head:    'Montserrat', sans-serif;
      --font-body:    'Open Sans', sans-serif;
    }

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

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background: var(--white);
      line-height: 1.65;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* =============================================
       TYPOGRAPHY
    ============================================= */
    h1, h2, h3, h4 {
      font-family: var(--font-head);
      color: var(--blue-dark);
      line-height: 1.2;
    }

    .section-label {
      display: inline-block;
      font-family: var(--font-head);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 10px;
    }

    /* =============================================
       BUTTONS
    ============================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1rem;
      padding: 16px 28px;
      border-radius: var(--radius);
      cursor: pointer;
      border: none;
      transition: all 0.2s ease;
      text-decoration: none;
      line-height: 1.2;
    }

    .btn-primary {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 4px 16px rgba(183,14,12,0.35);
    }
    .btn-primary:hover {
      background: var(--orange-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(183,14,12,0.45);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.7);
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--white);
    }

    .btn-outline-blue {
      background: transparent;
      color: var(--blue-dark);
      border: 2px solid var(--blue-dark);
    }
    .btn-outline-blue:hover {
      background: var(--blue-dark);
      color: var(--white);
    }

    .btn-lg {
      font-size: 1.1rem;
      padding: 18px 36px;
    }

    /* =============================================
       STICKY TOP BAR
    ============================================= */
    .top-bar {
      background: var(--blue-dark);
      color: var(--white);
      text-align: center;
      padding: 10px 20px;
      font-size: 0.875rem;
      font-family: var(--font-head);
      font-weight: 600;
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .top-bar a {
      color: var(--orange);
      font-weight: 700;
      font-size: 1rem;
    }

    .top-bar .separator { opacity: 0.4; }

    /* =============================================
       HEADER / NAV — PILL FLOTTANTE
    ============================================= */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: transparent;
      padding: 10px 20px;
      border: none;
      box-shadow: none;
    }

    .header-inner {
      background: var(--orange);
      border-radius: 60px;
      padding: 9px 9px 9px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
      box-shadow:
        0 8px 32px rgba(183,14,12,0.35),
        0 2px 8px rgba(0,0,0,0.18);
    }

    /* Logo */
    .header-attila-logo {
      height: 36px;
      width: auto;
      display: block;
      flex-shrink: 0;
    }

    /* Nav liens centrés */
    .header-nav {
      display: flex;
      align-items: center;
      gap: 28px;
      flex: 1;
      justify-content: center;
      flex-wrap: nowrap;
    }

    .header-nav a {
      color: rgba(255,255,255,0.88);
      font-family: var(--font-head);
      text-transform: uppercase;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      white-space: nowrap;
      transition: color 0.18s;
    }

    .header-nav a:hover { color: var(--white); }

    .header-nav .nav-sep {
      color: rgba(255,255,255,0.22);
      font-size: 1rem;
      user-select: none;
    }

    .header-nav .nav-phone {
      display: flex;
      align-items: center;
      gap: 6px;
      color: white;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.06em;
    }

    /* Bouton pill droite */
    .header-cta-pill {
      background: rgba(255,255,255,0.14);
      border: 1.5px solid rgba(255,255,255,0.32);
      color: var(--white);
      border-radius: 40px;
      padding: 9px 20px;
      font-family: var(--font-head);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
      transition: background 0.18s, border-color 0.18s;
      display: flex;
      align-items: center;
      gap: 7px;
      flex-shrink: 0;
    }

    .header-cta-pill:hover {
      background: rgba(255,255,255,0.24);
      border-color: rgba(255,255,255,0.55);
    }

    /* Indicateur actif */
    .header-live-dot {
      width: 7px; height: 7px;
      background: #4ADE80;
      border-radius: 50%;
      display: inline-block;
      animation: pulse-green 1.8s infinite;
    }

    /* =============================================
       HERO
    ============================================= */
    .hero {
      background:
        linear-gradient(135deg, rgba(7,24,41,0.93) 0%, rgba(12,45,85,0.87) 55%, rgba(22,63,122,0.82) 100%),
        url('../img/pexels-omron2003-33719826.jpg') center/cover no-repeat;
      color: var(--white);
      margin-top: -100px;
      padding: 158px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(183,14,12,0.08) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }

    .hero > .container { position: relative; z-index: 1; }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 50px;
      align-items: center;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 40px;
      padding: 6px 14px;
      font-size: 0.8rem;
      font-weight: 700;
      font-family: var(--font-head);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      margin-bottom: 20px;
    }

    .hero-kicker .dot {
      width: 8px; height: 8px;
      background: #4ADE80;
      border-radius: 50%;
      animation: pulse-green 1.8s infinite;
    }

    @keyframes pulse-green {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(0.85); }
    }

    .hero h1 {
      color: var(--white);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      margin-bottom: 18px;
      line-height: 1.15;
    }

    .hero h1 span { color: #FFA84C; }

    .hero-sub {
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 30px;
      max-width: 560px;
      line-height: 1.6;
    }

    .hero-bullets {
      list-style: none;
      margin-bottom: 36px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .hero-bullets li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.97rem;
      font-weight: 500;
    }

    .hero-bullets .check {
      width: 22px; height: 22px;
      background: rgba(74,222,128,0.2);
      border: 1.5px solid #4ADE80;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: #4ADE80;
      font-size: 0.75rem;
      font-weight: 800;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    /* HERO CARD */
    .hero-card {
      background: var(--white);
      border-radius: 16px;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .hero-card-top {
      background: var(--orange);
      padding: 14px 20px;
      color: var(--white);
      text-align: center;
    }

    .hero-card-top .card-title {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1rem;
      margin-bottom: 2px;
    }

    .hero-card-top .card-sub {
      font-size: 0.75rem;
      opacity: 0.85;
    }

    .hero-form {
      padding: 14px 18px;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .form-group label {
      display: block;
      font-size: 0.65rem;
      font-weight: 700;
      font-family: var(--font-head);
      color: var(--blue-dark);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 2px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 7px 11px;
      border: 1.5px solid var(--grey-mid);
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--text-dark);
      background: var(--grey-light);
      transition: border-color 0.2s;
      outline: none;
      -webkit-appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--blue-light);
      background: var(--white);
    }

    .form-group textarea { resize: vertical; min-height: 52px; }

    .form-submit .btn { width: 100%; justify-content: center; padding: 11px 20px; }

    .form-reassurance {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      font-size: 0.68rem;
      color: var(--grey-text);
      margin-top: 2px;
      line-height: 1.4;
    }

    .form-reassurance .lock { color: var(--green-check); font-size: 0.9rem; margin-top: 1px; }

    /* =============================================
       TRUST BAR
    ============================================= */
    .trust-bar {
      background: var(--grey-light);
      border-bottom: 2px solid var(--grey-mid);
      padding: 24px 0;
    }

    .trust-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0;
      flex-wrap: nowrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-right: 1px solid var(--grey-mid);
      flex: 1;
      min-width: 0;
    }

    .trust-item:last-child { border-right: none; }

    .trust-icon {
      width: 36px; height: 36px;
      background: var(--orange);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 3px 10px rgba(183,14,12,0.25);
    }

    .trust-icon svg { width: 17px; height: 17px; }

    .trust-text strong {
      display: block;
      font-family: var(--font-head);
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--blue-dark);
      line-height: 1.1;
      white-space: nowrap;
    }

    .trust-text span {
      font-size: 0.72rem;
      color: var(--grey-text);
      white-space: nowrap;
    }

    /* =============================================
       SECTION GÉNÉRIQUE
    ============================================= */
    section { padding: 72px 0; }

    .section-head {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 52px;
    }

    .section-head h2 {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 800;
      margin-bottom: 14px;
    }

    .section-head p {
      color: var(--grey-text);
      font-size: 1.05rem;
    }

    /* =============================================
       PROBLÈME / URGENCE
    ============================================= */
    .problem-section {
      background:
        linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.88) 100%),
        url('../img/dat-vo-F4u8Vm7UdgY-unsplash.jpg') center/cover no-repeat fixed;
    }

    .problems-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .problem-card {
      border: 1.5px solid var(--grey-mid);
      border-left: 4px solid transparent;
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      gap: 14px;
      background: var(--white);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .problem-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
    .problem-card.urgent { border-left-color: #EF4444; }
    .problem-card.warning { border-left-color: #F59E0B; }
    .problem-card.info { border-left-color: var(--blue-light); }

    .problem-emoji { font-size: 1.6rem; flex-shrink: 0; }

    .problem-card h4 {
      font-family: var(--font-head);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--blue-dark);
    }

    .problem-card p { font-size: 0.88rem; color: var(--grey-text); }

    .alert-box {
      background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
      border: 1.5px solid #F59E0B;
      border-left: 5px solid #D97706;
      border-radius: var(--radius);
      padding: 22px 28px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .alert-box .alert-icon { font-size: 1.8rem; flex-shrink: 0; }

    .alert-box strong {
      display: block;
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 800;
      color: #92400E;
      margin-bottom: 4px;
    }

    .alert-box p { color: #78350F; font-size: 0.92rem; }

    /* =============================================
       PROCESSUS / SOLUTION
    ============================================= */
    .solution-section { background: var(--grey-light); }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      margin-bottom: 52px;
    }

    .step-card {
      background: var(--white);
      border-radius: 12px;
      padding: 32px 28px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .step-card::before {
      content: attr(data-step);
      position: absolute;
      top: -10px; right: 20px;
      font-family: var(--font-head);
      font-size: 5rem;
      font-weight: 900;
      color: var(--blue-dark);
      opacity: 0.05;
      line-height: 1;
    }

    .step-number {
      width: 44px; height: 44px;
      background: var(--orange);
      color: white;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 18px;
      flex-shrink: 0;
    }

    .step-card h3 {
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--blue-dark);
    }

    .step-card p { font-size: 0.92rem; color: var(--grey-text); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 14px;
    }

    .service-tag {
      background: var(--white);
      border: 1.5px solid var(--grey-mid);
      border-radius: var(--radius);
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      font-weight: 600;
      font-family: var(--font-head);
      color: var(--blue-dark);
      transition: all 0.2s;
    }

    .service-tag:hover {
      border-color: var(--blue-light);
      background: #EFF6FF;
      transform: translateY(-1px);
    }

    .service-tag .svc-dot {
      width: 8px; height: 8px;
      background: var(--orange);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* =============================================
       BÉNÉFICES
    ============================================= */
    .benefits-section {
      background:
        linear-gradient(135deg, rgba(7,24,41,0.95) 0%, rgba(12,45,85,0.92) 100%),
        url('../img/pexels-guvo59-31762405.jpg') center/cover no-repeat;
      color: var(--white);
    }

    .benefits-section .section-head h2 { color: var(--white); }
    .benefits-section .section-head p { color: rgba(255,255,255,0.7); }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .benefit-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 28px;
      transition: background 0.2s, transform 0.2s;
    }

    .benefit-card:hover {
      background: rgba(255,255,255,0.1);
      transform: translateY(-3px);
    }

    .benefit-card .b-icon {
      width: 50px; height: 50px;
      background: rgba(183,14,12,0.12);
      border: 1.5px solid rgba(183,14,12,0.30);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 18px;
    }

    .benefit-card h3 {
      color: var(--white);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .benefit-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

    /* =============================================
       PREUVES / TÉMOIGNAGES
    ============================================= */
    .proof-section {
      background:
        linear-gradient(to bottom, rgba(7,24,41,0.96) 0%, rgba(7,24,41,0.93) 100%),
        url('../img/pexels-clement-proust-363898785-31771166.jpg') center top/cover no-repeat;
      color: var(--white);
    }

    .proof-section .section-head h2 { color: var(--white); }
    .proof-section .section-head p { color: rgba(255,255,255,0.65); }

    .proof-section .section-label { color: #FFA84C; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-bottom: 48px;
    }

    .testimonial-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 32px 28px;
      position: relative;
      backdrop-filter: blur(6px);
      transition: background 0.25s, transform 0.25s;
    }

    .testimonial-card:hover {
      background: rgba(255,255,255,0.10);
      transform: translateY(-4px);
    }

    .testimonial-card::before {
      content: '\201C';
      font-family: Georgia, serif;
      font-size: 6rem;
      color: var(--orange);
      opacity: 0.25;
      position: absolute;
      top: 6px; left: 18px;
      line-height: 1;
    }

    .stars {
      color: #FBBF24;
      font-size: 1rem;
      margin-bottom: 14px;
      letter-spacing: 3px;
    }

    .testimonial-card p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.88);
      font-style: italic;
      margin-bottom: 22px;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .testimonial-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 16px;
    }

    .avatar {
      width: 44px; height: 44px;
      background: var(--orange);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: white;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 0.95rem;
      flex-shrink: 0;
    }

    .testimonial-meta strong {
      display: block;
      font-family: var(--font-head);
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--white);
    }

    .testimonial-meta span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

    .google-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 8px;
      padding: 10px 16px;
      margin-bottom: 36px;
      width: fit-content;
    }

    .google-badge .g-stars { color: #FBBF24; font-size: 0.9rem; letter-spacing: 2px; }
    .google-badge span { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-family: var(--font-head); font-weight: 600; }

    .case-study-box {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.14);
      border-left: 4px solid var(--orange);
      border-radius: var(--radius);
      padding: 28px 32px;
      backdrop-filter: blur(4px);
    }

    .case-study-box h3 {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
    }

    .case-item .case-label {
      font-size: 0.72rem;
      font-family: var(--font-head);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #FFA84C;
      margin-bottom: 4px;
    }

    .case-item p { font-size: 0.88rem; color: rgba(255,255,255,0.8); }

    /* =============================================
       OBJECTIONS
    ============================================= */
    .objections-section { display: none; }

    .objections-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 820px;
      margin: 0 auto;
    }

    .objection-item {
      background: var(--white);
      border: 1.5px solid var(--grey-mid);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .objection-q {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 22px;
      cursor: pointer;
      user-select: none;
    }

    .q-icon {
      width: 36px; height: 36px;
      background: var(--blue-dark);
      color: white;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 800;
      flex-shrink: 0;
    }

    .objection-q strong {
      font-family: var(--font-head);
      font-size: 0.97rem;
      font-weight: 700;
      color: var(--blue-dark);
      flex: 1;
    }

    .objection-a {
      padding: 0 22px 18px 70px;
      font-size: 0.92rem;
      color: var(--grey-text);
      line-height: 1.65;
    }

    /* =============================================
       FAQ
    ============================================= */
    .faq-section { background: var(--white); }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
      gap: 20px;
    }

    .faq-item {
      border: 1.5px solid var(--grey-mid);
      border-radius: var(--radius);
      padding: 22px 24px;
      background: var(--white);
      transition: box-shadow 0.2s;
    }

    .faq-item:hover { box-shadow: var(--shadow); }

    .faq-item h4 {
      font-size: 0.97rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 8px;
      display: flex;
      gap: 8px;
    }

    .faq-item h4::before {
      content: 'Q';
      width: 24px; height: 24px;
      background: var(--orange);
      color: white;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.72rem;
      font-weight: 800;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .faq-item p { font-size: 0.88rem; color: var(--grey-text); padding-left: 32px; }

    /* =============================================
       GÉRANT / ABOUT
    ============================================= */
    .about-section { background: var(--white); }

    .about-grid {
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 70px;
      align-items: center;
    }

    .about-photo {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(7,24,41,0.22);
      position: relative;
      background: var(--blue-dark);
    }

    /* Slideshow */
    .about-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }

    .about-slide.active { opacity: 1; }

    /* Indicateurs dots */
    .slide-dots {
      position: absolute;
      bottom: 80px;
      right: 18px;
      display: flex;
      flex-direction: column;
      gap: 7px;
      z-index: 2;
    }

    .slide-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.3s, transform 0.3s;
    }

    .slide-dot.active {
      background: var(--white);
      transform: scale(1.3);
    }

    /* Hauteur fixe pour que le slideshow ait une proportion */
    .about-photo { min-height: 480px; }

    .about-name-tag {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(7,24,41,0.96) 0%, rgba(7,24,41,0.7) 70%, transparent 100%);
      padding: 40px 24px 22px;
      color: white;
    }

    .about-name-tag strong {
      display: block;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 3px;
    }

    .about-name-tag span { font-size: 0.8rem; opacity: 0.75; }

    .about-name-tag .red-line {
      width: 36px; height: 3px;
      background: var(--orange);
      border-radius: 2px;
      margin-bottom: 10px;
    }

    .about-content h2 { margin-bottom: 16px; }

    .about-content p { color: var(--grey-text); margin-bottom: 20px; line-height: 1.7; }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 28px;
    }

    .about-stat {
      text-align: center;
      background: var(--white);
      border-radius: var(--radius);
      padding: 16px 12px;
      border: 1.5px solid var(--grey-mid);
    }

    .about-stat strong {
      display: block;
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--blue-dark);
    }

    .about-stat span { font-size: 0.75rem; color: var(--grey-text); }

    /* =============================================
       ZONES DESSERVIES
    ============================================= */
    .zones-section { background: var(--white); padding: 52px 0; }

    .zones-section h3 {
      text-align: center;
      margin-bottom: 24px;
      font-size: 1.1rem;
      color: var(--grey-text);
      font-weight: 600;
    }

    .zones-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .zone-tag {
      background: var(--grey-light);
      border: 1px solid var(--grey-mid);
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 0.85rem;
      font-weight: 600;
      font-family: var(--font-head);
      color: var(--blue-dark);
    }

    /* =============================================
       CLIENT TYPES BAR
    ============================================= */
    .client-types {
      background: var(--grey-light);
      border-top: 1px solid var(--grey-mid);
      border-bottom: 1px solid var(--grey-mid);
      padding: 28px 0;
    }

    .client-types-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .client-types-inner .ct-label {
      font-family: var(--font-head);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--grey-text);
    }

    .client-type-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1.5px solid var(--grey-mid);
      border-radius: 40px;
      padding: 8px 18px;
      font-family: var(--font-head);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--blue-dark);
      box-shadow: 0 2px 8px rgba(7,24,41,0.06);
    }

    .client-type-pill svg { flex-shrink: 0; }

    /* =============================================
       CTA FINAL
    ============================================= */
    .cta-final {
      background:
        linear-gradient(135deg, rgba(7,24,41,0.94) 0%, rgba(12,45,85,0.90) 100%),
        url('../img/pexels-omron2003-33719826.jpg') center bottom/cover no-repeat;
      color: var(--white);
      padding: 100px 0;
      text-align: center;
    }

    .cta-final h2 {
      color: var(--white);
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      margin-bottom: 16px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-final p {
      color: rgba(255,255,255,0.8);
      font-size: 1.1rem;
      margin-bottom: 36px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-final-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .cta-final-guarantees {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-final-guarantees span {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.75);
      font-weight: 500;
    }

    .cta-final-guarantees .green { color: #4ADE80; }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: #0A1F3D;
      color: rgba(255,255,255,0.7);
      padding: 40px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 32px;
    }

    .footer-brand .logo-text .brand { color: var(--white); }
    .footer-brand .logo-text .location { color: rgba(255,255,255,0.5); }
    .footer-brand .logo-text .sub { color: rgba(255,255,255,0.4); }
    .footer-brand .logo-icon { background: rgba(255,255,255,0.1); }

    .footer-desc {
      margin-top: 14px;
      font-size: 0.85rem;
      line-height: 1.6;
      max-width: 300px;
    }

    .footer-phone {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
      font-family: var(--font-head);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 14px;
    }

    .footer-col ul { list-style: none; }

    .footer-col ul li {
      font-size: 0.85rem;
      padding: 4px 0;
      color: rgba(255,255,255,0.6);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 0.78rem;
    }

    .footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 16px; }
    .footer-bottom a:hover { color: var(--white); }

    /* =============================================
       MOBILE STICKY BOTTOM BAR
    ============================================= */
    .mobile-cta-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: var(--white);
      border-top: 2px solid var(--grey-mid);
      padding: 12px 16px;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    }

    .mobile-cta-bar .mobile-ctas {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .mobile-cta-bar a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 13px;
      border-radius: var(--radius);
      font-family: var(--font-head);
      font-size: 0.88rem;
      font-weight: 700;
    }

    .mobile-call-btn {
      background: var(--blue-dark);
      color: white;
    }

    .mobile-devis-btn {
      background: var(--orange);
      color: white;
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-card { max-width: 560px; margin: 0 auto; }

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

      .about-photo {
        max-width: 420px;
        margin: 0 auto;
      }

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

      .trust-grid { flex-wrap: wrap; }
      .trust-item {
        padding: 10px 12px;
        border-right: none;
        border-bottom: 1px solid var(--grey-mid);
        flex: 1 1 calc(50% - 1px);
      }

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

    @media (max-width: 900px) {
      .header-nav { display: none; }
      .header-inner { padding: 8px 8px 8px 16px; gap: 12px; }
    }

    @media (max-width: 640px) {
      /* Espacement général */
      section { padding: 40px 0; }
      .container { padding: 0 16px; }

      /* Hero */
      .hero { padding: 110px 0 44px; }
      .hero h1 { font-size: 1.6rem; }
      .hero-sub { font-size: 0.95rem; }
      .hero-bullets li { font-size: 0.88rem; }
      .hero-ctas .btn-secondary { display: none; }
      .hero-ctas .btn-primary { width: 100%; justify-content: center; }

      /* Header pill */
      .site-header { padding: 8px 12px; }
      .header-cta-pill { padding: 8px 14px; font-size: 0.8rem; }
      .header-attila-logo { height: 28px; }

      /* Top bar */
      .top-bar { font-size: 0.75rem; gap: 8px; padding: 8px 12px; }

      /* Trust bar — 2 colonnes sur mobile */
      .trust-grid { flex-wrap: wrap; }
      .trust-item {
        flex: 1 1 calc(50% - 1px);
        padding: 10px 10px;
        border-right: none;
        border-bottom: 1px solid var(--grey-mid);
      }
      .trust-text strong { font-size: 0.85rem; }
      .trust-text span { font-size: 0.68rem; }

      /* Sections titres */
      .section-head h2 { font-size: 1.35rem; }
      .section-head { margin-bottom: 32px; }

      /* Steps */
      .steps-grid { gap: 16px; }
      .step-card { padding: 22px 18px; }

      /* Benefits */
      .benefit-card { padding: 22px 18px; }

      /* Témoignages */
      .testimonial-card { padding: 22px 18px; }
      .case-grid { grid-template-columns: 1fr; gap: 12px; }

      /* About */
      .about-photo { min-height: 340px; }
      .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
      .about-stat { padding: 12px 8px; }
      .about-stat strong { font-size: 1.2rem; }

      /* FAQ */
      .faq-item { padding: 16px; }
      .faq-item p { font-size: 0.84rem; }

      /* Objections */
      .objection-a { padding: 0 16px 16px 16px; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer-bottom { flex-direction: column; text-align: center; }

      /* Sticky bottom bar */
      .mobile-cta-bar { display: block; }
      body { padding-bottom: 76px; }

      /* Client types */
      .client-types-inner { gap: 10px; }
      .client-type-pill { font-size: 0.78rem; padding: 6px 12px; }

      /* Formulaire */
      .hero-form { padding: 16px; }
      .hero-card-top { padding: 16px 16px; }

      /* CTA final */
      .cta-final { padding: 60px 0; }
      .cta-final h2 { font-size: 1.4rem; }
      .cta-final-buttons .btn { width: 100%; justify-content: center; }
      .cta-final-guarantees { gap: 12px; }
      .cta-final-guarantees span { font-size: 0.78rem; }
    }
    /* =============================================
       PREMIUM POLISH
    ============================================= */

    /* Header premium */
    .site-header {
      
      border-bottom: none;
     
      padding: 16px 0;
    }

    /* Top bar subtle gradient */
    .top-bar {
      background: linear-gradient(90deg, var(--blue-dark) 0%, #0C2D55 50%, var(--blue-dark) 100%);
      border-bottom: 2px solid var(--orange);
      position: static;
    }

    /* Section label with line */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }

    /* Premium card hover refinement */
    .step-card {
      border: 1px solid var(--grey-mid);
      border-top: 3px solid transparent;
      transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }

    .step-card:hover {
      border-top-color: var(--orange);
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    /* Hero card premium */
    .hero-card {
      border: 1px solid rgba(255,255,255,0.08);
    }

    /* Trust bar premium */
    .trust-bar {
      background: var(--white);
      border-top: none;
      border-bottom: 1px solid var(--grey-mid);
      box-shadow: 0 4px 16px rgba(7,24,41,0.06);
    }


    /* Objection item premium */
    .objection-item {
      transition: box-shadow 0.2s;
    }

    .objection-item:hover {
      box-shadow: var(--shadow);
    }

    /* CTA final premium */
    .cta-final h2 { text-shadow: 0 2px 20px rgba(0,0,0,0.3); }

    /* Footer refined */
    footer {
      background: #040D18;
    }

    /* Zones section */
    .zones-section {
      background: var(--grey-light);
      border-top: 1px solid var(--grey-mid);
      border-bottom: 1px solid var(--grey-mid);
    }

    /* =============================================
       LOGO PLACEMENTS
    ============================================= */
    .logo-badge-wrap {
      background: var(--blue-dark);
      padding: 9px 16px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .header-attila-logo {
      height: 40px;
      width: auto;
      display: block;
    }

    .footer-attila-logo {
      height: 44px;
      width: auto;
      display: block;
      opacity: 0.9;
    }

    .section-attila-logo {
      height: 34px;
      width: auto;
      display: block;
      opacity: 0.85;
    }

    .logo-trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background:var(--orange);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 40px;
      padding: 8px 20px 8px 10px;
      margin-bottom: 28px;
    }

    .logo-trust-badge .badge-text {
      font-size: 0.78rem;
      font-family: var(--font-head);
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.04em;
    }

    /* Logo badge pour sections claires */
    .logo-light-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--blue-dark);
      border-radius: 8px;
      padding: 8px 16px;
      margin-bottom: 20px;
    }

    .logo-light-badge .section-attila-logo {
      height: 28px;
    }

    /* Filigrane hero */
    .hero-watermark {
      position: absolute;
      right: 32px;
      bottom: 28px;
      opacity: 0.07;
      pointer-events: none;
      z-index: 0;
    }

    .hero-watermark img {
      height: 80px;
      width: auto;
      filter: brightness(10);
    }

    /* =============================================
       About section premium line
    ============================================= */
    .about-content h2::after {
      content: '';
      display: block;
      width: 48px;
      height: 3px;
      background: var(--orange);
      border-radius: 2px;
      margin-top: 14px;
    }

