:root {
  /* Dark mode - Plus de contraste et couleurs */
  --color-background: #0f172a;
  --color-surface: #1e293b;
  --color-light: #f1f5f9;
  --color-muted: #cbd5e1;
  --color-muted-bg: rgb(30 41 59 / 0.4);
  --color-accent: #3b82f6;
  --color-accent-light: #60a5fa;
  --color-accent-premium: #f59e0b;
  --color-accent-premium-alt: #fbbf24;
  --color-ghost: rgb(59 130 246 / 0.08);
  --color-border: rgb(148 163 184 / 0.2);
  --color-shadow: rgb(0 0 0 / 0.5);
  --layout-container: min(1100px, calc(100vw - 3rem));
  --font-base: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-roboto: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Roboto", Georgia, "Times New Roman", serif;
}

/* Mode Light - Plus de couleurs et meilleur contraste */
[data-mode="light"] {
  --color-background: #f8fafc;
  --color-surface: #ffffff;
  --color-light: #0f172a;
  --color-muted: #475569;
  --color-muted-bg: rgb(241 245 249 / 0.6);
  --color-accent: #2563eb;
  --color-accent-light: #3b82f6;
  --color-accent-premium: #ea580c;
  --color-accent-premium-alt: #f97316;
  --color-ghost: rgb(37 99 235 / 0.06);
  --color-border: rgb(51 65 85 / 0.2);
  --color-shadow: rgb(15 23 42 / 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-background);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-light);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  display: block;
}

/* Prevent horizontal overflow on all elements */
/* Note: overflow-x breaks position: sticky, so .section--cta is excluded */
section:not(.section--cta),
main,
article,
footer {
  overflow-x: hidden;
}

main {
  padding-top: 80px;
}

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

/* Les liens avec classe .button (pas .button--ghost) gardent texte blanc */
a.button:not(.button--ghost):not(.button--light) {
  color: #ffffff !important;
}

