/* ==========================================================================
   SOS Informatique 06 — Components
   Futuristic Showroom Design
   Glassmorphism | Cyan Accents | Premium Feel
   ========================================================================== */


/* ==========================================================================
   BUTTONS
   Rounded-full with gradients, magnetic effect support, premium transitions
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-size: var(--font-size-base);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  isolation: isolate;
}

/* Magnetic shimmer overlay */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.btn:hover::before {
  left: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* -- Primary button -- */
.btn--primary {
  background: linear-gradient(135deg, var(--it-primary) 0%, var(--it-primary-dark) 100%);
  color: var(--color-white);
  box-shadow:
    0 4px 15px rgba(74, 193, 224, 0.3),
    0 1px 3px rgba(74, 193, 224, 0.2);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 35px rgba(74, 193, 224, 0.4),
    0 4px 12px rgba(74, 193, 224, 0.3);
}

.btn--primary:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow:
    0 4px 12px rgba(74, 193, 224, 0.3);
}

/* -- IT button -- */
.btn--it {
  background: linear-gradient(135deg, var(--it-primary) 0%, var(--it-primary-dark) 100%);
  color: var(--color-white);
  box-shadow:
    0 4px 15px rgba(74, 193, 224, 0.3),
    0 1px 3px rgba(74, 193, 224, 0.2);
}

.btn--it:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 35px rgba(74, 193, 224, 0.4),
    0 4px 12px rgba(74, 193, 224, 0.3);
}

/* -- SR (surete) button -- */
.btn--sr {
  background: linear-gradient(135deg, var(--sr-primary) 0%, #04b888 100%);
  color: var(--color-white);
  box-shadow:
    0 4px 15px rgba(6, 214, 160, 0.3),
    0 1px 3px rgba(6, 214, 160, 0.2);
}

.btn--sr:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 35px rgba(6, 214, 160, 0.4),
    0 4px 12px rgba(6, 214, 160, 0.3);
}

/* -- Outline button -- */
.btn--outline {
  background: transparent;
  color: var(--it-primary);
  border: 2px solid var(--it-primary);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--outline:hover {
  background: var(--it-primary);
  color: var(--color-white);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 35px rgba(74, 193, 224, 0.3),
    0 0 0 4px rgba(74, 193, 224, 0.1);
}

/* -- White button -- */
.btn--white {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-text);
  border: 1px solid rgba(228, 235, 240, 0.6);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
}

.btn--white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
  background: var(--color-white);
}

/* -- Size variants -- */
.btn--lg {
  padding: 18px 44px;
  font-size: var(--font-size-lg);
}

.btn--sm {
  padding: 10px 24px;
  font-size: var(--font-size-sm);
}


/* ==========================================================================
   LINKS
   Animated underline with accent color
   ========================================================================== */

.link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  color: var(--it-primary);
  position: relative;
  transition: color 0.3s ease;
}

.link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--it-primary), var(--it-primary-dark));
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 1px;
}

.link:hover::after {
  width: 100%;
}

.link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.link:hover svg {
  transform: translateX(4px);
}


/* ==========================================================================
   CARDS
   Glassmorphism with subtle border, blue glow on hover
   ========================================================================== */

.card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(228, 235, 240, 0.7);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow on hover */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--it-primary), var(--it-primary-dark));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 193, 224, 0.4);
  box-shadow:
    0 20px 60px rgba(74, 193, 224, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(74, 193, 224, 0.1);
}

.card:hover::after {
  opacity: 1;
}

/* -- Card 3D (perspective transform on hover) -- */
.card-3d {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(228, 235, 240, 0.7);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  overflow: hidden;
}

.card-3d:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(74, 193, 224, 0.4);
  box-shadow:
    0 25px 70px rgba(74, 193, 224, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(74, 193, 224, 0.1);
}

/* -- Card icon -- */
.card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.card:hover .card__icon,
.card-3d:hover .card__icon {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 193, 224, 0.2);
}

.card__icon--it {
  background: linear-gradient(135deg, var(--it-primary-light) 0%, rgba(74, 193, 224, 0.1) 100%);
  color: var(--it-primary);
}

.card__icon--sr {
  background: linear-gradient(135deg, var(--sr-primary-light) 0%, rgba(6, 214, 160, 0.1) 100%);
  color: var(--sr-primary);
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

/* -- Card title & text -- */
.card__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  font-weight: 700;
}

.card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}


/* ==========================================================================
   NAVIGATION
   Glassmorphism sticky nav with backdrop blur
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228, 235, 240, 0.5);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* -- Scrolled state: more opaque, stronger shadow -- */
.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(228, 235, 240, 0.8);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
}

/* -- Dark hero variant: semi-transparent dark with white text -- */
.nav--dark-hero:not(.nav--scrolled) {
  background: rgba(11, 17, 32, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav--dark-hero:not(.nav--scrolled) .nav__logo,
.nav--dark-hero:not(.nav--scrolled) .nav__logo span,
.nav--dark-hero:not(.nav--scrolled) .nav__link,
.nav--dark-hero:not(.nav--scrolled) .nav__dropdown-trigger {
  color: #FFFFFF;
}

.nav--dark-hero:not(.nav--scrolled) .nav__link:hover,
.nav--dark-hero:not(.nav--scrolled) .nav__dropdown-trigger:hover {
  color: var(--it-primary);
}

.nav--dark-hero:not(.nav--scrolled) .nav__hamburger span {
  background: #FFFFFF;
}

.nav--dark-hero:not(.nav--scrolled) .nav__cta {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
}

.nav--dark-hero:not(.nav--scrolled) .nav__cta:hover {
  background: rgba(74, 193, 224, 0.25);
  border-color: rgba(74, 193, 224, 0.5);
}

/* -- Nav scroll indicator bar -- */
.nav__indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--it-primary), var(--it-primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav--scrolled .nav__indicator {
  transform: scaleX(1);
}

/* -- Nav inner layout -- */
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  position: relative;
}

/* -- Logo -- */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--color-text);
  z-index: 1001;
  transition: color 0.3s ease;
}

.nav__logo img {
  height: 70px;
  width: auto;
  display: block;
  transition: filter 0.3s ease;
}

/* Nav sombre (hero image, avant scroll) → logo blanc pur */
.nav--dark-hero:not(.nav--scrolled) .nav__logo img {
  filter: brightness(0) invert(1);
}

/* -- Menu links -- */
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
  position: relative;
  padding-block: 4px;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-text);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--it-primary), var(--it-primary-dark));
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 1px;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* -- Dropdown -- */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(228, 235, 240, 0.6);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  padding-top: calc(var(--space-sm) + 12px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Pont invisible qui comble le gap entre le déclencheur et le menu */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

/* Délai à la fermeture pour laisser la souris atteindre le menu */
.nav__dropdown-menu {
  transition-delay: 0.15s;
}
.nav__dropdown:hover .nav__dropdown-menu {
  transition-delay: 0s;
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  transition: all 0.25s ease;
  text-decoration: none;
}
.nav__dropdown-item:hover {
  text-decoration: none;
}

.nav__dropdown-item:hover {
  background: var(--it-primary-light);
  color: var(--color-text);
  transform: translateX(4px);
}

.nav__dropdown-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.nav__dropdown-item:hover svg {
  opacity: 1;
  color: var(--it-primary);
}

/* -- Nav CTA -- */
.nav__cta {
  margin-left: var(--space-sm);
}

/* -- Hamburger (mobile) -- */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav__hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -- Mobile overlay -- */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  padding-top: var(--nav-height);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.nav__overlay--open {
  display: flex;
}

.nav__overlay .nav__link {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--color-text);
}

.nav__overlay .nav__dropdown-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  border: none;
  text-align: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


/* ==========================================================================
   FOOTER
   Dark navy (#0B1120) with blue cyan accents
   ========================================================================== */

