/* ============================================================
   MWC — Feuille de style partagée
   Design : Professionnel & chaleureux, bleu profond + ambre
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --blue:        oklch(0.48 0.16 240);
  --blue-mid:    oklch(0.58 0.16 240);
  --blue-light:  oklch(0.93 0.04 240);
  --blue-dark:   oklch(0.28 0.13 240);
  --amber:       oklch(0.72 0.15 65);
  --amber-light: oklch(0.94 0.06 65);
  --ivory:       oklch(0.98 0.008 80);
  --ivory-dark:  oklch(0.95 0.012 80);
  --ink:         oklch(0.18 0.02 245);
  --ink-muted:   oklch(0.45 0.02 245);
  --ink-subtle:  oklch(0.65 0.015 245);
  --white:       #ffffff;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --shadow-sm:   0 1px 4px oklch(0.18 0.02 245 / 0.07);
  --shadow-md:   0 4px 20px oklch(0.18 0.02 245 / 0.10);
  --shadow-lg:   0 12px 48px oklch(0.18 0.02 245 / 0.14);
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--ink-muted); line-height: 1.75; }

/* ── Layout helpers ───────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(0.90 0.01 245);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo img { height: 38px; width: auto; }
.logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--ink-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--amber);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.dropdown-trigger svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-dropdown:hover .dropdown-trigger svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid oklch(0.92 0.01 245);
  min-width: 220px; overflow: hidden;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-6px);
}
/* Pont invisible qui comble le gap entre le trigger et le menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px; /* légèrement > 16px pour plus de tolérance */
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--ink-muted);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--blue-light); color: var(--blue); }
.dropdown-menu a::after { display: none; }

/* CTA button */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600; font-size: 0.875rem;
  padding: 11px 24px;
  border-radius: 100px;
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px oklch(0.38 0.15 245 / 0.30);
}
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px oklch(0.38 0.15 245 / 0.35);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--blue);
  font-weight: 600; font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 100px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-amber {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 700; font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px oklch(0.72 0.15 65 / 0.30);
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 8px 24px oklch(0.72 0.15 65 / 0.40); }

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-weight: 600; font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.7); }

/* ── Hamburger mobile ─────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  background: none; border: none;
  z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0; top: 72px;
  background: var(--white);
  z-index: 90;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  border-top: 1px solid oklch(0.92 0.01 245);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem; font-weight: 500;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid oklch(0.93 0.01 245);
  display: block;
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .btn-primary { margin-top: 16px; justify-content: center; font-size: 1rem; padding: 14px 28px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/job-5382501_1280.jpg');
  background-size: cover; background-position: center 30%;
  opacity: 0.18;
}
.hero-geo {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-geo svg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  opacity: 0.07;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: oklch(1 0 0 / 0.10);
  border: 1px solid oklch(1 0 0 / 0.20);
  color: var(--amber);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-style: italic;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero p {
  color: oklch(0.85 0.03 245);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating geo shapes */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid oklch(1 0 0 / 0.08);
}
.geo-circle-1 { width: 500px; height: 500px; right: -80px; top: -100px; }
.geo-circle-2 { width: 300px; height: 300px; right: 80px; bottom: -60px; }
.geo-dot {
  position: absolute;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.6;
}