a.button:not(.button--ghost):not(.button--light) svg {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

/* Prevent text overflow globally */
h1, h2, h3, h4, h5, h6 {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

p, li, span {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p {
  margin: 0 0 1.2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--color-accent);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.3);
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--layout-container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  backdrop-filter: blur(18px);
  background-color: rgb(5 6 7 / 0.88);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-mode="light"] .site-header {
  background-color: rgb(255 255 255 / 0.92);
  box-shadow: 0 1px 3px var(--color-shadow);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: 40px;
  height: 40px;
  filter: invert(1);
  transition: filter 0.3s ease;
}

[data-mode="light"] .brand img {
  filter: invert(0);
}

.brand--footer img {
  width: 32px;
  height: 32px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#nav-container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  height: 40px;
}

.lang-btn {
  padding: 0.5rem 0.7rem;
  border: none;
  background: none;
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: var(--color-accent);
  background: rgb(59 130 246 / 0.1);
}

.lang-btn.active {
  color: var(--color-light);
  background: var(--color-accent);
}

/* Mode toggle button */
.mode-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mode-toggle:hover {
  background: var(--color-ghost);
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.mode-toggle svg {
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mode-icon--sun {
  color: var(--color-light);
}

.mode-icon--moon {
  color: var(--color-light);
  position: absolute;
}

[data-mode="light"] .mode-icon--sun {
  opacity: 0;
  transform: rotate(180deg);
}

[data-mode="light"] .mode-icon--moon {
  opacity: 1;
  transform: rotate(0deg);
}

[data-mode="dark"] .mode-icon--sun,
body:not([data-mode]) .mode-icon--sun {
  opacity: 1;
  transform: rotate(0deg);
}

[data-mode="dark"] .mode-icon--moon,
body:not([data-mode]) .mode-icon--moon {
  opacity: 0;
  transform: rotate(-180deg);
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__menu a {
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.site-nav__menu a.is-active {
  color: var(--color-accent);
}

.site-nav__menu a:hover,
.site-nav__menu a:focus {
  color: var(--color-accent);
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0.2rem;
  cursor: pointer;
}

.site-nav__bar {
  width: 22px;
  height: 2px;
  background-color: var(--color-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav__toggle.is-active .site-nav__bar:nth-of-type(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav__toggle.is-active .site-nav__bar:nth-of-type(2) {
  opacity: 0;
}

.site-nav__toggle.is-active .site-nav__bar:nth-of-type(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

/* Backdrop for mobile menu */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
  backdrop-filter: blur(4px);
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .nav-backdrop {
    display: none;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgb(59 130 246 / 0.3);
  max-width: 100%;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(255 255 255 / 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 12px 32px rgb(59 130 246 / 0.5),
    0 0 40px rgb(59 130 246 / 0.3),
    0 0 0 2px rgb(59 130 246 / 0.4);
}

.button:hover::before {
  opacity: 1;
}

.button:active {
  transform: translateY(-1px) scale(1.02);
}

.button--ghost {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-light);
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button--ghost::before {
  background: radial-gradient(circle, rgb(59 130 246 / 0.1), transparent 70%);
}

.button--ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 8px 24px rgb(59 130 246 / 0.2),
    0 0 30px rgb(59 130 246 / 0.15),
    0 0 0 1px rgb(59 130 246 / 0.3);
  background: rgb(13 16 22 / 0.85);
}

.button--light {
  background: var(--color-light);
  color: var(--color-background);
  box-shadow: 0 12px 28px rgb(3 8 12 / 0.28);
}

[data-mode="light"] .button--light {
  color: #ffffff;
}

.button--full {
  width: 100%;
  justify-content: center;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5rem;
  background:
    radial-gradient(circle at 20% 20%, rgb(59 130 246 / 0.15), transparent 55%),
    linear-gradient(135deg, #1e293b, #0f172a);
  background-size: cover;
  background-position: center;
  transition: background 0.3s ease;
}

/* Décorations géométriques hero */
.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgb(59 130 246 / 0.5), rgb(96 165 250 / 0.3) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

[data-mode="light"] .hero {
  background:
    radial-gradient(circle at 20% 20%, rgb(59 130 246 / 0.08), transparent 55%),
    linear-gradient(135deg, #ffffff, #f1f5f9);
  background-size: cover;
  background-position: center;
}

[data-mode="light"] .hero::after {
  background: radial-gradient(circle, rgb(59 130 246 / 0.35), rgb(96 165 250 / 0.2) 40%, transparent 70%);
}

[data-mode="light"] .hero::before {
  background: radial-gradient(circle at 80% 10%, rgb(59 130 246 / 0.3), rgb(96 165 250 / 0.15) 50%, transparent 70%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgb(59 130 246 / 0.6), rgb(96 165 250 / 0.3) 40%, transparent 60%);
  filter: blur(100px);
  opacity: 0.8;
  animation: hero-glow 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero__pattern {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 105px;
  opacity: 0.25;
  pointer-events: none;
  filter: drop-shadow(0 0 40px rgb(59 130 246 / 0.3));
  animation: pattern-pulse 35s ease-in-out infinite;
  perspective: 1000px;
}

@keyframes pattern-pulse {
  0% {
    opacity: 0.25;
    transform: translate3d(0, 0, 50px) rotate(0deg) scale(1);
  }
  20% {
    opacity: 0.3;
    transform: translate3d(800px, -200px, 0px) rotate(72deg) scale(1.15);
  }
  40% {
    opacity: 0.4;
    transform: translate3d(400px, 250px, -50px) rotate(144deg) scale(0.9);
  }
  60% {
    opacity: 0.35;
    transform: translate3d(-400px, 300px, -30px) rotate(216deg) scale(1.05);
  }
  80% {
    opacity: 0.3;
    transform: translate3d(-300px, -100px, 20px) rotate(288deg) scale(1.1);
  }
  100% {
    opacity: 0.25;
    transform: translate3d(0, 0, 50px) rotate(360deg) scale(1);
  }
}

/* Formes géométriques animées */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  opacity: 0.6;
  filter: blur(2px);
}

.shape--circle {
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(59 130 246 / 0.6), rgb(96 165 250 / 0.4));
  box-shadow: 0 0 40px rgb(59 130 246 / 0.5);
}

.shape--square {
  background: linear-gradient(135deg, rgb(96 165 250 / 0.5), rgb(59 130 246 / 0.3));
  box-shadow: 0 0 30px rgb(96 165 250 / 0.4);
}

.shape--triangle {
  width: 60px;
  height: 52px;
  background: linear-gradient(135deg, rgb(59 130 246 / 0.6), rgb(96 165 250 / 0.4));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  box-shadow: 0 0 35px rgb(59 130 246 / 0.4);
  filter: blur(1px);
}

/* Animations individuelles pour chaque forme */
.shape--1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
  animation: float-diagonal-1 20s ease-in-out infinite;
}

.shape--2 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 80%;
  animation: float-diagonal-2 25s ease-in-out infinite;
}

.shape--3 {
  top: 30%;
  right: 10%;
  animation: float-diagonal-3 22s ease-in-out infinite;
}

.shape--4 {
  width: 50px;
  height: 50px;
  bottom: 20%;
  left: 15%;
  animation: float-diagonal-4 18s ease-in-out infinite;
}

.shape--5 {
  width: 70px;
  height: 70px;
  top: 75%;
  right: 25%;
  animation: float-diagonal-5 28s ease-in-out infinite;
}

.shape--6 {
  top: 45%;
  left: 60%;
  animation: float-diagonal-6 24s ease-in-out infinite;
}

@keyframes float-diagonal-1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(150px, -100px) rotate(90deg) scale(1.2);
  }
  50% {
    transform: translate(250px, 50px) rotate(180deg) scale(0.8);
  }
  75% {
    transform: translate(100px, 150px) rotate(270deg) scale(1.1);
  }
}

@keyframes float-diagonal-2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(-200px, -80px) rotate(120deg) scale(0.9);
  }
  66% {
    transform: translate(-100px, 100px) rotate(240deg) scale(1.3);
  }
}

@keyframes float-diagonal-3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  30% {
    transform: translate(-180px, 120px) rotate(145deg);
  }
  60% {
    transform: translate(80px, -90px) rotate(290deg);
  }
}

@keyframes float-diagonal-4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  40% {
    transform: translate(220px, -150px) rotate(180deg) scale(1.4);
  }
  80% {
    transform: translate(-80px, 80px) rotate(360deg) scale(0.7);
  }
}

@keyframes float-diagonal-5 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  35% {
    transform: translate(-150px, -120px) rotate(135deg) scale(1.1);
  }
  70% {
    transform: translate(100px, 90px) rotate(270deg) scale(0.85);
  }
}

@keyframes float-diagonal-6 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(180px, 130px) rotate(95deg);
  }
  50% {
    transform: translate(-120px, -100px) rotate(190deg);
  }
  75% {
    transform: translate(90px, -80px) rotate(285deg);
  }
}