.footer {
  background: var(--color-footer);
  color: var(--color-footer-text);
  padding-top: var(--space-4xl);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay at top */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--it-primary) 50%,
    transparent 100%
  );
  opacity: 0.4;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer__logo img,
.footer__logo-img {
  height: auto;
  width: 200px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer__desc {
  font-size: var(--font-size-sm);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  color: var(--color-footer-text);
}

.footer__socials {
  display: flex;
  gap: var(--space-sm);
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-footer-text);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer__social:hover {
  background: rgba(74, 193, 224, 0.15);
  border-color: rgba(74, 193, 224, 0.4);
  color: var(--it-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 193, 224, 0.2);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__heading {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--it-primary);
  border-radius: 1px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--font-size-sm);
  color: var(--color-footer-text);
  transition: all 0.3s ease;
  padding-block: 2px;
  position: relative;
}

.footer__link:hover {
  color: var(--it-primary);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--it-primary);
}

/* -- Footer bottom bar -- */
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-sm);
}

.footer__bar a {
  color: var(--color-footer-text);
  transition: color 0.3s ease;
}

.footer__bar a:hover {
  color: var(--it-primary);
}


/* ==========================================================================
   FORMS
   Clean inputs with glassmorphism focus state
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.01em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: var(--font-size-base);
  color: var(--color-text);
  transition: all 0.35s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--it-primary);
  box-shadow:
    0 0 0 4px rgba(74, 193, 224, 0.12),
    0 4px 16px rgba(74, 193, 224, 0.08);
  background: var(--color-white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.6;
}

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

/* -- Form error state -- */
.form-input--error {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-error {
  display: none;
  font-size: var(--font-size-sm);
  color: #EF4444;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: var(--space-3xl);
}

.form-success svg {
  margin: 0 auto var(--space-lg);
}

.form-success h3 {
  color: var(--sr-primary);
}


/* ==========================================================================
   BADGES
   Glassmorphic pill badges
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge--it {
  background: rgba(74, 193, 224, 0.12);
  color: var(--it-primary-dark);
  border: 1px solid rgba(74, 193, 224, 0.2);
}

.badge--sr {
  background: rgba(6, 214, 160, 0.12);
  color: var(--sr-primary);
  border: 1px solid rgba(6, 214, 160, 0.2);
}


/* ==========================================================================
   CONTACT INFO
   Clean layout with icon accents
   ========================================================================== */

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

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--it-primary-light) 0%, rgba(74, 193, 224, 0.08) 100%);
  color: var(--it-primary);
  transition: all 0.35s ease;
}

.contact-info__item:hover .contact-info__icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(74, 193, 224, 0.2);
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__item h3 {
  font-size: var(--font-size-base);
  margin-bottom: 4px;
  color: var(--color-text);
}

