/*
      SITE VITRINE - NÉON LA FABRIQUE
      Fichier HTML autonome, modifiable dans Dreamweaver.
      Pour changer les textes : recherchez les titres dans le HTML.
      Pour changer les couleurs : modifiez les variables ci-dessous.
    */

    :root {
      --fond: #05070d;
      --fond-secondaire: #0b1020;
      --bleu-neon: #158bff;
      --bleu-clair: #7cc7ff;
      --rouge-neon: #ff1d2d;
      --rouge-clair: #ff6b73;
      --tube-core: #ffffff;
      --halo-bleu: rgba(21, 139, 255, 0.95);
      --halo-rouge: rgba(255, 29, 45, 0.95);
      --texte: #f4f7ff;
      --texte-doux: #b9c3d9;
      --bordure: rgba(124, 199, 255, 0.28);
      --largeur-site: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at 20% 15%, rgba(21, 139, 255, 0.18), transparent 32%),
        radial-gradient(circle at 85% 25%, rgba(255, 29, 45, 0.18), transparent 30%),
        linear-gradient(180deg, #03040a 0%, var(--fond) 45%, #020308 100%);
      color: var(--texte);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(5, 7, 13, 0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(124, 199, 255, 0.18);
    }

    .nav {
      max-width: var(--largeur-site);
      margin: auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      position: relative;
      display: inline-grid;
      place-items: center;
      width: clamp(82px, 9vw, 118px);
      aspect-ratio: 1/1;
      padding: 7px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(21, 139, 255, 0.14), rgba(255, 29, 45, 0.08) 44%, rgba(2, 3, 8, 0.82) 72%);
      box-shadow:
        0 0 14px rgba(21, 139, 255, 0.42),
        0 0 18px rgba(255, 29, 45, 0.28),
        inset 0 0 18px rgba(255, 255, 255, 0.05);
      overflow: hidden;
    }

    .brand::before {
      content: "";
      position: absolute;
      inset: 4px;
      border-radius: 50%;
      border-left: 2px solid rgba(21, 139, 255, 0.92);
      border-right: 2px solid rgba(255, 29, 45, 0.92);
      box-shadow:
        0 0 12px rgba(21, 139, 255, 0.48),
        0 0 16px rgba(255, 29, 45, 0.34);
      pointer-events: none;
    }

    .brand-logo {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      height: auto;
      border-radius: 50%;
      filter:
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.36))
        drop-shadow(0 0 10px rgba(21, 139, 255, 0.42))
        drop-shadow(0 0 12px rgba(255, 29, 45, 0.28));
    }
    .nav-links {
      display: flex;
      gap: 22px;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--texte-doux);
    }

    .nav-links a.active {
      color: var(--bleu-clair);
      text-shadow: 0 0 12px var(--bleu-neon);
    }


    .nav-item {
      position: relative;
    }

    .has-submenu {
      display: inline-flex;
      align-items: center;
      padding-bottom: 18px;
      margin-bottom: -18px;
    }


    .has-submenu::after {
      content: "";
      position: absolute;
      left: -18px;
      right: -18px;
      top: 100%;
      height: 18px;
    }
    .nav-parent {
      cursor: default;
    }

    .submenu {
      position: absolute;
      top: calc(100% - 2px);
      left: 50%;
      min-width: 260px;
      padding: 12px;
      border: 1px solid rgba(124, 199, 255, 0.2);
      border-radius: 18px;
      background: rgba(5, 7, 13, 0.96);
      box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.34),
        0 0 24px rgba(21, 139, 255, 0.16);
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 4px);
      transition: 0.2s ease;
    }

    .submenu a {
      display: block;
      padding: 11px 12px;
      border-radius: 12px;
      color: var(--texte-doux);
      white-space: nowrap;
      text-transform: none;
      letter-spacing: 0;
      font-size: 14px;
    }

    .submenu a:hover,
    .submenu a.active {
      color: var(--bleu-clair);
      background: rgba(21, 139, 255, 0.08);
      text-shadow: 0 0 12px var(--bleu-neon);
    }

    .has-submenu:hover .submenu,
    .has-submenu:focus-within .submenu {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }
    .nav-links a:hover {
      color: var(--bleu-clair);
      text-shadow: 0 0 12px var(--bleu-neon);
    }

    .hero {
      min-height: 78vh;
      display: flex;
      align-items: center;
      padding: 64px 24px 48px;
    }

    .hero-inner {
      max-width: var(--largeur-site);
      margin: auto;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 52px;
      align-items: center;
    }

    .badge {
      display: inline-block;
      margin-bottom: 22px;
      padding: 8px 16px;
      border: 1px solid var(--bordure);
      border-radius: 999px;
      color: var(--bleu-clair);
      background: rgba(21, 139, 255, 0.08);
      box-shadow: 0 0 22px rgba(21, 139, 255, 0.18);
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    h1 {
      font-size: clamp(38px, 5.6vw, 72px);
      line-height: 1.06;
      margin-bottom: 22px;
      letter-spacing: 0.5px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 700;
      color: var(--texte);
      text-shadow: 0 0 14px rgba(21, 139, 255, 0.16);
    }

    .script-title {
      display: block;
      margin-top: 6px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(34px, 4.8vw, 58px);
      font-style: normal;
      font-weight: 600;
      letter-spacing: 0;
      color: #b9121f;
      text-shadow: 0 0 10px rgba(185, 18, 31, 0.24);
    }
    .hero p {
      max-width: 640px;
      color: var(--texte-doux);
      font-size: 18px;
      margin-bottom: 30px;
    }


    .made-in-france {
      display: block;
      width: min(100%, 320px);
      height: auto;
      margin: -8px 0 18px;
      filter:
        drop-shadow(0 0 12px rgba(21, 139, 255, 0.25))
        drop-shadow(0 0 14px rgba(255, 29, 45, 0.18));
    }

    .decennial-badge {
      width: min(100%, 420px);
      margin: 0 0 30px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(8, 12, 25, 0.78));
      box-shadow: 0 0 22px rgba(21, 139, 255, 0.14), 0 0 18px rgba(255, 29, 45, 0.1);
    }

    .decennial-logo {
      width: 150px;
      height: auto;
      display: block;
      flex: 0 0 150px;
      padding: 8px 10px;
      border-radius: 10px;
      background: #ffffff;
      object-fit: contain;
      box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
    }

    .decennial-copy strong {
      display: block;
      color: #ffffff;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.7px;
    }

    .decennial-copy span {
      display: block;
      margin-top: 4px;
      color: var(--texte-doux);
      font-size: 14px;
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 13px;
      transition: 0.25s ease;
    }

    .btn-primary {
      color: white;
      background: var(--rouge-neon);
      box-shadow: 0 0 18px rgba(255, 29, 45, 0.55), inset 0 0 12px rgba(255,255,255,0.25);
    }

    .btn-secondary {
      color: var(--bleu-clair);
      border: 1px solid var(--bleu-neon);
      box-shadow: 0 0 18px rgba(21, 139, 255, 0.25), inset 0 0 14px rgba(21, 139, 255, 0.12);
    }

    .btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.15);
    }

    .logo-card {
      position: relative;
      aspect-ratio: 1/1;
      max-width: 560px;
      margin: auto;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: radial-gradient(circle, rgba(21, 139, 255, 0.12), rgba(255, 29, 45, 0.08) 38%, transparent 70%);
      filter:
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.36))
        drop-shadow(0 0 24px rgba(21, 139, 255, 0.72))
        drop-shadow(0 0 38px rgba(255, 29, 45, 0.52));
    }

    .logo-card::before {
      content: "";
      position: absolute;
      inset: 7%;
      border-radius: 50%;
      box-shadow:
        0 0 34px rgba(21, 139, 255, 0.42),
        0 0 46px rgba(255, 29, 45, 0.34),
        inset 0 0 38px rgba(255, 255, 255, 0.06);
      pointer-events: none;
    }

    .hero-logo {
      position: relative;
      z-index: 1;
      display: block;
      width: min(100%, 560px);
      height: auto;
      border-radius: 50%;
    }
    section {
      padding: 90px 24px;
    }

    .container {
      max-width: var(--largeur-site);
      margin: auto;
    }

    .section-title {
      margin-bottom: 16px;
      font-size: clamp(30px, 3.2vw, 44px);
      line-height: 1.15;
      font-weight: 650;
      letter-spacing: 0.2px;
      color: var(--texte);
    }

    .section-title span {
      color: var(--bleu-clair);
      text-shadow: 0 0 8px rgba(21, 139, 255, 0.22);
    }

    .section-intro {
      max-width: 780px;
      color: var(--texte-doux);
      font-size: 18px;
      margin-bottom: 42px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .card {
      padding: 28px;
      border-radius: 24px;
      border: 1px solid rgba(124, 199, 255, 0.18);
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
      box-shadow: 0 20px 60px rgba(0,0,0,0.28);
    }

    .card h3 {
      margin-bottom: 12px;
      color: var(--bleu-clair);
      text-shadow: 0 0 10px rgba(21,139,255,0.65);
      font-size: 22px;
    }

    .card p,
    .card li {
      color: var(--texte-doux);
    }

    .card ul {
      margin-top: 14px;
      padding-left: 18px;
    }



    .local-seo-section {
      padding-top: 54px;
    }

    .local-seo-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .text-link {
      display: inline-flex;
      margin-top: 18px;
      color: var(--rouge-clair);
      font-weight: 700;
      text-shadow: 0 0 10px rgba(255, 29, 45, 0.25);
    }

    .local-landing-hero {
      padding-bottom: 58px;
    }

    .local-landing-body {
      padding-top: 48px;
    }
    .service-choice-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 8px;
    }

    .service-choice {
      position: relative;
      min-height: 230px;
      padding: 34px;
      border-radius: 28px;
      border: 1px solid rgba(124, 199, 255, 0.2);
      background:
        linear-gradient(135deg, rgba(21,139,255,0.18), transparent 42%, rgba(255,29,45,0.15)),
        rgba(8, 12, 25, 0.86);
      box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.28),
        0 0 24px rgba(21, 139, 255, 0.12);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 18px;
      transition: 0.25s ease;
      overflow: hidden;
    }

    .service-choice::after {
      content: "→";
      position: absolute;
      right: 30px;
      bottom: 24px;
      color: var(--rouge-clair);
      font-size: 34px;
      line-height: 1;
      text-shadow: 0 0 14px rgba(255, 29, 45, 0.58);
    }

    .service-choice:hover {
      transform: translateY(-4px);
      border-color: rgba(124, 199, 255, 0.46);
      box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.34),
        0 0 30px rgba(21, 139, 255, 0.2),
        0 0 30px rgba(255, 29, 45, 0.14);
    }

    .service-choice-kicker {
      color: var(--bleu-clair);
      font-size: 13px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      text-shadow: 0 0 12px rgba(21,139,255,0.55);
    }

    .service-choice strong {
      max-width: 420px;
      color: var(--texte);
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.05;
    }

    .service-choice span:last-child {
      max-width: 520px;
      padding-right: 42px;
      color: var(--texte-doux);
    }

    .enterprise-services-page .enterprise-services-list {
      padding-bottom: 46px;
    }

    .enterprise-services-page .enterprise-audience-section {
      padding-top: 34px;
      padding-bottom: 36px;
    }

    .enterprise-services-page .enterprise-cta-section {
      padding-top: 34px;
    }

    .enterprise-services-page .enterprise-audience-title {
      white-space: nowrap;
    }

    .particulier-services-page .particulier-services-list {
      padding-bottom: 44px;
    }

    .particulier-services-page .particulier-durable-section {
      padding-top: 32px;
      padding-bottom: 30px;
    }

    .particulier-services-page .particulier-durable-section .info-band {
      gap: 22px;
    }

    .particulier-services-page .particulier-durable-section .section-title {
      margin-bottom: 10px;
    }

    .particulier-services-page .particulier-durable-section p {
      margin-bottom: 0;
    }

    .particulier-services-page .particulier-cta-section {
      padding-top: 30px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .service-card {
      padding: 30px;
      border-radius: 28px;
      background: rgba(8, 12, 25, 0.82);
      border: 1px solid rgba(255,255,255,0.08);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: linear-gradient(135deg, rgba(21,139,255,0.25), transparent 42%, rgba(255,29,45,0.18));
    }


    .service-illustration {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      height: clamp(170px, 18vw, 220px);
      margin-bottom: 22px;
      border-radius: 18px;
      object-fit: cover;
      object-position: center;
      background: rgba(0, 0, 0, 0.24);
      box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.34),
        0 0 18px rgba(21, 139, 255, 0.16),
        0 0 22px rgba(255, 29, 45, 0.1);
    }
    .service-card h3,
    .service-card p,
    .service-card ul {
      position: relative;
    }

    .service-card h3 {
      margin-bottom: 14px;
      font-size: 24px;
      color: var(--rouge-clair);
      text-shadow: 0 0 12px rgba(255,29,45,0.65);
    }

    .service-card p,
    .service-card li {
      color: var(--texte-doux);
    }

    .service-card ul {
      margin-top: 14px;
      padding-left: 18px;
    }


    .content-hero {
      padding-top: 100px;
    }

    .neon-intro {
      padding-bottom: 52px;
    }

    .neon-intro + section {
      padding-top: 54px;
    }

    .split-content {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 48px;
      align-items: center;
    }

    .feature-photo {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(124, 199, 255, 0.18);
      box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.36),
        0 0 28px rgba(21, 139, 255, 0.16),
        0 0 34px rgba(255, 29, 45, 0.1);
    }

    .feature-photo img {
      display: block;
      width: 100%;
      height: clamp(280px, 38vw, 460px);
      object-fit: cover;
    }


    .wide-neon-photo {
      margin: -12px 0 42px;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(124, 199, 255, 0.18);
      box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.36),
        0 0 30px rgba(255, 29, 45, 0.18);
    }

    .between-advantages-photo {
      padding: 0 24px;
      margin: -48px 0;
    }

    .wide-neon-photo.advantages-break-photo {
      margin: 34px 0 36px;
    }

    .wide-neon-photo.after-advantages {
      margin: -12px 0 42px;
    }

    .wide-neon-photo img {
      display: block;
      width: 100%;
      height: clamp(280px, 42vw, 520px);
      object-fit: cover;
      object-position: center;
    }
    .advantage-grid {
      grid-template-columns: repeat(3, 1fr);
    }


    .neon-comparison-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
      gap: 28px;
      align-items: stretch;
    }

    .neon-comparison-card {
      display: block;
      height: 100%;
    }

    .neon-comparison-card .section-title {
      margin-bottom: 16px;
    }

    .neon-comparison-card p {
      margin-bottom: 18px;
    }

    .neon-comparison-card ul {
      margin-top: 0;
    }

    .comparison-photo {
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(124, 199, 255, 0.18);
      background: rgba(0, 0, 0, 0.32);
      box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.36),
        0 0 30px rgba(21, 139, 255, 0.16),
        0 0 24px rgba(255, 29, 45, 0.12);
    }

    .comparison-photo img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 430px;
      object-fit: cover;
      object-position: center;
    }
    .info-band {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 32px;
      align-items: start;
      padding: 36px;
      border-radius: 28px;
      border: 1px solid var(--bordure);
      background: rgba(8, 12, 25, 0.86);
      box-shadow: 0 0 28px rgba(21,139,255,0.12);
    }

    .info-band p,
    .info-band li {
      color: var(--texte-doux);
    }

    .info-band ul {
      padding-left: 18px;
    }


    .info-band.neon-comparison-card {
      display: block;
      grid-template-columns: none;
    }
    .info-band li + li {
      margin-top: 10px;
    }


    .gallery-hero {
      padding-bottom: 78px;
    }

    .gallery-page .section-intro {
      max-width: 720px;
    }

    .gallery-carousel {
      margin-top: 34px;
    }

    .gallery-stage {
      position: relative;
      min-height: clamp(320px, 52vw, 620px);
      border-radius: 24px;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.42);
      border: 1px solid rgba(124, 199, 255, 0.18);
      box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(21, 139, 255, 0.14),
        0 0 32px rgba(255, 29, 45, 0.12);
    }

    .gallery-slide {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s ease;
    }

    .gallery-slide.is-active {
      opacity: 1;
      pointer-events: auto;
    }

    .gallery-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #05070f;
    }

    .gallery-slide figcaption {
      position: absolute;
      left: 22px;
      bottom: 18px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(3, 6, 15, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--texte);
      font-weight: 700;
      backdrop-filter: blur(10px);
    }

    .gallery-nav {
      position: absolute;
      z-index: 3;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(3, 6, 15, 0.72);
      color: var(--texte);
      font-size: 34px;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 0 18px rgba(21, 139, 255, 0.16);
    }

    .gallery-prev { left: 18px; }
    .gallery-next { right: 18px; }

    .gallery-meta {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      margin: 18px 0 16px;
      color: var(--texte-doux);
    }

    .gallery-current {
      color: var(--texte);
      font-size: 18px;
    }

    .gallery-count {
      color: var(--bleu-clair);
    }

    .gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
      gap: 10px;
    }

    .gallery-thumb {
      aspect-ratio: 16 / 9;
      padding: 0;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      cursor: pointer;
      opacity: 0.62;
      transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    }

    .gallery-thumb.is-active,
    .gallery-thumb:hover {
      opacity: 1;
      transform: translateY(-2px);
      border-color: rgba(124, 199, 255, 0.64);
    }

    .gallery-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .contact-wrap {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 32px;
      align-items: start;
    }

    .contact-box {
      padding: 30px;
      border-radius: 28px;
      background: rgba(8, 12, 25, 0.86);
      border: 1px solid var(--bordure);
      box-shadow: 0 0 28px rgba(21,139,255,0.12);
    }

    .contact-line {
      margin-bottom: 16px;
      color: var(--texte-doux);
    }

    .contact-line strong {
      display: block;
      color: var(--bleu-clair);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 13px;
      margin-bottom: 2px;
    }


    .page-placeholder {
      max-width: 760px;
    }

    .page-placeholder h3 {
      margin-bottom: 10px;
      color: var(--bleu-clair);
      text-shadow: 0 0 10px rgba(21,139,255,0.65);
      font-size: 24px;
    }

    .page-placeholder p {
      margin-bottom: 22px;
      color: var(--texte-doux);
    }
    form {
      display: grid;
      gap: 16px;
    }

    label {
      font-size: 13px;
      text-transform: uppercase;
      color: var(--bleu-clair);
      letter-spacing: 1px;
    }

    input,
    textarea {
      width: 100%;
      margin-top: 7px;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid rgba(124, 199, 255, 0.26);
      background: rgba(0,0,0,0.38);
      color: white;
      outline: none;
      font-family: inherit;
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    input:focus,
    textarea:focus {
      border-color: var(--bleu-neon);
      box-shadow: 0 0 16px rgba(21,139,255,0.35);
    }

    .form-note {
      color: var(--texte-doux);
      font-size: 13px;
    }

    .site-footer {
      padding: 32px 24px;
      border-top: 1px solid rgba(124, 199, 255, 0.16);
      color: var(--texte-doux);
      text-align: center;
      background: rgba(0,0,0,0.28);
    }


    @media (max-width: 900px) {

      .enterprise-services-page .enterprise-audience-title {
        white-space: normal;
      }

      .neon-comparison-layout {
        grid-template-columns: 1fr;
      }

      .comparison-photo img {
        height: 360px;
        min-height: 0;
      }
      .hero-inner,
      .split-content,
      .info-band,
      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .cards,
      .local-seo-grid,
      .services-grid,
      .advantage-grid {
        grid-template-columns: 1fr;
      }

      .service-choice-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .service-choice {
        min-height: auto;
        padding: 26px 22px 62px;
      }

      .service-choice strong {
        max-width: none;
        font-size: clamp(24px, 8vw, 34px);
        line-height: 1.12;
        overflow-wrap: normal;
        hyphens: none;
      }

      .service-choice span:last-child {
        max-width: none;
        padding-right: 0;
      }

      .feature-photo img,
      .wide-neon-photo img {
        height: 260px;
      }

      .gallery-stage {
        min-height: 300px;
      }

      .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
      }

      .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 30px;
      }

      .decennial-badge {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
      }

      .nav {
        flex-direction: column;
      }

      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }