    :root {
      --color-primary: #2563eb;
      --color-primary-dark: #1d4ed8;
      --color-primary-light: #dbeafe;
      --color-cyan: #06b6d4;
      --color-cyan-light: #cffafe;
      --color-slate-50: #f8fafc;
      --color-slate-100: #f1f5f9;
      --color-slate-200: #e2e8f0;
      --color-slate-300: #cbd5e1;
      --color-slate-400: #94a3b8;
      --color-slate-500: #64748b;
      --color-slate-600: #475569;
      --color-slate-700: #334155;
      --color-slate-800: #1e293b;
      --color-slate-900: #0f172a;
      --color-white: #ffffff;
      --color-yellow-400: #facc15;
      --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
      --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
      --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
      --radius-sm: 0.375rem;
      --radius-md: 0.5rem;
      --radius-lg: 0.75rem;
      --radius-xl: 1rem;
      --radius-2xl: 1.5rem;
      --radius-3xl: 2rem;
      --radius-full: 9999px;
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.5;
      color: var(--color-slate-900);
      background-color: var(--color-white);
      -webkit-font-smoothing: antialiased;
    }

    .container {
      width: 90%;
      margin: 0 auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: var(--radius-lg);
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
    }

    .btn-primary {
      background-color: var(--color-primary);
      color: var(--color-white);
      box-shadow: var(--shadow-lg);
    }

    .btn-primary:hover {
      background-color: var(--color-primary-dark);
      box-shadow: var(--shadow-xl);
    }

    .btn-secondary {
      background-color: var(--color-white);
      color: var(--color-slate-900);
      box-shadow: var(--shadow-xl);
    }

    .btn-secondary:hover {
      background-color: var(--color-slate-100);
    }

    .btn-outline {
      background-color: transparent;
      color: var(--color-slate-900);
      border: 1px solid var(--color-slate-200);
    }

    .btn-outline:hover {
      background-color: var(--color-slate-50);
    }

    .btn-lg {
      padding: 1rem 2rem;
      font-size: 1rem;
    }

    .btn-full {
      width: 100%;
    }

	table {
	  width: 100%;
	  border-collapse: collapse;
	  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	  background-color: var(--color-white);
	  border-radius: var(--radius-lg);
	  overflow: hidden;
	  box-shadow: var(--shadow-md);
	}

	thead {
	  background-color: var(--color-primary);
	  color: var(--color-white);
	}

	th {
	  padding: 1rem;
	  text-align: left;
	  font-weight: 600;
	  font-size: 0.875rem;
	  text-transform: uppercase;
	  letter-spacing: 0.05em;
	  border-bottom: 2px solid var(--color-primary-dark);
	}

	tbody tr {
	  border-bottom: 1px solid var(--color-slate-200);
	  transition: background-color 0.2s ease;
	}

	tbody tr:nth-child(even) {
	  background-color: var(--color-slate-50);
	}

	tbody tr:hover {
	  background-color: var(--color-primary-light);
	}

	td {
	  padding: 1rem;
	  color: var(--color-slate-700);
	  font-size: 0.9375rem;
	  line-height: 1.5;
	}

	tbody tr:last-child {
	  border-bottom: none;
	}


    .card {
      background-color: var(--color-white);
      border-radius: var(--radius-xl);
      border: 2px solid var(--color-slate-200);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .card:hover {
      box-shadow: var(--shadow-lg);
    }

    .card-content {
      padding: 1.5rem;
    }

    .icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .icon-sm {
      width: 16px;
      height: 16px;
    }

    .icon-lg {
      width: 32px;
      height: 32px;
    }

    .icon-xl {
      width: 40px;
      height: 40px;
    }

    .breadcrumb {
      background-color: var(--color-white);
      border-bottom: 1px solid var(--color-slate-200);
      padding: 0.5rem 0;
      box-shadow: var(--shadow-sm);
    }

    .breadcrumb-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .breadcrumb-nav {
      display: flex;
      align-items: center;
      font-size: 0.875rem;
      color: var(--color-slate-600);
    }

    .breadcrumb-link {
      color: var(--color-slate-600);
      transition: color 0.2s ease;
    }

    .breadcrumb-link:hover {
      color: var(--color-primary);
    }

    .breadcrumb-separator {
      margin: 0 0.5rem;
      color: var(--color-slate-400);
    }

    .breadcrumb-current {
      color: var(--color-primary-dark);
      font-weight: 600;
    }

    .breadcrumb-cta {
      display: none;
    }

    .sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
      padding: 0.75rem 0;
      z-index: 50;
      box-shadow: 0 -4px 12px -1px rgba(0, 0, 0, 0.15);
      transform: translateY(100%);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .sticky-bar.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .sticky-bar-container {
      width: 90%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .sticky-bar-content {
      flex: 1;
    }

    .sticky-bar-title {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--color-white);
      margin-bottom: 0.25rem;
    }

    .sticky-bar-subtitle {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.9);
      margin: 0;
    }

    .sticky-bar-btn {
      background-color: var(--color-white);
      color: var(--color-primary);
      padding: 0.625rem 3rem;
      font-weight: 600;
      border-radius: var(--radius-lg);
      white-space: nowrap;
      transition: all 0.2s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .sticky-bar-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

	@media (max-width: 480px) {
	  .sticky-bar {
		padding: 0.6rem 0; /* moins haut */
	  }

	  .sticky-bar-container {
		width: 92%;
		flex-direction: column;   /* plus de 2 colonnes */
		align-items: stretch;     /* bouton full width */
		gap: 0.35rem;
	  }

	  .sticky-bar-content {
		flex: initial;
	  }

	  .sticky-bar-title {
		font-size: 0.95rem;       /* texte plus petit */
		margin-bottom: 0.1rem;
		line-height: 1.15;
	  }

	  .sticky-bar-subtitle {
		font-size: 0.75rem;       /* texte plus petit */
		line-height: 1.2;
	  }

	  .sticky-bar-btn {
		width: 100%;
		padding: 0.5rem 1rem;     /* bouton moins haut + adapté mobile */
		border-radius: var(--radius-lg);
		white-space: normal;       /* au cas où ça wrap */
	  }

	  .sticky-bar-btn:hover {
		transform: none; /* évite l'effet "saut" sur mobile */
	  }
	}


    .hero-section {
      background: linear-gradient(to bottom right, var(--color-primary-light), var(--color-white), var(--color-primary-light));
      padding: 2rem 0 3rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .hero-title {
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--color-slate-900);
      line-height: 1.2;
    }

    .hero-subtitle {
      font-size: 1rem;
      color: var(--color-slate-700);
      line-height: 1.7;
    }

    .hero-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding-top: 1rem;
    }

    .hero-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .hero-feature-icon {
      color: var(--color-primary);
      margin-top: 0.25rem;
      flex-shrink: 0;
    }

    .hero-feature-title {
      font-weight: 600;
      color: var(--color-slate-900);
    }

    .hero-feature-text {
      color: var(--color-slate-600);
    }

    .form-card {
      background-color: var(--color-white);
      border: 2px solid #bfdbfe;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      animation: breathing-border 3s ease-in-out infinite;
    }

    @keyframes breathing-border {
      0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.12), var(--shadow-xl); }
      50% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.18), 0 0 25px rgba(37, 99, 235, 0.1), var(--shadow-xl); }
    }

    .form-header {
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
      padding: 1.5rem;
      text-align: left;
    }

    .form-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-white);
      margin-bottom: 0.5rem;
    }

    .form-rating {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .form-stars {
      display: flex;
      gap: 0.125rem;
    }

    .form-star {
      color: var(--color-yellow-400);
    }

	.form-badge {
	  font-size: 0.75rem;
	  font-weight: 600;
	  color: var(--color-white);
	  background-color: rgba(255, 255, 255, 0.2);
	  padding: 0.125rem 0.5rem;
	  border-radius: var(--radius-full);
	}

	/* Mobile */
	@media (max-width: 480px) {
	  .form-badge {
		font-size: 0.625rem;   /* ~10px */
		padding: 0.1rem 0.4rem;
	  }
	}


    .form-subtitle {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.85);
    }

    .form-body {
      padding: 1rem 1.5rem 1.5rem;
    }

    .services-section {
      padding: 4rem 0 6rem;
      background: linear-gradient(to bottom, var(--color-white), var(--color-slate-50));
    }

    .section-header {
      text-align: center;
      max-width: 48rem;
      margin: 0 auto 3rem;
    }

    .section-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-slate-900);
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1rem;
      color: var(--color-slate-600);
    }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .service-card {
      border: 2px solid var(--color-slate-200);
      transition: all 0.3s ease;
      position: relative;
    }

    .service-card:hover {
      box-shadow: var(--shadow-xl);
      border-color: #bfdbfe;
      transform: translateY(-4px);
    }

    .service-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: linear-gradient(to right, var(--color-primary), var(--color-cyan));
      color: var(--color-white);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.25rem 0.75rem;
      border-radius: var(--radius-full);
      z-index: 10;
    }

    .service-icon-wrapper {
      margin-bottom: 1rem;
      padding: 0.75rem;
      background: linear-gradient(to bottom right, #dbeafe, #dbeafe);
      border-radius: var(--radius-lg);
      width: fit-content;
    }

    .service-icon {
      color: var(--color-primary-dark);
    }

    .service-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .service-text {
      color: var(--color-slate-600);
      line-height: 1.6;
    }

    .service-list {
      list-style: none;
      padding: 0;
      margin: 0.75rem 0 0 0;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .service-list-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.92rem;
      color: var(--color-slate-600);
    }

    .service-list-icon {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      color: #16a34a;
    }

    .services-cta {
      background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark), #4f46e5);
      border-radius: var(--radius-2xl);
      padding: 2rem;
      box-shadow: var(--shadow-2xl);
    }

    .services-cta-content {
      text-align: center;
      color: var(--color-white);
      max-width: 48rem;
      margin: 0 auto;
    }

    .services-cta-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .services-cta-text {
      font-size: 1rem;
      color: #dbeafe;
      margin-bottom: 1.5rem;
    }

    .services-cta-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .services-cta-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background-color: rgba(255, 255, 255, 0.2);
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
      backdrop-filter: blur(4px);
      font-weight: 500;
    }

    .seo-section {
      padding: 4rem 0 6rem;
      background-color: var(--color-white);
    }

    .seo-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-slate-900);
      margin-bottom: 2rem;
    }

    .seo-content {
      color: var(--color-slate-700);
      max-width: none;
    }

    .seo-text {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .seo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .seo-card {
      background: linear-gradient(to bottom right, var(--color-primary-light), var(--color-primary-light));
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      border: 2px solid #dbeafe;
      transition: box-shadow 0.3s ease;
    }

    .seo-card:hover {
      box-shadow: var(--shadow-xl);
    }

    .seo-card-icon {
      color: var(--color-primary);
      margin-bottom: 0.75rem;
    }

    .seo-card-title {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .seo-card-text {
      font-size: 0.875rem;
      color: var(--color-slate-600);
    }

    .seo-subtitle {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-slate-900);
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

	.seo-subtitle-h4 {
	  font-size: 1.3rem;
	  font-weight: 600;
	  color: var(--color-slate-900);
	  margin-top: 2rem;
	  margin-bottom: 1rem;
	}

    .seo-list {
      list-style: disc;
      padding-left: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .seo-list li {
      margin-bottom: 0.5rem;
      line-height: 1.7;
    }

    .seo-cta {
      background: linear-gradient(to bottom right, var(--color-slate-900), #1e3a8a, var(--color-slate-800));
      padding: 2.5rem;
      border-radius: var(--radius-3xl);
      box-shadow: var(--shadow-2xl);
      color: var(--color-white);
      margin-top: 3rem;
      position: relative;
      overflow: hidden;
    }

    .seo-cta::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 16rem;
      height: 16rem;
      background-color: rgba(37, 99, 235, 0.2);
      border-radius: 50%;
      filter: blur(48px);
    }

    .seo-cta::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 16rem;
      height: 16rem;
      background-color: rgba(6, 182, 212, 0.2);
      border-radius: 50%;
      filter: blur(48px);
    }

    .seo-cta-content {
      position: relative;
      z-index: 10;
      max-width: 64rem;
      margin: 0 auto;
    }

    .seo-cta-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
    }

    .seo-cta-badge {
      display: inline-block;
      background-color: rgba(6, 182, 212, 0.2);
      color: #67e8f9;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-full);
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .seo-cta-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .seo-cta-text {
      font-size: 1.25rem;
      color: #dbeafe;
      margin-bottom: 1.5rem;
    }

    .seo-cta-list {
      list-style: none;
      margin-bottom: 2rem;
    }

    .seo-cta-list li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      font-size: 1rem;
    }

    .seo-cta-check {
      background-color: var(--color-cyan);
      border-radius: 50%;
      padding: 0.25rem;
      flex-shrink: 0;

      /* Fix alignement icône (propre et stable) */
      width: 26px;
      height: 26px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 0;
    }

    .seo-cta-stats {
      display: none;
    }

    .offer-box {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: linear-gradient(to right, #fef3c7, #fde68a);
      border: 1px solid #fbbf24;
      border-radius: var(--radius-lg);
      padding: 0.75rem 1rem;
      margin: 1rem 1.5rem 0;
    }

    .offer-icon {
      font-size: 28px;
      line-height: 1;
      flex-shrink: 0;
    }

    .offer-text {
      font-size: 0.8rem;
      line-height: 1.4;
      color: #92400E;
    }

    .offer-text strong {
      font-weight: 700;
    }

    .gmb-section {
      padding: 4rem 0 6rem;
      background: linear-gradient(to bottom, var(--color-slate-50), var(--color-white));
    }

    .gmb-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      max-width: 64rem;
      margin: 0 auto 3rem;
    }

    .gmb-card {
      border: 2px solid var(--color-slate-200);
      transition: box-shadow 0.3s ease;
    }

    .gmb-card:hover {
      box-shadow: var(--shadow-lg);
    }

    .gmb-name {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--color-slate-900);
      margin-bottom: 1rem;
    }

    .gmb-info {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .gmb-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .gmb-item-icon {
      color: var(--color-slate-600);
      flex-shrink: 0;
      margin-top: 0.125rem;
    }

    .gmb-address {
      color: var(--color-slate-900);
    }

    .gmb-postal {
      color: var(--color-slate-600);
    }

    .gmb-phone {
      color: var(--color-slate-900);
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .gmb-phone:hover {
      color: var(--color-slate-700);
    }

    .gmb-cta {
      padding-top: 1rem;
      margin-top: 1rem;
      border-top: 1px solid var(--color-slate-200);
    }

    .dual-cta-section {
      padding: 2.5rem 0 3rem;
      background: linear-gradient(to bottom, var(--color-slate-50), var(--color-white));
    }

    .dual-cta-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 80rem;
      margin: 0 auto;
    }

    .dual-cta-card {
      padding: 2rem; /* moins compressé sur large tablettes */
      border-radius: var(--radius-3xl);
      box-shadow: var(--shadow-2xl);
      color: var(--color-white);
      position: relative;
      overflow: hidden;
    }

    .dual-cta-card-blue {
      background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-dark), var(--color-cyan));
    }

    .dual-cta-card-dark {
      background: linear-gradient(to bottom right, var(--color-slate-900), var(--color-slate-800), var(--color-slate-900));
    }

    .dual-cta-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 8rem;
      height: 8rem;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transform: translate(4rem, -4rem);
    }

    .dual-cta-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 6rem;
      height: 6rem;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transform: translate(-3rem, 3rem);
    }

    .dual-cta-content {
      position: relative;
      z-index: 10;
    }

    .dual-cta-badge {
      display: inline-block;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-full);
      font-size: 0.75rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .dual-cta-badge-cyan {
      background-color: rgba(34, 211, 238, 0.3);
      color: #cffafe;
    }

    .dual-cta-badge-blue {
      background-color: rgba(37, 99, 235, 0.3);
      color: #bfdbfe;
    }

    .dual-cta-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .dual-cta-text {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }

    .dual-cta-card-blue .dual-cta-text {
      color: #dbeafe;
    }

    .dual-cta-card-dark .dual-cta-text {
      color: var(--color-slate-300);
    }

    .dual-cta-list {
      list-style: none;
      margin-bottom: 2rem;
    }

    .dual-cta-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .dual-cta-check {
      border-radius: 50%;
      padding: 0.25rem;
      margin-top: 0.25rem;
      flex-shrink: 0;

      /* Fix "icônes buguées" : cercle stable + SVG centré */
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 0;
    }

    .dual-cta-check-cyan {
      background-color: #22d3ee;
    }

    .dual-cta-check-blue {
      background-color: var(--color-primary);
    }

    .dual-cta-btn-secondary {
      background-color: var(--color-white);
      color: var(--color-slate-900);
      width: 100%;
      padding: 1.5rem;
      font-size: 1rem;
      font-weight: 700;
      box-shadow: var(--shadow-xl);
    }

    .dual-cta-btn-secondary:hover {
      box-shadow: var(--shadow-2xl);
    }

    .dual-cta-btn-gradient {
      background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
      color: var(--color-white);
      width: 100%;
      padding: 1.5rem;
      font-size: 1rem;
      font-weight: 700;
      box-shadow: var(--shadow-xl);
    }

    .dual-cta-btn-gradient:hover {
      background: linear-gradient(to right, var(--color-primary-dark), #3730a3);
      box-shadow: var(--shadow-2xl);
    }

    .linking-section {
      padding: 4rem 0 6rem;
      background: linear-gradient(to bottom, var(--color-white), var(--color-slate-50));
    }

    .linking-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .linking-header-icon {
      color: var(--color-slate-900);
    }

    .linking-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-slate-900);
    }

    .linking-subtitle {
      font-size: 1rem;
      color: var(--color-slate-600);
      margin-bottom: 2rem;
    }

    .linking-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .linking-card {
      padding: 1rem;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .linking-card:hover {
      box-shadow: var(--shadow-lg);
      border-color: var(--color-slate-300);
    }

    .linking-city {
      font-weight: 600;
      color: var(--color-slate-900);
      margin-bottom: 0.25rem;
    }

    .linking-distance {
      font-size: 0.875rem;
      color: var(--color-slate-500);
    }

    .linking-dept-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .linking-dept-card {
      padding: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .linking-dept-card:hover {
      box-shadow: var(--shadow-lg);
      border-color: var(--color-slate-300);
    }

    .linking-dept-name {
      font-weight: 600;
      color: var(--color-slate-900);
      font-size: 1rem;
    }

    .linking-dept-arrow {
      color: var(--color-slate-400);
    }

    .linking-cta {
      background: linear-gradient(to bottom right, var(--color-slate-900), var(--color-slate-800));
      color: var(--color-white);
      padding: 2rem 3rem;
      border-radius: var(--radius-lg);
      text-align: center;
    }

    .linking-cta-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .linking-cta-text {
      color: var(--color-slate-200);
      font-size: 1rem;
      margin-bottom: 2rem;
      max-width: 42rem;
      margin-left: auto;
      margin-right: auto;
    }

    .dept-cities-section {
      padding: 3rem 0 4rem;
      background-color: var(--color-white);
    }

    .dept-cities-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-slate-900);
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .dept-cities-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
    }

    .dept-cities-link {
      display: inline-block;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      color: var(--color-slate-700);
      background-color: var(--color-slate-50);
      border: 1px solid var(--color-slate-200);
      border-radius: var(--radius-full);
      transition: all 0.2s ease;
    }

    .dept-cities-link:hover {
      color: var(--color-primary);
      background-color: var(--color-primary-light);
      border-color: var(--color-primary);
    }

    footer {
      background-color: var(--color-slate-900);
      color: var(--color-slate-300);
      padding: 3rem 0 4rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-title {
      color: var(--color-white);
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .footer-text {
      font-size: 0.875rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .footer-subtitle {
      color: var(--color-white);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
    }

    .footer-link {
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
    }

    .footer-link a {
      color: var(--color-slate-300);
      transition: color 0.2s ease;
    }

    .footer-link a:hover {
      color: var(--color-white);
    }

    .social-links {
      display: flex;
      gap: 0.75rem;
    }

    .social-link {
      background-color: var(--color-slate-800);
      padding: 0.5rem;
      border-radius: var(--radius-lg);
      transition: background-color 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .social-link:hover {
      background-color: var(--color-slate-700);
    }

    .footer-bottom {
      border-top: 1px solid var(--color-slate-800);
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      font-size: 0.875rem;
    }

    .footer-legal {
      display: flex;
      gap: 1.5rem;
    }

    .footer-legal a {
      color: var(--color-slate-300);
      transition: color 0.2s ease;
    }

    .footer-legal a:hover {
      color: var(--color-white);
    }

    @media (min-width: 768px) {
      .breadcrumb-cta {
        display: inline-flex;
        background-color: var(--color-primary);
        color: var(--color-white);
        padding: 0.5rem 1.5rem;
        border-radius: var(--radius-lg);
        font-weight: 600;
        transition: all 0.2s ease;
        box-shadow: var(--shadow-md);
      }

      .breadcrumb-cta:hover {
        background-color: var(--color-primary-dark);
        box-shadow: var(--shadow-lg);
      }

      .hero-section {
        padding: 2rem 0 3rem;
      }

      .hero-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
      }

      .hero-title {
        font-size: 2.25rem;
      }

      .section-title {
        font-size: 1.875rem;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .seo-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .seo-cta-grid {
        grid-template-columns: 1fr 1fr;
      }

      .seo-cta-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

      .seo-cta-stat {
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(4px);
        padding: 1.5rem;
        border-radius: var(--radius-2xl);
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .seo-cta-stat-value {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #22d3ee;
      }

      .seo-cta-stat-label {
        color: #bfdbfe;
      }

      .gmb-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      /* IMPORTANT : on évite la 2-col trop tôt (ça "compresse" sur tablettes).
         On garde 1 colonne jusqu'à 1024px, puis 2 colonnes en desktop. */

      .linking-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .linking-dept-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 2fr 1fr 2fr;
      }

      .footer-cities .footer-links {
        column-count: 2;
        column-gap: 2rem;
      }

      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    @media (min-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .services-cta {
        padding: 3rem;
      }

      .services-cta-title {
        font-size: 1.875rem;
      }

      /* Dual CTA : 2 colonnes seulement en desktop => fini l'effet "compressé" */
      .dual-cta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .dual-cta-card {
        padding: 2.5rem;
      }
    }
	
	/* Exit Popup Styles */
	.exit-popup-overlay {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background-color: rgba(15, 23, 42, 0.75);
	  backdrop-filter: blur(4px);
	  z-index: 99999;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  opacity: 0;
	  visibility: hidden;
	  transition: opacity 0.3s ease, visibility 0.3s ease;
	  padding: 1rem;
	}

	.exit-popup-overlay.exit-popup-active {
	  opacity: 1;
	  visibility: visible;
	}

	.exit-popup-container {
	  background-color: var(--color-white);
	  border-radius: var(--radius-2xl);
	  box-shadow: var(--shadow-2xl);
	  max-width: 850px;
	  width: 100%;
	  max-height: 90vh;
	  overflow-y: auto;
	  position: relative;
	  transform: scale(0.9);
	  transition: transform 0.3s ease;
	}

	.exit-popup-active .exit-popup-container {
	  transform: scale(1);
	}

	.exit-popup-close {
	  position: absolute;
	  top: 1rem;
	  right: 1rem;
	  background-color: var(--color-white);
	  border: 2px solid var(--color-slate-200);
	  border-radius: var(--radius-full);
	  width: 40px;
	  height: 40px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  cursor: pointer;
	  transition: all 0.2s ease;
	  z-index: 10;
	  color: var(--color-slate-600);
	}

	.exit-popup-close:hover {
	  background-color: var(--color-slate-100);
	  border-color: var(--color-slate-300);
	  transform: rotate(90deg);
	}

	.exit-popup-content {
	  padding: 2.5rem;
	}

	.exit-popup-title {
	  font-size: 1.875rem;
	  font-weight: 700;
	  color: var(--color-slate-900);
	  margin-bottom: 0.75rem;
	  text-align: center;
	}

	.exit-popup-subtitle {
	  font-size: 1.125rem;
	  color: var(--color-slate-600);
	  margin-bottom: 2rem;
	  text-align: center;
	  line-height: 1.6;
	}

	.exit-popup-form {
	  width: 100%;
	}

	@media (max-width: 768px) {
	  .exit-popup-content {
		padding: 1.5rem;
	  }
	  
	  .exit-popup-title {
		font-size: 1.5rem;
	  }
	  
	  .exit-popup-subtitle {
		font-size: 1rem;
	  }
	  
	  .exit-popup-close {
		width: 36px;
		height: 36px;
	  }
	}