.contact-info__item p,
.contact-info__item a {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.contact-info__item a:hover {
  color: var(--it-primary);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}


/* ==========================================================================
   HERO COMPACT
   Clean gradient background for inner pages
   ========================================================================== */

.hero--compact {
  min-height: auto;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  background: linear-gradient(160deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  display: block;
  text-align: left;
  position: relative;
}

.hero--compact::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(74, 193, 224, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero--compact .container {
  max-width: var(--container-max);
  position: relative;
  z-index: 1;
}

.hero--compact .hero__title,
.hero--compact h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hero--compact .hero__subtitle {
  text-align: left;
  margin-inline: 0;
  max-width: 600px;
  color: var(--color-text-secondary);
}

/* Volet IT compact hero */
.volet-it .hero--compact {
  background: linear-gradient(160deg, var(--it-primary-light) 0%, var(--color-bg) 100%);
}

/* Volet SR compact hero */
.volet-sr .hero--compact {
  background: linear-gradient(160deg, var(--sr-primary-light) 0%, var(--color-bg) 100%);
}


/* ==========================================================================
   SERVICE PAGES
   Description and point grid
   ========================================================================== */

.service-desc {
  max-width: 800px;
  line-height: 1.8;
}

.service-desc p {
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
}

.service-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.service-point {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(228, 235, 240, 0.6);
  border-radius: var(--radius-md);
  transition: all 0.35s ease;
}

.service-point:hover {
  border-color: rgba(74, 193, 224, 0.4);
  box-shadow:
    0 8px 24px rgba(74, 193, 224, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.service-point svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--it-primary);
}


/* ==========================================================================
   DEVIS MULTI-STEP
   Interactive form wizard with glassmorphism
   ========================================================================== */

.devis-step {
  min-height: 200px;
}

.devis-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.devis-choice {
  cursor: pointer;
}

.devis-choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.devis-choice__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.devis-choice__card svg {
  width: 48px;
  height: 48px;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.devis-choice__card span {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
}

.devis-choice__card:hover {
  border-color: rgba(74, 193, 224, 0.5);
  box-shadow:
    0 12px 35px rgba(74, 193, 224, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.devis-choice__card:hover svg {
  color: var(--it-primary);
  transform: scale(1.1);
}

.devis-choice input:checked + .devis-choice__card {
  border-color: var(--it-primary);
  background: rgba(74, 193, 224, 0.06);
  box-shadow:
    0 0 0 4px rgba(74, 193, 224, 0.12),
    0 8px 25px rgba(74, 193, 224, 0.1);
}

.devis-choice input:checked + .devis-choice__card svg {
  color: var(--it-primary);
}

/* -- Checkboxes variant -- */
.devis-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.devis-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.devis-checkbox:hover {
  border-color: rgba(74, 193, 224, 0.5);
  background: rgba(74, 193, 224, 0.03);
}

.devis-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--it-primary);
  flex-shrink: 0;
}

.devis-checkbox span {
  font-size: var(--font-size-base);
  color: var(--color-text);
}

.devis-checkbox:has(input:checked) {
  border-color: var(--it-primary);
  background: rgba(74, 193, 224, 0.06);
}

/* -- Devis navigation -- */
.devis-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

/* -- Radio & Checkbox cards -- */
.radio-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.radio-card:hover {
  border-color: rgba(74, 193, 224, 0.5);
}

.radio-card input:checked + .radio-card__label {
  color: var(--it-primary);
}

.radio-card:has(input:checked) {
  border-color: var(--it-primary);
  background: rgba(74, 193, 224, 0.06);
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.checkbox-card:hover {
  border-color: rgba(74, 193, 224, 0.5);
}

.checkbox-card:has(input:checked) {
  border-color: var(--it-primary);
  background: rgba(74, 193, 224, 0.06);
}


/* ==========================================================================
   CLIENTS MARQUEE
   Infinite scroll with glassmorphic pills
   ========================================================================== */

.clients-marquee {
  overflow: hidden;
  position: relative;
  margin-top: var(--space-xl);
  padding-block: var(--space-md);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-marquee__track {
  display: flex;
  gap: var(--space-xl);
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.clients-marquee:hover .clients-marquee__track {
  animation-play-state: paused;
}

.clients-marquee__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px var(--space-lg);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(228, 235, 240, 0.5);
  border-radius: var(--radius-full);
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.clients-marquee__item:hover {
  border-color: rgba(74, 193, 224, 0.5);
  box-shadow:
    0 8px 30px rgba(74, 193, 224, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px) scale(1.05);
  background: var(--color-white);
}

.clients-marquee__item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: white;
  padding: 2px;
}

.clients-marquee__item span {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.clients-marquee__item:hover span {
  color: var(--it-primary);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
  .clients-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Boutons prev/next injectés par marquee.js */
.marquee-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
}

.marquee-btn:hover {
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.18);
  transform: translateY(-50%) scale(1.1);
  color: var(--it-primary);
}

.marquee-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.marquee-btn--prev { left: 8px; }
.marquee-btn--next { right: 8px; }


/* ==========================================================================
   PARTNERS
   Glassmorphic grid cards with radial hover glow
   ========================================================================== */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--space-lg);
  max-width: 1000px;
  margin-inline: auto;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--space-md);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(228, 235, 240, 0.5);
  text-decoration: none;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

/* Radial glow following mouse position */
.partner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(74, 193, 224, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.partner-card:hover::after {
  opacity: 1;
}

.partner-card:hover {
  border-color: rgba(74, 193, 224, 0.4);
  box-shadow:
    0 12px 40px rgba(74, 193, 224, 0.12),
    0 0 0 1px rgba(74, 193, 224, 0.1);
  transform: translateY(-6px) scale(1.02);
}

.partner-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-md);
  padding: 4px;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-card:hover img {
  transform: scale(1.15) rotate(-3deg);
}

.partner-card span {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.partner-card:hover span {
  color: var(--it-primary);
}


/* ==========================================================================
   ABOUT FOUNDER
   Photo + content grid, sticky sidebar
   ========================================================================== */

.about-founder {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-3xl);
  align-items: start;
  margin-bottom: var(--space-3xl);
}

.about-founder__photo {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
}

.about-founder__photo img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.06);
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: box-shadow 0.4s ease;
}

.about-founder__photo img:hover {
  box-shadow:
    0 25px 70px rgba(74, 193, 224, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-founder__content .section__subtitle {
  margin-bottom: var(--space-xs);
}

.about-founder__content h2 {
  margin-bottom: var(--space-xl);
}

.about-founder__content h3 {
  margin-top: var(--space-2xl);
  color: var(--it-primary);
  font-size: var(--font-size-xl);
}

.about-founder__content p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.about-text-blocks {
  max-width: 750px;
  margin-inline: auto;
}

.about-text-blocks p {
  line-height: 1.8;
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.about-text-blocks h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--it-primary);
  font-size: var(--font-size-xl);
}

/* -- About Why section -- */
.about-why {
  margin-top: var(--space-3xl);
}

.about-why h3 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.about-why__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(228, 235, 240, 0.6);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-why__item:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 193, 224, 0.3);
  box-shadow:
    0 12px 35px rgba(74, 193, 224, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

.about-why__item svg {
  color: var(--it-primary);
  flex-shrink: 0;
}

.about-why__item span {
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--font-size-base);
}


/* ==========================================================================
   REVIEWS BADGE
   Premium star rating display
   ========================================================================== */

.reviews__badge {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  justify-content: center;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(245, 158, 11, 0.02) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

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

.reviews__badge-info {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.reviews__badge-score {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.reviews__badge-count {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.reviews__badge-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--it-primary);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74, 193, 224, 0.4);
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.reviews__badge-link:hover {
  background: var(--it-primary);
  color: var(--color-white);
  border-color: var(--it-primary);
  box-shadow: 0 6px 20px rgba(74, 193, 224, 0.3);
}


/* ==========================================================================
   REVIEWS GRID
   Paginated card layout
   ========================================================================== */

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

.reviews__card-wrap {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* -- Reviews pagination -- */
.reviews__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.reviews__page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.35s ease;
  color: var(--color-text);
}

.reviews__page-btn:hover {
  border-color: var(--it-primary);
  color: var(--it-primary);
  box-shadow:
    0 6px 20px rgba(74, 193, 224, 0.2),
    0 0 0 3px rgba(74, 193, 224, 0.08);
  transform: scale(1.1);
}

.reviews__page-dots {
  display: flex;
  gap: 8px;
}

.reviews__page-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
}

.reviews__page-dot.is-active {
  background: linear-gradient(135deg, var(--it-primary), var(--it-primary-dark));
  width: 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(74, 193, 224, 0.3);
}


/* ==========================================================================
   REVIEW CARDS
   Glassmorphic quote cards with hover glow
   ========================================================================== */

.review-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(228, 235, 240, 0.6);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(74, 193, 224, 0.06);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-6px);
}

.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-card__text {
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(228, 235, 240, 0.5);
}

.review-card__author strong {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  display: block;
}

.review-card__author span {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  display: block;
}


/* ==========================================================================
   BREADCRUMB
   Minimal path navigation
   ========================================================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.breadcrumb a {
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--it-primary);
}

.breadcrumb__sep {
  opacity: 0.4;
}


/* ==========================================================================
   ACCORDION (FAQ)
   Clean expandable sections with glassmorphism
   ========================================================================== */

.accordion {
  border: 1px solid rgba(228, 235, 240, 0.7);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.accordion__item {
  border-bottom: 1px solid rgba(228, 235, 240, 0.5);
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion__trigger:hover {
  background: rgba(74, 193, 224, 0.04);
  color: var(--it-primary-dark);
}

.accordion__trigger svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  color: var(--it-primary);
}

.accordion__item--open .accordion__trigger svg {
  transform: rotate(180deg);
}

.accordion__item--open .accordion__trigger {
  color: var(--it-primary-dark);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion__body {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.8;
}


/* ==========================================================================
   SPLIT SCREEN
   Two-column layout component
   ========================================================================== */

.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}


/* ==========================================================================
   RESPONSIVE — TABLET (max-width: 1023px)
   ========================================================================== */

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

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

  .split-screen {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ========================================================================== */

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

  .nav__menu {
    display: none;
  }

  .nav__cta {
    display: none;
  }

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

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

  .about-founder__photo {
    position: static;
    max-width: 300px;
    margin-inline: auto;
  }

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

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .hero--compact .hero__title,
  .hero--compact h1 {
    font-size: var(--font-size-3xl);
  }

  .devis-choices {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: var(--space-md);
  }
}


/* ==========================================================================
   RESPONSIVE — SMALL MOBILE (max-width: 639px)
   ========================================================================== */

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

  .reviews__badge {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
}


/* ==========================================================================
   RESPONSIVE — TINY (max-width: 480px)
   ========================================================================== */

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

  .service-points {
    grid-template-columns: 1fr;
  }

  .footer__bar {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}


/* ==========================================================================
   CITY / SERVICE PAGES — Composants manquants
   nav__links, faq, check-list, hero--service, variables
   ========================================================================== */

/* Variable manquante utilisée dans les hero de pages villes */
:root {
  --color-bg-dark: #040d1a;
}

/* -- Nav simplifié pages villes (nav__links) -- */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: nowrap;
}

.nav__links .nav__link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.25s;
  white-space: nowrap;
}