[data-mode="light"] .shape--circle {
  background: linear-gradient(135deg, rgb(59 130 246 / 0.4), rgb(96 165 250 / 0.25));
  box-shadow: 0 0 30px rgb(59 130 246 / 0.3);
}

[data-mode="light"] .shape--square {
  background: linear-gradient(135deg, rgb(96 165 250 / 0.35), rgb(59 130 246 / 0.2));
  box-shadow: 0 0 25px rgb(96 165 250 / 0.25);
}

[data-mode="light"] .shape--triangle {
  background: linear-gradient(135deg, rgb(59 130 246 / 0.4), rgb(96 165 250 / 0.25));
  box-shadow: 0 0 25px rgb(59 130 246 / 0.25);
}

/* Formes pour les sections génériques */
.section-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* S'assurer que toutes les sections avec shapes sont en position relative */
.hero--service,
.hero--product,
.legal-hero,
.legal-content,
.service-content,
.product-content {
  position: relative;
}

/* Section Services - 3 formes */
.shape--s1 {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 8%;
  animation: float-section-1 22s ease-in-out infinite;
}

.shape--s2 {
  width: 50px;
  height: 50px;
  top: 70%;
  right: 12%;
  animation: float-section-2 26s ease-in-out infinite;
}

.shape--s3 {
  width: 45px;
  height: 45px;
  bottom: 25%;
  left: 75%;
  animation: float-section-3 20s ease-in-out infinite;
}

/* Section Process - 4 formes */
.shape--p1 {
  top: 20%;
  left: 10%;
  animation: float-section-4 24s ease-in-out infinite;
}

.shape--p2 {
  width: 55px;
  height: 55px;
  top: 65%;
  left: 80%;
  animation: float-section-5 21s ease-in-out infinite;
}

.shape--p3 {
  width: 50px;
  height: 50px;
  bottom: 15%;
  right: 15%;
  animation: float-section-6 27s ease-in-out infinite;
}

.shape--p4 {
  top: 40%;
  left: 50%;
  animation: float-section-7 23s ease-in-out infinite;
}

/* Section Offres - 3 formes */
.shape--o1 {
  width: 65px;
  height: 65px;
  top: 25%;
  right: 10%;
  animation: float-section-8 25s ease-in-out infinite;
}

.shape--o2 {
  width: 55px;
  height: 55px;
  bottom: 30%;
  left: 15%;
  animation: float-section-9 22s ease-in-out infinite;
}

.shape--o3 {
  top: 60%;
  right: 65%;
  animation: float-section-10 28s ease-in-out infinite;
}

/* Section Contact - 4 formes */
.shape--c1 {
  width: 70px;
  height: 70px;
  top: 20%;
  left: 5%;
  animation: float-section-11 20s ease-in-out infinite;
}

.shape--c2 {
  top: 55%;
  right: 8%;
  animation: float-section-12 24s ease-in-out infinite;
}

.shape--c3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 70%;
  animation: float-section-13 26s ease-in-out infinite;
}

.shape--c4 {
  width: 50px;
  height: 50px;
  top: 35%;
  right: 40%;
  animation: float-section-14 23s ease-in-out infinite;
}

/* Animations pour les formes des sections */
@keyframes float-section-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(120px, -80px) rotate(180deg) scale(1.2); }
}

@keyframes float-section-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-100px, 70px) rotate(165deg) scale(0.9); }
}

@keyframes float-section-3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(90px, -100px) rotate(200deg) scale(1.15); }
}

@keyframes float-section-4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-130px, 90px) rotate(175deg); }
}

@keyframes float-section-5 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-110px, -95px) rotate(190deg) scale(1.1); }
}

@keyframes float-section-6 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(105px, 85px) rotate(155deg) scale(0.85); }
}

@keyframes float-section-7 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-140px, -75px) rotate(210deg); }
}

@keyframes float-section-8 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-125px, 95px) rotate(185deg) scale(1.25); }
}

@keyframes float-section-9 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(135px, -88px) rotate(170deg) scale(0.95); }
}

@keyframes float-section-10 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(115px, 105px) rotate(195deg); }
}

@keyframes float-section-11 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(145px, -92px) rotate(160deg) scale(1.3); }
}

@keyframes float-section-12 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-120px, 80px) rotate(205deg); }
}

@keyframes float-section-13 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-95px, -110px) rotate(150deg) scale(0.88); }
}

@keyframes float-section-14 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(125px, 98px) rotate(215deg) scale(1.18); }
}

@keyframes hero-glow {
  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1) translateY(12px);
    opacity: 0.8;
  }
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-areas: "text text text visual visual";
  gap: 1.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero__text {
  grid-area: text;
  max-width: 100%;
  min-width: 0;
}
.hero__visual {
  grid-area: visual;
  max-width: 100%;
  min-width: 0;
}

.hero__text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__text .lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 100%;
  word-wrap: break-word;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 100%;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 100%;
  min-width: 0;
}

