/* ═══════════════════════════════════════════════════════════
   YACQS — Feuille de styles institutionnelle
   Palette : Navy #0d1f5c · Blanc #ffffff · Gris clair #f5f6fa
   ═══════════════════════════════════════════════════════════ */

/* ─── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0d1f5c;
  --navy-deep:   #081445;
  --navy-mid:    #1a3080;
  --navy-light:  #2a45a8;
  --navy-pale:   #e8ecf8;
  --accent:      #2a45a8;
  --accent-glow: rgba(42, 69, 168, 0.20);
  --white:       #ffffff;
  --bg:          #f5f6fa;
  --bg-card:     #ffffff;
  --text-main:   #0d1f5c;
  --text-mid:    #3a4a7a;
  --text-muted:  #6b7aab;
  --border:      #d4d9ef;
  --shadow-sm:   0 2px 8px rgba(13, 31, 92, 0.08);
  --shadow-md:   0 8px 32px rgba(13, 31, 92, 0.12);
  --shadow-lg:   0 24px 64px rgba(13, 31, 92, 0.16);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body:   'Inter', system-ui, sans-serif;
  --font-display:'Space Grotesk', 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ─── Utilities ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* ─── Animation entrée ─────────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
}
[data-anim="fade-left"]  { transform: translateX(32px); }
[data-anim="fade-right"] { transform: translateX(-32px); }

[data-anim].visible {
  opacity: 1;
  transform: none;
}

/* ─── Section headers ──────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.38;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.section-header .section-subtitle { margin-inline: auto; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13, 31, 92, 0.30);
}
.btn--primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 8px 28px rgba(13, 31, 92, 0.40);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-loader {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn--loading .btn-label { display: none; }
.btn--loading .btn-loader { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--navy-light);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 31, 92, 0.30);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--navy-pale) 1px, transparent 1px),
    linear-gradient(to bottom, var(--navy-pale) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
}
.hero-glow--1 {
  width: 600px; height: 600px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, var(--navy-mid), transparent 70%);
}
.hero-glow--2 {
  width: 400px; height: 400px;
  bottom: 0; left: 10%;
  background: radial-gradient(circle, var(--navy-light), transparent 70%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-title-accent {
  color: var(--navy-light);
  position: relative;
  display: inline-block;
}
.hero-title-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 3px;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-light), transparent);
  border-radius: 2px;
  opacity: 0.4;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero card */
.hero-visual { display: flex; justify-content: center; }

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.hero-card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-card-dot--green  { background: #34c759; }
.hero-card-dot--yellow { background: #ffcc00; }
.hero-card-dot--red    { background: #ff3b30; }
.hero-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

.hero-card-body { padding: 1.5rem; }

.hero-stat { margin-bottom: 1rem; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
}
.hero-stat-unit {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-progress {
  height: 6px;
  background: var(--navy-pale);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.hero-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  border-radius: 3px;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}
.hero-progress-bar.animated { width: var(--w); }

.hero-task-list { display: flex; flex-direction: column; gap: 0.7rem; }
.hero-task {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.hero-task-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
}
.hero-task--done .hero-task-icon {
  background: #e6f9ee;
  color: #1a9a45;
}
.hero-task--running .hero-task-icon {
  background: var(--navy-pale);
  position: relative;
}
.hero-task-icon--pulse::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--navy-light);
  animation: pulse-dot 1.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll-icon {
  width: 28px; height: 44px;
  border: 2px solid var(--border);
  border-radius: 14px;
  position: relative;
}
.hero-scroll-icon::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--navy-light);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { top: 7px; opacity: 1; }
  80%       { top: 22px; opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════ */
.stats {
  background: var(--navy);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.stat-label {
  margin-top: 0.6rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 180px;
  margin-inline: auto;
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  color: var(--navy);
  margin-bottom: 1.25rem;
  background: var(--navy-pale);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-light);
  background: var(--navy-pale);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════════════════
   APPROCHE / STEPS
══════════════════════════════════════════════════════════ */
.approach { background: var(--white); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin-inline: auto;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 60px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy-pale), var(--navy), var(--navy-pale));
  opacity: 0.3;
}

.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: start;
  padding-block: 2.5rem;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy-pale);
  line-height: 1.5;
  text-align: right;
  transition: color var(--transition);
  padding-right: 2rem;
  border-right: 2px solid var(--navy-pale);
  margin-right: -1px;
}
.step:hover .step-number { color: var(--navy); }

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
}

/* ══════════════════════════════════════════════════════════
   POURQUOI YACQS
══════════════════════════════════════════════════════════ */
.why { background: var(--bg); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.why-title { margin-bottom: 1.25rem; }

.why-text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}
.why-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Why card stack */
.why-visual { display: flex; justify-content: center; align-items: center; }

.why-card-stack {
  position: relative;
  width: 340px;
  height: 280px;
}

.why-card {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
}
.why-card--back {
  inset: 20px 0 0 30px;
  background: var(--navy-pale);
  transform: rotate(3deg);
}
.why-card--mid {
  inset: 10px 15px 10px 15px;
  background: var(--bg);
  transform: rotate(-1.5deg);
}
.why-card--front {
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: none;
}
.why-card-icon {
  width: 52px; height: 52px;
  color: var(--navy);
  margin-bottom: 1rem;
}
.why-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.why-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-title { margin-bottom: 1.25rem; }

.contact-text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}
.contact-detail:hover { color: var(--navy-light); }

.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--navy-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }

/* Form */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 1.25rem; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-main);
  font-size: 0.93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-input.error { border-color: #e53e3e; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d1f5c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

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

.form-error {
  font-size: 0.78rem;
  color: #e53e3e;
  min-height: 1em;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1a9a45;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 1rem;
  background: #e6f9ee;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  filter: invert(1) saturate(0) brightness(2.1) contrast(1.05);
  mix-blend-mode: screen;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 260px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

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

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

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

  .why-inner { grid-template-columns: 1fr; }
  .why-visual { order: -1; }

  .contact-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-links li { border-bottom: 1px solid var(--navy-pale); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-link {
    display: block;
    padding: 0.9rem 1.5rem;
  }
  .nav-link::after { display: none; }
  .nav-cta {
    margin: 1rem 1.5rem 0;
    text-align: center;
    border-radius: var(--radius-sm);
  }

  .nav-burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }

  .steps::before { display: none; }
  .step { grid-template-columns: 1fr; gap: 0.5rem; }
  .step-number {
    font-size: 2.5rem;
    text-align: left;
    padding-right: 0;
    border-right: none;
    border-left: 3px solid var(--navy);
    padding-left: 0.75rem;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:last-child { border-bottom: none; }
  .footer-nav { grid-template-columns: 1fr; }
}