.nav__links .nav__link:hover { color: var(--it-primary); }

/* Variants couleur nav */
.nav--sr .nav__indicator { background: var(--sr-primary); }
.nav--it .nav__indicator { background: var(--it-primary); }

/* -- hero--service (pages villes IA) -- */
.hero--service {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
}

/* -- check-list (liste à coches SVG dans pages villes) -- */
.check-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-2xl);
}

.check-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(228, 235, 240, 0.6);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.check-list li:hover {
  border-color: rgba(6, 214, 160, 0.35);
  box-shadow: 0 4px 12px rgba(6, 214, 160, 0.08);
}

.check-list li svg { flex-shrink: 0; }

/* -- FAQ accordion pages villes (faq-list / faq-item) -- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  border: 1px solid rgba(228, 235, 240, 0.7);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.faq-item--open {
  border-color: rgba(74, 193, 224, 0.35);
  box-shadow: 0 4px 20px rgba(74, 193, 224, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  gap: var(--space-md);
  transition: color 0.25s, background 0.25s;
}

.faq-question:hover {
  background: rgba(74, 193, 224, 0.04);
  color: var(--it-primary-dark);
}

.faq-item--open .faq-question { color: var(--it-primary-dark); }

.faq-question svg {
  flex-shrink: 0;
  color: var(--it-primary);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item--open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* -- Responsive nav__links mobile -- */
@media (max-width: 1023px) {
  .nav__links { display: none; }
}

@media (max-width: 767px) {
  .check-list.grid--2 { grid-template-columns: 1fr; }
  .hero--service {
    padding-top: calc(var(--nav-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }
  .faq-question { padding: var(--space-md) var(--space-lg); font-size: var(--font-size-sm); }
  .faq-answer p { padding: 0 var(--space-lg) var(--space-md); }
}