.metric {
  padding: 1.2rem;
  border-radius: 1.1rem;
  background: var(--color-ghost);
  border: 1px solid var(--color-border);
  text-align: center;
  box-shadow: 0 2px 8px var(--color-shadow);
  backdrop-filter: blur(6px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.metric:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 8px 24px rgb(59 130 246 / 0.25),
    0 0 40px rgb(59 130 246 / 0.15),
    0 0 0 1px rgb(59 130 246 / 0.3);
  border-color: rgb(59 130 246 / 0.4);
  background: rgb(59 130 246 / 0.08);
}

[data-mode="light"] .metric {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.metric__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.metric__label {
  color: var(--color-muted);
}

.hero__visual {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}

.stacks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

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

@media (min-width: 768px) {
  .stacks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stacks div {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 2px solid transparent;
  border-radius: 40px;
  width: fit-content;
}

.stacks div img {
  max-height: 28px;
  width: auto;
  flex-shrink: 0;
}

.stacks div span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.stacks div.laravel {
  background: rgb(238 80 62 / 25%);
  border-color: rgb(238 80 62 / 50%);
}
.stacks div.vuejs {
  background: rgb(65 184 131 / 25%);
  border-color: rgb(65 184 131 / 50%);
}
.stacks div.docker {
  background: rgb(40 184 235 / 25%);
  border-color: rgb(40 184 235 / 50%);
}

.hero__card {
  padding: 1.5rem;
  background: linear-gradient(140deg, var(--color-surface), rgb(59 130 246 / 0.05));
  border: 1px solid var(--color-border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .hero__card {
    padding: 2.2rem;
  }
}

.hero__card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px var(--color-shadow);
}

[data-mode="light"] .hero__card {
  background: var(--color-surface);
  box-shadow: 0 1px 3px var(--color-shadow);
}

.hero__card h2 {
  font-family: var(--font-heading);
  margin-top: 0;
  margin-bottom: 1rem;
}

.hero__card ul {
  margin: 0;
  padding-left: 0;
  color: var(--color-muted);
  list-style: none;
}

.hero__badge {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 480px) {
  .hero__badge {
    grid-template-columns: 1fr 110px;
    padding: 1.6rem;
  }
}

.hero__badge:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px var(--color-shadow);
}

[data-mode="light"] .hero__badge {
  background: var(--color-surface);
  box-shadow: 0 1px 3px var(--color-shadow);
}

.hero__badge-brand {
  display: flex;
  align-items: start;
  gap: 0.9rem;
  max-width: 100%;
  min-width: 0;
}

.hero__badge-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .hero__badge-brand img {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }
}

.hero__badge-title {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-accent);
  font-size: 0.9rem;
}

@media (min-width: 480px) {
  .hero__badge-title {
    font-size: 1rem;
  }
}

.hero__badge-text {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (min-width: 480px) {
  .hero__badge-text {
    font-size: 0.85rem;
  }
}

.hero__badge-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .hero__badge-links {
    flex-direction: column;
    align-items: end;
    gap: 0.8rem;
  }
}

.hero__badge-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  gap: 6px;
  border-radius: 10px;
  background: var(--color-ghost);
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .hero__badge-links a {
    padding: 4px 8px;
    gap: 8px;
  }
}

.hero__badge-links a:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  background: rgb(59 130 246 / 0.1);
}

.hero__badge-links img,
.hero__badge-links svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .hero__badge-links img,
  .hero__badge-links svg {
    width: 20px;
    height: 20px;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}

.eyebrow--light {
  color: var(--color-light);
}

.section {
  padding: 5rem 0;
  position: relative;
}

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

/* Décorations latérales pour les sections (sauf .section--accent qui a ses propres décos) */
.section:not(.section--accent)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  width: 3px;
  height: 70%;
  background: linear-gradient(180deg,
    transparent,
    rgb(59 130 246 / 0.3) 20%,
    rgb(59 130 246 / 0.8) 50%,
    rgb(96 165 250 / 0.6) 70%,
    transparent
  );
  box-shadow:
    0 0 30px rgb(59 130 246 / 0.8),
    0 0 60px rgb(59 130 246 / 0.4),
    0 0 100px rgb(59 130 246 / 0.2);
  z-index: 0;
  animation: pulse-line 4s ease-in-out infinite;
}

.section:not(.section--accent)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  width: 3px;
  height: 50%;
  background: linear-gradient(180deg,
    transparent,
    rgb(96 165 250 / 0.4) 25%,
    rgb(96 165 250 / 0.7) 50%,
    rgb(59 130 246 / 0.5) 75%,
    transparent
  );
  box-shadow:
    0 0 25px rgb(96 165 250 / 0.7),
    0 0 50px rgb(96 165 250 / 0.3),
    0 0 80px rgb(96 165 250 / 0.15);
  z-index: 0;
  animation: pulse-line 4s ease-in-out infinite 2s;
}

@keyframes pulse-line {
  0%, 100% {
    opacity: 0.7;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.05);
  }
}

.section--muted {
  background: linear-gradient(180deg, rgb(13 16 22 / 0.9), rgb(6 7 9 / 0.95));
  transition: background 0.3s ease;
}

[data-mode="light"] .section--muted {
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
}

.section--accent {
  background: linear-gradient(135deg, rgb(59 130 246 / 0.08), transparent);
  transition: background 0.3s ease;
}