/* ── Section labels ───────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--amber);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block; width: 20px; height: 2px;
  background: var(--amber);
  border-radius: 1px;
}
.section-title { color: var(--ink); margin-bottom: 16px; }
.section-sub   { color: var(--ink-muted); font-size: 1.05rem; max-width: 560px; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid oklch(0.92 0.01 245);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition), transform var(--transition);
}
.card:hover .card-icon { background: var(--blue); transform: scale(1.08); }
.card-icon svg { width: 26px; height: 26px; color: var(--blue); transition: color var(--transition); }
.card:hover .card-icon svg { color: var(--white); }

/* ── Feature list ─────────────────────────────────────────── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--ink-muted); font-size: 0.95rem;
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 5px;
  width: 16px; height: 16px;
  background: var(--blue);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z'/%3E%3C/svg%3E");
  mask-size: contain; mask-repeat: no-repeat;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid oklch(0.92 0.01 245);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute; top: 20px; left: 30px;
  font-family: 'DM Serif Display', serif;
  font-size: 5rem; line-height: 1;
  color: var(--blue-light);
  z-index: 0;
}
.testimonial-text {
  position: relative; z-index: 1;
  font-size: 0.975rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-bottom: 24px;
  margin-top: 24px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem; color: var(--blue);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.testimonial-role { font-size: 0.8rem; color: var(--ink-subtle); }
.stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 8px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid oklch(0.91 0.01 245);
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  font-weight: 600; font-size: 1rem;
  color: var(--ink);
  transition: color var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--blue); transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--blue); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer p { padding-bottom: 22px; font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid oklch(0.92 0.01 245);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-header { padding: 36px 32px 28px; }
.pricing-badge {
  display: inline-block;
  background: var(--amber); color: var(--ink);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 20px;
}
.pricing-featured-header { background: var(--blue); color: var(--white); }
.pricing-featured-header .pricing-badge { background: var(--amber); }
.pricing-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.6; margin-bottom: 8px; }
.pricing-name { font-family: 'DM Serif Display', serif; font-size: 1.6rem; margin-bottom: 6px; }
.pricing-desc { font-size: 0.875rem; opacity: 0.65; margin-bottom: 20px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; }
.pricing-price .amount { font-family: 'DM Serif Display', serif; font-size: 2.8rem; }
.pricing-price .unit { font-size: 0.9rem; opacity: 0.65; }
.pricing-body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.pricing-body .feature-list { flex: 1; margin-bottom: 28px; }

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ivory-dark);
  position: relative;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: repeating-linear-gradient(
    45deg,
    oklch(0.93 0.01 245),
    oklch(0.93 0.01 245) 4px,
    oklch(0.96 0.005 245) 4px,
    oklch(0.96 0.005 245) 16px
  );
  color: var(--ink-subtle);
  font-family: monospace; font-size: 0.75rem; text-align: center;
}

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--blue-dark);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, oklch(0.50 0.17 245 / 0.4), transparent 60%),
              radial-gradient(ellipse at 80% 60%, oklch(0.72 0.15 65 / 0.12), transparent 50%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: oklch(0.80 0.03 245); max-width: 480px; margin: 0 auto 36px; }

/* ── Stat bar ─────────────────────────────────────────────── */
.stats-bar {
  display: flex; gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stat-item {
  flex: 1; padding: 36px 24px; text-align: center;
  border-right: 1px solid oklch(0.93 0.01 245);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--blue-light); }
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem; color: var(--blue);
  display: block; line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--ink-subtle); font-weight: 500; }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--blue-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, oklch(0.50 0.17 245 / 0.15));
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: oklch(0.80 0.03 245); max-width: 540px; font-size: 1.1rem; margin-bottom: 32px; }

/* ── Form ─────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.form-input, .form-textarea, .form-select {
  padding: 13px 16px;
  border: 1.5px solid oklch(0.88 0.015 245);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px oklch(0.38 0.15 245 / 0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--blue-dark);
  color: oklch(0.75 0.04 245);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-desc { font-size: 0.875rem; margin-top: 12px; color: oklch(0.65 0.04 245); max-width: 260px; }
.footer-title { font-family: 'DM Serif Display', serif; color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: oklch(0.65 0.04 245); transition: color var(--transition); }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid oklch(0.30 0.06 245);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
  color: oklch(0.50 0.04 245);
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.animate-fadeup    { animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) both; }
.animate-fadein    { animation: fadeIn 0.7s ease both; }
.delay-100         { animation-delay: 0.1s; }
.delay-200         { animation-delay: 0.2s; }
.delay-300         { animation-delay: 0.3s; }
.delay-400         { animation-delay: 0.4s; }
.delay-500         { animation-delay: 0.5s; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Process steps ────────────────────────────────────────── */
.steps { display: flex; gap: 0; position: relative; }
.step { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.step-number {
  width: 52px; height: 52px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--blue-light);
}
.step::before {
  content: '';
  position: absolute; top: 26px; left: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 2px;
  background: var(--blue-light);
}
.step:last-child::before { display: none; }
.step h3 { font-size: 1rem; margin-bottom: 8px; }

/* ── Contact info card ────────────────────────────────────── */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid oklch(0.92 0.01 245);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-info-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-subtle); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--ink); }
.contact-info-value a { color: var(--blue); }
.contact-info-value a:hover { text-decoration: underline; }

/* ── Popup ────────────────────────────────────────────────── */
.popup-overlay {
  display: none; position: fixed; inset: 0;
  background: oklch(0.18 0.02 245 / 0.60);
  backdrop-filter: blur(8px);
  z-index: 500;
  align-items: center; justify-content: center;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 380px; width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.4s cubic-bezier(0.4,0,0.2,1);
}
.popup-icon {
  width: 64px; height: 64px;
  background: oklch(0.92 0.09 150);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.popup-icon svg { width: 32px; height: 32px; color: oklch(0.50 0.15 150); }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .header-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1/-1; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid oklch(0.93 0.01 245); }
  .stat-item:last-child { border-bottom: none; }
  .steps { flex-direction: column; gap: 32px; }
  .step::before { display: none; }
  .cta-band { padding: 48px 32px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero { min-height: 100svh; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}