.section--accent::before {
  content: "";
  position: absolute;
  top: 5%;
  left: -5%;
  width: min(80vw, 300px);
  height: min(80vw, 300px);
  background: radial-gradient(circle, rgb(59 130 246 / 0.4), rgb(96 165 250 / 0.2) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: float-slow 25s ease-in-out infinite;
}

@media (min-width: 768px) {
  .section--accent::before {
    width: min(60vw, 450px);
    height: min(60vw, 450px);
    filter: blur(80px);
  }
}

@media (min-width: 1024px) {
  .section--accent::before {
    width: 600px;
    height: 600px;
    filter: blur(100px);
  }
}

@keyframes float-slow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -30px) scale(1.15);
  }
}

[data-mode="light"] .section--accent {
  background: linear-gradient(135deg, rgb(59 130 246 / 0.05), transparent);
}

[data-mode="light"] .section--accent::before {
  background: radial-gradient(circle, rgb(59 130 246 / 0.25), rgb(96 165 250 / 0.12) 50%, transparent 70%);
}

.section--cta {
  background: linear-gradient(120deg, var(--color-surface), var(--color-background));
  padding: 4.5rem 0 5rem;
  transition: background 0.3s ease;
}

[data-mode="light"] .section--cta {
  background: linear-gradient(135deg, rgb(59 130 246 / 0.05), #f8fafc);
  border-top: 1px solid var(--color-border);
}

/* Boutons ghost dans la section contact - toujours bien contrastés */
.section--cta .button--ghost {
  background: rgb(255 255 255 / 0.05);
  backdrop-filter: blur(8px);
}

[data-mode="light"] .button--ghost,
[data-mode="light"] .section--cta .button--ghost {
  background: rgb(255 255 255 / 0.95);
  color: var(--color-light);
  border-color: var(--color-border);
}

[data-mode="light"] .button--ghost:hover,
[data-mode="light"] .section--cta .button--ghost:hover {
  background: #ffffff;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
  /* background: rgb(59 130 246 / 0.05); */

/* Icônes SVG dans les boutons héritent de la couleur du texte */
.button svg,
.button--ghost svg {
  fill: currentColor;
  stroke: currentColor;
}

.section__header {
  max-width: 680px;
  margin-bottom: 3rem;
}

.section__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-top: 0;
  margin-bottom: 1rem;
}

.section__intro {
  color: var(--color-muted);
}

.section__subheading {
  margin: 2.5rem 0 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.legal-page {
  background: var(--color-background);
  color: var(--color-light);
}

.legal-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(140deg, var(--color-surface), rgb(59 130 246 / 0.05));
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease;
}

[data-mode="light"] .legal-hero {
  background: linear-gradient(140deg, #ffffff, rgb(59 130 246 / 0.03));
}

.legal-hero .lead {
  color: var(--color-muted);
}

.legal-meta {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.legal-meta__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
}

.legal-content {
  padding: 4rem 0 5rem;
}

.legal-intro {
  max-width: 720px;
  margin: 0 auto 2.8rem;
  text-align: center;
  color: var(--color-muted);
}

.legal-embed {
  display: grid;
  gap: 1.2rem;
}

.legal-embed iframe {
  width: 100%;
  min-height: 640px;
  border: 1px solid var(--color-border);
  border-radius: 1.2rem;
  background: rgb(6 11 20 / 0.45);
}

.legal-download {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.legal-section {
  max-width: 880px;
  margin: 0 auto 2.8rem;
  padding: 2rem;
  border-radius: 1.4rem;
  background: rgb(10 15 23 / 0.8);
  border: 1px solid var(--color-border);
  box-shadow: 0 26px 48px -32px var(--color-shadow);
}

.legal-section h2 {
  margin-top: 0;
  font-family: var(--font-heading);
}

.legal-section p {
  color: var(--color-light);
  opacity: 0.9;
}

.legal-list {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-muted);
  display: grid;
  gap: 0.4rem;
}

.legal-list li::marker {
  color: var(--color-accent);
}

.legal-section a {
  color: var(--color-accent);
}

.grid {
  display: grid;
  gap: 1.8rem;
  max-width: 100%;
  min-width: 0;
}

.grid > * {
  max-width: 100%;
  min-width: 0;
}

.grid--impact {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}

.grid--portfolio {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.grid--testimonials {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.grid--offers {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.card {
  padding: 1.8rem;
  border-radius: 1.4rem;
  background: rgb(13 16 22 / 0.85);
  border: 1px solid var(--color-border);
  box-shadow: 0 25px 48px -32px var(--color-shadow);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 40px -10px rgb(59 130 246 / 0.3),
    0 0 60px -20px rgb(59 130 246 / 0.2),
    0 0 0 1px rgb(59 130 246 / 0.3);
  border-color: rgb(59 130 246 / 0.5);
}

[data-mode="light"] .card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 3px var(--color-shadow);
}

[data-mode="light"] .card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 40px -10px rgb(59 130 246 / 0.25),
    0 0 50px -15px rgb(59 130 246 / 0.15),
    0 0 0 1px rgb(59 130 246 / 0.25);
  border-color: rgb(59 130 246 / 0.4);
}

.card--highlight {
  background: linear-gradient(140deg, var(--color-surface), rgb(59 130 246 / 0.08));
  border: 1px solid var(--color-accent);
  box-shadow: 0 4px 12px rgb(59 130 246 / 0.2);
}

[data-mode="light"] .card--highlight {
  background: linear-gradient(140deg, #ffffff, rgb(59 130 246 / 0.05));
  border: 1px solid var(--color-accent);
  box-shadow: 0 2px 8px rgb(59 130 246 / 0.15);
}

.card--highlight h3 {
  margin-top: 0;
}

.card--highlight p {
  color: var(--color-light);
  opacity: 0.95;
  margin-bottom: 1.1rem;
}

.card--offer {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card--offer:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px var(--color-shadow);
}

[data-mode="light"] .card--offer {
  background: #ffffff;
  border: 1px solid var(--color-border);
}

.card--offer .list-unstyled {
  margin-top: 0.5rem;
  gap: 0.6rem;
}

.card--offer h3 {
  margin-top: 0;
}

.card--service ul {
  color: var(--color-muted);
  padding-left: 1.2rem;
}

.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
  color: var(--color-muted);
}

.badge-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-list__item {
  padding: 0.3rem 0.85rem;
  border-radius: 0.75rem;
  background: var(--color-ghost);
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.badge-list__item:hover {
  background: rgb(59 130 246 / 0.15);
  border-color: var(--color-accent);
  color: var(--color-accent-light);
  transform: translateY(-2px) scale(1.08);
  box-shadow:
    0 4px 12px rgb(59 130 246 / 0.3),
    0 0 20px rgb(59 130 246 / 0.2);
}

.offer__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.offer__duration {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-muted);
}

.offers__note {
  margin-top: 2.2rem;
  padding: 1.6rem 1.8rem;
  border-radius: 1.2rem;
  background: var(--color-ghost);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.offers__note p {
  margin: 0;
}

.offer-details {
  margin-top: 1rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.offer-details summary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-accent);
  transition: color 0.2s ease;
}

.offer-details summary::marker {
  display: none;
}

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

.offer-details summary::before {
  content: "＋";
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.offer-details[open] summary::before {
  content: "−";
}

.offer-details summary:focus {
  outline: none;
  color: var(--color-accent-light);
}

.offer-details > div {
  margin-top: 0.9rem;
  display: grid;
  gap: 1.2rem;
  color: var(--color-muted);
}

.offer-details h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.studio-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.studio-highlight {
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  background: var(--color-ghost);
  border: 1px solid var(--color-border);
}

.studio-highlight__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

.studio-highlight__label {
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.card--compact {
  background: rgb(8 11 17 / 0.9);
  border-style: dashed;
}

.card--transparent {
  background: var(--color-ghost);
  border: 1px solid var(--color-border);
}

.card--outline {
  background: var(--color-ghost);
  border: 1px solid rgb(0 214 255 / 0.2);
}

.card--raised {
  background: rgb(8 10 14 / 0.92);
  border: 1px solid var(--color-border);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.card__icon img {
  width: 100%;
  height: 100%;
}

.portfolio-item__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--color-ghost);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.portfolio-item__tag:hover {
  background: rgb(59 130 246 / 0.15);
  border-color: var(--color-accent);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-accent);
  font-weight: 600;
}

.process {
  display: grid;
  gap: 2.6rem;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.process__step {
  position: relative;
  padding: 2rem;
}

.process__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.5;
}

.testimonial__author span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.grid--about {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about__links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.about__links a img {
  height: 32px;
  filter: grayscale(0.7);
}

.about__links a:hover img {
  filter: grayscale(0);
}

.about__avatar {
  margin: 0 0 1.4rem;
}

.about__avatar img {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  border: 1px solid rgb(0 214 255 / 0.3);
  box-shadow: 0 16px 28px -18px rgb(0 214 255 / 0.4);
}

.section--cta .cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: start;
}

@media (min-width: 960px) {
  .section--cta .cta {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.cta__note {
  color: var(--color-muted);
  margin-bottom: 0;
  font-size: 0.85rem;
}

.cta__info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2rem;
  position: sticky;
  top: 2rem;
}

.cta__info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--color-light);
}

.cta__info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cta__info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
}

.cta__info-list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  fill: var(--color-accent);
  opacity: 0.85;
}

.cta__info-list span {
  flex: 1;
}

.contact-list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  color: var(--color-light);
  opacity: 0.85;
}

.contact-list li .button {
  width: 100%;
  justify-content: center;
}

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

.contact-list img {
  filter: invert(1);
}

.contact-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--color-ghost);
  border: 1px solid var(--color-border);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-list li:hover .contact-list__icon {
  background: rgb(59 130 246 / 0.15);
  border-color: var(--color-accent);
}

.contact-list__icon img {
  width: 16px;
  height: 16px;
  filter: brightness(1.1);
}

.contact-list a {
  color: var(--color-light);
}

.input-group {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--color-border);
  background: rgb(6 11 20 / 0.35);
  color: var(--color-light);
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgb(255 107 53 / 0.2);
}

.site-footer {
  padding: 3.8rem 0 2rem;
  background: #030405;
  transition: background 0.3s ease;
}

[data-mode="light"] .site-footer {
  background: #e2e8f0;
  border-top: 1px solid var(--color-border);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.2rem;
  margin-bottom: 3rem;
}

.site-footer h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-light);
  opacity: 0.9;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--color-muted);
}

.site-footer__list a {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              text-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.site-footer__list a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgb(59 130 246 / 0.5);
}

.site-footer__list a:hover {
  color: var(--color-accent-light);
  transform: translateX(4px);
  text-shadow: 0 0 10px rgb(59 130 246 / 0.3);
}

.site-footer__list a:hover::after {
  width: 100%;
}

.newsletter {
  display: flex;
  gap: 0.6rem;
  background: var(--color-ghost);
  padding: 0.4rem;
  border-radius: 999px;
}

.newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.6rem 1rem;
}

.newsletter button {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: var(--color-accent);
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgb(59 130 246 / 0.3);
}

.site-footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  color: var(--color-muted);
  opacity: 0.7;
  font-size: 0.85rem;
}

.site-footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__location {
  padding-top: 1rem;
  opacity: 0.6;
  font-size: 0.8rem;
  text-align: center;
  color: var(--color-muted);
}

.site-footer__bottom a {
  color: var(--color-muted);
}

.site-footer__location {
  color: var(--color-muted);
  opacity: 0.6;
  font-size: 0.8rem;
  margin: 0;
}

.will-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero__content {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "visual";
  }

  .hero__visual {
    order: -1;
  }

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

@media (max-width: 820px) {
  .container {
    width: calc(100vw - 2.5rem);
  }

  .site-header .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .site-nav {
    gap: 0.5rem;
  }

  .site-nav__toggle {
    display: flex;
  }

  #nav-container {
    position: absolute;
    inset: 74px 1rem auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border-radius: 1.2rem;
    background: rgb(11 23 42 / 0.95);
    padding: 1.4rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 22px 42px -28px var(--color-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  #nav-container.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  [data-mode="light"] #nav-container {
    background: rgb(255 255 255 / 0.98);
    backdrop-filter: blur(20px);
  }

  .site-nav__menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .header-controls {
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--color-border);
    width: 100%;
  }

  .lang-switcher {
    padding: 0.2rem;
    height: 36px;
  }

  .lang-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }

  .mode-toggle {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .hero__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 4.2rem 0;
  }

  .legal-section {
    padding: 1.6rem;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
    justify-content: center;
  }

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

  .grid {
    gap: 1.2rem;
  }

  .grid--impact,
  .grid--cards,
  .grid--portfolio {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .newsletter {
    flex-direction: column;
    padding: 0.7rem;
    align-items: stretch;
  }

  .newsletter button {
    width: 100%;
    padding: 0.75rem;
  }

  .offer__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .offer__duration {
    letter-spacing: 0.16em;
  }

  .offers-calculator__result > div {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-hero {
    padding: 4rem 0 2.2rem;
  }

  .legal-meta {
    grid-template-columns: 1fr;
  }

  .legal-intro {
    text-align: left;
  }

  .legal-embed iframe {
    min-height: 420px;
  }

  .legal-download {
    align-items: stretch;
  }

  .legal-section {
    margin-bottom: 2rem;
  }
}

/* ====================================
   Nouveaux styles Offres/Produits
   ==================================== */

/* Section subheading */
.section__subheading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-light);
  margin: 3rem 0 1.5rem;
  font-family: var(--font-heading);
}

/* Grid offres compacte (2x2 forcée) */
.grid--offers-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

/* Card offre simple (homepage) */
.card--offer-simple,
.card--product-simple {
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card--offer-simple > div:first-child {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgb(147 51 234 / 0.15), rgb(79 70 229 / 0.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card--offer-simple svg,
.card--product-simple svg {
  color: var(--color-accent);
}

.card--product-simple > div:first-child {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.card--product-simple > div:first-child > div:first-child {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgb(147 51 234 / 0.15), rgb(79 70 229 / 0.15));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card--offer-simple:hover,
.card--product-simple:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgb(0 214 255 / 0.15);
}

.card--offer-simple h3,
.card--product-simple h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-light);
}

.card--offer-simple p,
.card--product-simple p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.offer-simple__meta {
  padding: 0.75rem 0;
  margin: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.offer-simple__meta span {
  font-size: 0.875rem;
  color: var(--color-accent-light);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-simple__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 1rem 0;
  font-family: var(--font-heading);
}

.product-badge-small {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-ghost);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

/* Hero services/produits pages */
.hero--service,
.hero--product {
  background: linear-gradient(135deg, rgb(59 130 246 / 0.08), var(--color-background));
  padding: 8rem 0 4rem;
  position: relative;
  transition: background 0.3s ease;
}

[data-mode="light"] .hero--service,
[data-mode="light"] .hero--product {
  background: linear-gradient(135deg, rgb(59 130 246 / 0.05), #f8fafc);
}

.service-meta {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.product-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  margin-top: 2rem;
}

.product-meta dt {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.product-meta dd {
  font-size: 0.875rem;
  margin: 0;
  color: var(--color-text);
}

.service-meta__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-meta__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  font-weight: 600;
}

.service-meta__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.product-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--color-ghost);
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.product-price-hero {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-price-hero__amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.product-price-hero__detail {
  font-size: 1rem;
  color: var(--color-muted);
}

/* Grid detail pages */
.grid--service-detail,
.grid--product-detail {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  margin-top: 3rem;
}

.service-detail__main,
.product-detail__main {
  max-width: 720px;
}

.service-detail__sidebar,
.product-detail__sidebar {
  position: relative;
}

.card--sticky {
  position: sticky;
  top: 120px;
}

.card--product-order {
  border: 2px solid var(--color-accent);
}

/* Timeline */
.timeline {
  margin: 2rem 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

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

.timeline__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--color-light);
}

.timeline ul {
  margin-top: 0.5rem;
}

.timeline li {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

/* Product price box */
.product-price-box {
  text-align: center;
  padding: 1.5rem;
  background-color: rgb(0 214 255 / 0.05);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.product-price-box__amount {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.product-price-box__vat {
  display: block;
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.checklist li {
  padding: 0.5rem 0;
  color: var(--color-light);
  font-size: 0.95rem;
}

.checklist li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Details list */
.details-list {
  margin: 1.5rem 0;
}

.details-list dt {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-light);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.details-list dd {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
}

.details-list ul {
  padding: 0 0 0 17px;
}

.details-list li {
  font-size: 0.875rem;
  color: var(--color-muted);
  padding: 0.25rem 0;
}

.sub-cta {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 1rem;
  text-align: center
}

.card-widget-standard {
  background: var(--color-muted-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.card-widget-standard h4 {
  margin-top: 0;
  color: var(--color-accent);
}

.card-widget-standard p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.card-widget-standard ul {
  margin-bottom: 0;
}

.card-widget-custom {
  background: linear-gradient(135deg, rgb(147 51 234 / 10%), rgb(79 70 229 / 10%));
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid var(--color-accent);
}

.card-widget-custom h4 {
  margin-top: 0;
  color: var(--color-accent);
}

.card-widget-custom p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.card-widget-custom ul {
  margin-bottom: 0;
}

.card--product-order h4 {
  font-size: 1rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--color-accent);
}
.card--product-order p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}
.card--product-order ul {
  font-size: 0.875rem;
  color: var(--color-muted);
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.card--product-order li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.card--product-order .product-price-box {
  margin-bottom: 0.75rem;
}
.card--product-order .product-price-box span {
  display: block;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.card--product-order .product-price-box .product-price-box__amount {
  font-size: 1.5rem;
}

.infos {
  background: var(--color-muted-bg);
  background: linear-gradient(135deg, rgb(147 51 234 / 10%), rgb(79 70 229 / 10%));
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border: 1px solid var(--color-accent);
}
.infos p {
  margin: 0 0 0.5rem;
  color: var(--color-muted);
  font-size: 0.875rem;
}
.infos p:last-child {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.reduc {
  color: var(--color-accent);
  font-weight: 600;
}

.astuces {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--color-muted-bg);
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;
}

.details {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.product-price-box.popular {
  margin-bottom: 1rem;
  border: 2px solid var(--color-accent);
  padding: 0.75rem;
  border-radius: 8px;
  position: relative;
}
.product-price-box.popular > span:first-child {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--color-accent);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-price-box > span:first-child,
.product-price-box.popular > span:nth-child(2) {
  display: block;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}
.product-price-box span.product-price-box__amount {
  font-size: 1.5rem;
}
.product-price-box span.product-price-box__vat span {
  color: var(--color-accent);
}

.product-price-hero > div {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.product-price-hero .product-price-hero__amount {
  font-size: 2rem;
}
.exemple-infos {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}
.spaced {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-muted)
}

/* FAQ */
.faq {
  max-width: 800px;
}

.faq details {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.faq summary {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-light);
  cursor: pointer;
  padding: 1rem 0;
  user-select: none;
}

.faq summary:hover {
  color: var(--color-accent-light);
}

.faq details[open] summary {
  color: var(--color-accent);
}

.faq details p {
  margin-top: 0.75rem;
  padding-left: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Pricing cards (packages-techniques.html) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pricing-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.pricing-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-light);
}

.pricing-card__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-card li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-ghost);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-card__delivery {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-accent-light);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .grid--service-detail,
  .grid--product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card--sticky {
    position: static;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .product-price-hero__amount {
    font-size: 2.5rem;
  }

  .service-meta {
    gap: 2rem;
  }
}

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

  .product-price-hero__amount {
    font-size: 2rem;
  }

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

@media (max-width: 480px) {
  .container {
    width: calc(100vw - 2rem);
  }

  .site-header .container {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .site-nav {
    gap: 0.5rem;
  }

  .lang-switcher {
    padding: 0.15rem;
    height: 36px;
  }

  .lang-btn {
    padding: 0.35rem 0.5rem;
    font-size: 0.65rem;
  }

  .mode-toggle {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding-top: 4.5rem;
    padding-bottom: 3.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .card {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* SVG Icons with inline sprite + <use> */
svg[class^="icon-"] {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Specific icon sizes */
.icon-laravel,
.icon-vuejs,
.icon-docker {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .icon-laravel,
  .icon-vuejs,
  .icon-docker {
    width: 32px;
    height: 32px;
  }
}

.icon-twitch,
.icon-gitlab,
.icon-youtube {
  width: 24px;
  height: 24px;
}

.icon-mail,
.icon-call,
.icon-home-pin {
  width: 20px;
  height: 20px;
}

.icon-schema,
.icon-fullstack,
.icon-container,
.icon-check-gear {
  width: 48px;
  height: 48px;
}

/* Icons in Impact section - larger size */
#impact .card__icon svg {
  width: auto;
  height: 4rem;
}
