/* ============================================================
   ExtTech — Rebrand stylesheet
   Brand motif: square brackets [ ] = "extension"
   Palette: near-black canvas · refined lime accent · warm sand neutral
   ============================================================ */

:root {
  --bg:        #0A0A0B;
  --bg-2:      #0F0F12;
  --surface:   #15151A;
  --surface-2: #1C1C22;
  --text:      #F4F4F2;
  --muted:     #9A9AA4;
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.14);
  --accent:    #C9EC5B;   /* refined lime — green pulled off max, less neon */
  --accent-2:  #E6D6B0;   /* warm sand — premium neutral second tone */
  --accent-ink:#0A0A0B;

  --maxw: 1160px;
  --radius: 16px;
  --radius-sm: 10px;

  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
.accent { color: var(--accent); }

.kicker {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted);
  margin-bottom: 26px;
  padding: 7px 14px;
  border: 1px solid var(--line); border-radius: 100px;
  background: var(--surface);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  padding: 13px 22px; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 236, 91, 0.25); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 1.1rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  letter-spacing: -0.03em; color: var(--text);
}
.brand-mark { color: var(--accent); }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 0.95rem; color: var(--muted);
  position: relative; padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 90px 0 70px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 75% 20%, rgba(230, 214, 176, 0.10), transparent 70%),
    radial-gradient(38% 44% at 26% 40%, rgba(201, 236, 91, 0.07), transparent 70%),
    radial-gradient(50% 60% at 10% 0%, rgba(201, 236, 91, 0.10), transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }

.hero-title { font-size: clamp(1.9rem, 3.7vw, 2.8rem); margin-bottom: 24px; font-weight: 700; line-height: 1.08; }
.hero-sub { color: var(--muted); font-size: 1.15rem; max-width: 30em; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-meta { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-meta div { display: flex; flex-direction: column; flex: 1 1 0; min-width: 0; }
.hero-meta strong { font-family: var(--font-display); font-size: 1.05rem; }
.hero-meta span { color: var(--muted); font-size: 0.9rem; }

/* Banner placeholder — replace .banner-art with your final art */
.hero-visual { display: flex; justify-content: center; }
.banner-art {
  position: relative;
  width: 100%; aspect-ratio: 1 / 1; max-width: 412px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 24px;
  background:
    linear-gradient(180deg, var(--surface), var(--bg-2));
  overflow: hidden;
}
.banner-art::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  opacity: 0.6;
}
/* Brand hero visual — team network converging on the product core */
.banner-svg { position: relative; z-index: 1; width: 100%; max-width: 620px; height: auto; }

/* Photos — unified on-brand treatment (grayscale + dark; subtle colour reveal on hover) */
.photo { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.photo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05) brightness(0.82); transition: filter 0.6s var(--ease), transform 0.6s var(--ease); }
.photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(10, 10, 11, 0.12), rgba(10, 10, 11, 0.5)); }
.photo:hover img { filter: grayscale(40%) contrast(1.05) brightness(0.95); transform: scale(1.04); }
.photo-feature { aspect-ratio: 4 / 3; }
.photo-collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.photo-collage .photo { aspect-ratio: 4 / 3; }
@media (max-width: 560px) { .photo-collage { grid-template-columns: 1fr; } }
.photo-band { position: relative; width: 100%; height: 340px; overflow: hidden; border-block: 1px solid var(--line); }
.photo-band img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.04) brightness(0.7); }
.photo-band::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(10, 10, 11, 0.3), rgba(10, 10, 11, 0.55)); }
@media (max-width: 560px) { .photo-band { height: 220px; } }
.bv-glow { animation: bvGlow 3s ease-in-out infinite; }
.bv-lines line { stroke: rgba(255, 255, 255, 0.10); stroke-width: 1.5; }
.bv-flow circle { fill: var(--accent); }
.bv-bracket { fill: none; stroke-width: 6.5; stroke-linecap: round; stroke-linejoin: round; }
.bv-shimmer { fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 9 91; animation-name: bvShimmer; animation-timing-function: linear; animation-iteration-count: infinite; }
.bv-float1, .bv-float2, .bv-float3 { transform-box: fill-box; transform-origin: center; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.bv-float1 { animation-name: bvDrift1; }
.bv-float2 { animation-name: bvDrift2; }
.bv-float3 { animation-name: bvDrift3; }
.bv-label { fill: var(--muted); font-family: var(--font-display); font-size: 13px; font-weight: 500; text-anchor: middle; }
.bv-ring { transform-box: fill-box; transform-origin: center; animation: bvRing 3s ease-in-out infinite; }
.bv-core { transform-box: fill-box; transform-origin: center; animation: bvBob 4s ease-in-out infinite; }

@keyframes bvGlow { 0%,100% { opacity: 0.45; } 50% { opacity: 0.85; } }
@keyframes bvShimmer { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -100; } }
@keyframes bvRing { 0%,100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.13); opacity: 0.6; } }
@keyframes bvBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes bvDrift1 { 0% { transform: translate(0,0) scale(1); } 25% { transform: translate(4px,-4px) scale(1.05); } 50% { transform: translate(0,-8px) scale(1); } 75% { transform: translate(-4px,-4px) scale(0.96); } 100% { transform: translate(0,0) scale(1); } }
@keyframes bvDrift2 { 0% { transform: translate(0,0) scale(1); } 25% { transform: translate(-5px,-3px) scale(0.96); } 50% { transform: translate(2px,-8px) scale(1.05); } 75% { transform: translate(5px,-3px) scale(1); } 100% { transform: translate(0,0) scale(1); } }
@keyframes bvDrift3 { 0% { transform: translate(0,0) scale(1); } 25% { transform: translate(4px,-5px) scale(1.04); } 50% { transform: translate(-3px,-7px) scale(0.98); } 75% { transform: translate(-5px,-2px) scale(1.03); } 100% { transform: translate(0,0) scale(1); } }

/* ============================================================
   Trust strip
   ============================================================ */
.trust { padding: 36px 0; border-block: 1px solid var(--line); background: var(--bg-2); }
.trust-label { text-align: center; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.trust-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 40px; }
.trust-logos span { font-family: var(--font-display); font-size: 0.98rem; color: var(--text); opacity: 0.7; }
.trust-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.trust-track { display: flex; gap: 52px; width: max-content; animation: trustMarquee 38s linear infinite; }
.trust-track span { font-family: var(--font-display); font-size: 0.98rem; color: var(--text); opacity: 0.6; white-space: nowrap; transition: opacity 0.2s var(--ease), color 0.2s var(--ease); }
.trust-track span:hover { opacity: 1; color: var(--accent); }
.trust-marquee:hover .trust-track { animation-play-state: paused; }
@keyframes trustMarquee { to { transform: translateX(-50%); } }

/* Film grain overlay */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Hero — staggered entrance on load */
.hero-copy > *, .hero-visual { animation: heroIn 0.75s var(--ease) both; }
.hero-copy > .eyebrow { animation-delay: 0.05s; }
.hero-copy > .hero-title { animation-delay: 0.16s; }
.hero-copy > .hero-sub { animation-delay: 0.28s; }
.hero-copy > .hero-cta { animation-delay: 0.4s; }
.hero-copy > .hero-meta { animation-delay: 0.52s; }
.hero-visual { animation-delay: 0.32s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.trust-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 28px; }
.trust-more { text-align: center; margin-top: 16px; }
.trust-more a { font-family: var(--font-display); font-size: 0.9rem; color: var(--accent); transition: opacity 0.2s var(--ease); }
.trust-more a:hover { opacity: 0.75; }

/* Follow us — social icon buttons */
.follow-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.follow-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  color: var(--text); background: var(--surface); border: 1px solid var(--line-2);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.follow-links a svg { width: 20px; height: 20px; display: block; }
.follow-links a:hover { color: var(--accent); border-color: var(--accent); background: var(--surface-2); transform: translateY(-3px); }

/* ============================================================
   Generic sections
   ============================================================ */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.section-lead { color: var(--muted); font-size: 1.1rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative; padding: 32px 28px 30px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--surface-2); }
.card:hover::before { transform: scaleX(1); }
.card-num { font-family: var(--font-display); font-size: 0.85rem; color: var(--accent); letter-spacing: 0.1em; }
.card h3 { font-size: 1.3rem; margin: 14px 0 10px; }
.card p { color: var(--muted); font-size: 1rem; }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 4px; }
.timeline li {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start;
  padding: 24px 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.timeline li:hover { padding-left: 12px; }
.t-num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--accent);
}
.timeline h4 { font-size: 1.25rem; margin-bottom: 6px; }
.timeline p { color: var(--muted); }

/* ---------- Industries ---------- */
.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry { padding: 24px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.industry:hover { transform: translateY(-5px); border-color: rgba(201, 236, 91, 0.45); background: var(--surface-2); box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.6); }
.ind-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.ind-ico { width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; }
.ind-ico svg { width: 21px; height: 21px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ind-head h3 { font-size: 1.05rem; line-height: 1.2; }
.industry p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
/* full Industries page keeps wider cards */
.industries--detail { grid-template-columns: repeat(2, 1fr); }
.industries--detail .industry h3 { font-size: 1.25rem; margin-bottom: 10px; }

/* ---------- Why / stats ---------- */
.why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.why-grid h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; }
.section-alt .why-grid { align-items: end; }
.check-list { margin-top: 28px; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 28px; color: var(--text); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 9px; height: 9px; border-radius: 2px;
  background: var(--accent); box-shadow: 0 0 10px rgba(201, 236, 91, 0.4);
}
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat { padding: 22px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); text-align: left; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--accent); letter-spacing: -0.03em; }
.stat span { color: var(--muted); font-size: 0.95rem; }

/* ---------- Careers / jobs ---------- */
.jobs { display: grid; gap: 14px; }
.job {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.job:hover { transform: translateX(8px); border-color: var(--accent); background: var(--surface-2); }
.job h3 { font-size: 1.3rem; margin-bottom: 4px; }
.job p { color: var(--muted); font-size: 0.95rem; }
.job-arrow { font-size: 1.5rem; color: var(--accent); transition: transform 0.3s var(--ease); }
.job:hover .job-arrow { transform: translateX(6px); }

/* ---------- Tech stack — Core (flip) + Also (reveal) ---------- */
.stack-tier { margin-bottom: 16px; }
.stack-tier-label { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 5px; }
.stack-tier-label.core { color: var(--accent); }
.stack-tier-label.also { color: var(--muted); }
.stack-tier-sub { color: var(--muted); font-size: 0.98rem; }

.core-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 16px 0 42px; }
.cf { perspective: 1100px; height: 200px; }
.cf-in { position: relative; width: 100%; height: 100%; border-radius: var(--radius); cursor: pointer; transition: transform 0.6s var(--ease); transform-style: preserve-3d; }
.cf:hover .cf-in, .cf.is-flipped .cf-in { transform: rotateY(180deg); }
.cf-in:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.cf-face {
  position: absolute; inset: 0; -webkit-backface-visibility: hidden; backface-visibility: hidden;
  border-radius: var(--radius); border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  background: var(--surface); padding: 18px; box-sizing: border-box;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.cf-front { gap: 12px; }
.cf-front h3 { font-size: 1.15rem; }
.cf-bar { width: 26px; height: 3px; border-radius: 3px; background: var(--accent); }
.cf-hint { font-size: 0.8rem; color: var(--muted); }
.cf-back { transform: rotateY(180deg); }
.cf-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.cf-tag { font-family: var(--font-display); font-size: 0.74rem; font-weight: 500; color: var(--accent-ink); background: var(--accent); padding: 4px 9px; border-radius: var(--radius-sm); }

.also-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 16px; }
.al {
  position: relative; height: 104px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.al:hover, .al.is-open { border-color: color-mix(in srgb, var(--accent) 55%, transparent); background: var(--surface-2); }
.al:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.al-name { font-family: var(--font-display); font-size: 1rem; font-weight: 500; text-align: center; padding: 0 10px; transition: transform 0.25s var(--ease); }
.al:hover .al-name, .al.is-open .al-name { transform: translateY(-28px); }
.al-techs { position: absolute; left: 12px; right: 12px; bottom: 14px; text-align: center; font-size: 0.78rem; line-height: 1.5; color: var(--muted); opacity: 0; transition: opacity 0.25s var(--ease); }
.al:hover .al-techs, .al.is-open .al-techs { opacity: 1; }

@media (max-width: 860px) { .core-grid, .also-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .core-grid, .also-grid { grid-template-columns: 1fr; } }

/* ---------- Legal pages (privacy / cookies) ---------- */
.legal { max-width: 760px; }
.legal-updated { font-size: 0.85rem; color: var(--muted); opacity: 0.8; margin-bottom: 30px; }
.legal h2 { font-size: 1.35rem; margin: 38px 0 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p { color: var(--muted); margin-bottom: 14px; }
.legal ul { margin: 0 0 14px; display: grid; gap: 9px; }
.legal li { color: var(--muted); position: relative; padding-left: 24px; }
.legal li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }
.legal a { color: var(--accent); }

/* ---------- Selected work / scenarios (home) ---------- */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.case-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 18px 24px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
  overflow: hidden;
}
.case-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.case-viz { border-radius: var(--radius-sm); overflow: hidden; line-height: 0; margin-bottom: 6px; }
.case-viz svg, .case-shot { width: 100%; height: auto; display: block; }
.case-viz svg text { font-family: var(--font-body); }
.case-card h3, .case-card > p { padding-inline: 6px; }
.case-tag { padding-inline: 6px; }
.case-out { margin-inline: 6px; }
.case-tag { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.case-card h3 { font-size: 1.1rem; line-height: 1.22; }
.case-card p { color: var(--muted); font-size: 0.95rem; }
.case-out { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); color: var(--accent) !important; font-family: var(--font-display); font-size: 0.88rem; }

/* ---------- Why trust us / guarantees (home) ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-card {
  padding: 28px 26px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.trust-card:hover { transform: translateY(-5px); border-color: rgba(201, 236, 91, 0.45); background: var(--surface-2); box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.6); }
.trust-head { display: flex; align-items: center; gap: 13px; margin-bottom: 13px; }
.trust-ico {
  display: inline-flex; width: 44px; height: 44px; flex-shrink: 0; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--surface-2); border: 1px solid var(--line-2);
}
.trust-ico svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-head h3 { font-size: 1.1rem; line-height: 1.2; }
.trust-card p { color: var(--muted); font-size: 0.96rem; line-height: 1.55; }
.why-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.why-stat { text-align: center; }
.why-stat strong { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--accent); letter-spacing: -0.03em; }
.why-stat span { color: var(--muted); font-size: 0.92rem; }

/* FAQ accordion */
.faq-list { margin-top: 38px; }
.faq-item { border: 1px solid var(--line-2); border-radius: 12px; background: var(--surface); margin-bottom: 12px; overflow: hidden; transition: border-color .2s ease; }
.faq-item[open] { border-color: rgba(201, 236, 91, 0.45); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-family: var(--font-display); font-size: 1.06rem; font-weight: 500; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.15rem; line-height: 1; transition: transform .25s ease, background .2s ease, color .2s ease; }
.faq-item[open] .faq-plus { transform: rotate(45deg); background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.faq-a { overflow: hidden; }
.faq-a p { color: var(--muted); font-size: 0.98rem; line-height: 1.6; margin: 0; max-width: 60em; padding: 0 22px 22px; }

/* ---------- Engagement models (home) ---------- */
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.model-card {
  padding: 26px 24px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.model-card:hover { transform: translateY(-5px); border-color: rgba(201, 236, 91, 0.45); background: var(--surface-2); box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.6); }
.model-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.model-ico {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: var(--surface-2); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
}
.model-ico svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.model-head h3 { font-size: 1.15rem; line-height: 1.2; }
.model-card p { color: var(--muted); font-size: 0.98rem; line-height: 1.55; }
.models-pricing { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.models-pricing-label { color: var(--muted); font-size: 0.95rem; }
.price-pill {
  font-family: var(--font-display); font-size: 0.86rem; color: var(--accent);
  background: var(--surface); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  padding: 6px 14px; border-radius: 100px;
}

/* ---------- Technologies teaser (home) ---------- */
.tech-teaser { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.tt-tag { font-family: var(--font-display); font-size: 0.92rem; font-weight: 500; color: var(--accent-ink); background: var(--accent); padding: 8px 16px; border-radius: 100px; }
.tt-more { font-family: var(--font-display); font-size: 0.92rem; color: var(--muted); background: var(--surface); border: 1px solid var(--line-2); padding: 8px 16px; border-radius: 100px; }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 110px 0; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 120% at 50% 0%, rgba(201, 236, 91, 0.10), transparent 70%);
}
.cta-inner { max-width: 800px; margin-inline: auto; text-align: center; }
.cta-inner h2 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); margin-bottom: 18px; }
.cta-inner .section-lead { max-width: 34em; margin-inline: auto; margin-bottom: 36px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-top: 56px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 36px 64px; padding-bottom: 40px; }
.footer-brand { flex: 0 1 320px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col { flex: 0 0 auto; }
.footer-tag { color: var(--muted); font-size: 0.86rem; margin-top: 12px; max-width: 26em; }
.footer-h { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 13px; }
.footer-h-2 { margin-top: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { color: var(--muted); font-size: 0.86rem; line-height: 1.3; transition: color 0.2s var(--ease); }
.footer-links a:hover { color: var(--accent); }
.footer-mail { color: var(--muted); font-size: 0.86rem; transition: color 0.2s var(--ease); }
.footer-mail:hover { color: var(--accent); }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 12px 22px; align-items: center; }
.footer-bottom-links a { transition: color 0.2s var(--ease); }
.footer-social { display: flex; gap: 9px; flex-shrink: 0; margin-top: 20px; }
.footer-social a, .footer-social .soc-off {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  color: var(--muted); border: 1px solid var(--line-2);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-social a svg { width: 17px; height: 17px; display: block; }
.footer-social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-social .soc-off { cursor: default; position: relative; }
.footer-social .soc-off svg { width: 19px; height: 19px; display: block; opacity: 0.5; transition: opacity 0.2s var(--ease); }
.footer-social .soc-off:hover svg { opacity: 0.85; }
.footer-social .soc-off::after {
  content: "Coming soon"; position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--surface-2); color: var(--text); font-family: var(--font-body); font-size: 0.68rem;
  padding: 4px 9px; border-radius: 6px; white-space: nowrap; border: 1px solid var(--line-2);
  opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease);
}
.footer-social .soc-off:hover::after { opacity: 1; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; }
.footer-nav a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 24px 0; border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--muted);
}
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   Multi-page additions
   ============================================================ */

/* ---------- Active nav state ---------- */
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after { width: 100%; }

/* ---------- Language switch ---------- */
.lang-switch { display: inline-flex; border: 1px solid var(--line-2); border-radius: 100px; overflow: hidden; }
.lang-btn {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 7px 13px; background: transparent; color: var(--muted);
  border: none; cursor: pointer; transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-btn.is-active { background: var(--accent); color: var(--accent-ink); }
.lang-btn:not(.is-active):hover { color: var(--text); }

/* ---------- Sub-page hero ---------- */
.page-hero { position: relative; padding: 84px 0 52px; }
.page-hero + .section { padding-top: 44px; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(50% 60% at 80% 0%, rgba(230, 214, 176, 0.10), transparent 70%),
    radial-gradient(40% 60% at 0% 0%, rgba(201, 236, 91, 0.08), transparent 70%);
}
.page-title { font-size: clamp(2.3rem, 5vw, 3.8rem); margin-bottom: 18px; }
.page-lead { color: var(--muted); font-size: 1.15rem; max-width: 36em; }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 16px; align-items: start; }
.about-intro .page-lead { max-width: none; margin: 0; }
.about-intro .section-lead { max-width: none; }
@media (max-width: 760px) { .about-intro { grid-template-columns: 1fr; gap: 22px; } }
.about-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 40px; }
.about-cols .section-lead { max-width: none; }
@media (max-width: 760px) { .about-cols { grid-template-columns: 1fr; gap: 20px; margin-top: 26px; } }
.num-band { grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; padding-top: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.num-band .why-stat { padding: 48px 24px; border-left: 1px solid var(--line); }
.num-band .why-stat:first-child { border-left: 0; }
.num-band .why-stat strong { font-size: clamp(2.6rem, 3.4vw, 3.3rem); }
.num-band .why-stat span { display: block; margin-top: 12px; }
@media (max-width: 700px) {
  .num-band { grid-template-columns: repeat(2, 1fr); }
  .num-band .why-stat { padding: 32px 16px; }
  .num-band .why-stat:nth-child(3) { border-left: 0; }
  .num-band .why-stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* 404 page */
.err-hero { min-height: 66vh; display: flex; align-items: center; }
.err-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.err-inner .kicker { margin-bottom: 14px; }
.err-code { font-family: var(--font-display); font-weight: 700; font-size: clamp(5rem, 15vw, 10rem); line-height: 1; letter-spacing: -0.04em; color: var(--text); margin-bottom: 10px; }
.err-code .err-o { color: var(--accent); text-shadow: 0 0 55px rgba(201, 236, 91, 0.5); }
.err-inner .page-lead { margin-left: auto; margin-right: auto; }

/* ---------- Section footer link ---------- */
.section-foot { margin-top: 44px; }
.cases-note { color: var(--muted); font-size: 1.02rem; max-width: 40em; margin-bottom: 18px; }

/* ---------- Job detail page ---------- */
.back-link {
  display: inline-block; color: var(--muted);
  font-family: var(--font-display); font-size: 0.9rem; margin-bottom: 18px;
  transition: color 0.2s var(--ease);
}
.back-link:hover { color: var(--accent); }
.page-meta { font-family: var(--font-display); color: var(--accent); margin-top: 14px; letter-spacing: 0.04em; }
.job-detail { max-width: 760px; }
.job-block { margin-top: 38px; }
.job-block h3 { font-size: 1.4rem; margin-bottom: 16px; }

/* ---------- Home 3-step process preview ---------- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step3 {
  padding: 30px 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); position: relative;
}
.step3 h3 { font-size: 1.3rem; margin: 12px 0 10px; }
.step3 p { color: var(--muted); font-size: 1rem; }

/* ---------- Engagement model panels ---------- */
.duo { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.panel { padding: 36px 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.panel h3 { font-size: 1.5rem; margin-bottom: 12px; }
.panel > p { color: var(--muted); margin-bottom: 4px; }

/* ---------- Detailed industries ---------- */
.industries--detail { grid-template-columns: repeat(2, 1fr); }
.industries--detail .industry { padding: 34px 30px; position: relative; overflow: hidden; }
.industries--detail .industry p { margin-bottom: 6px; }
.industries--detail .industry::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.industries--detail .industry:hover { border-color: var(--line-2); box-shadow: none; }
.industries--detail .industry:hover::before { transform: scaleX(1); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.form { display: grid; gap: 18px; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row { display: grid; gap: 8px; }
.form label { font-family: var(--font-display); font-size: 0.9rem; color: var(--text); }
.form label .opt { color: var(--muted); font-weight: 400; }
.form input, .form textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 14px 16px; transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); background: var(--surface-2); }
.form textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.file-submit { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

/* Cookie consent banner */
.cookie-bar {
  position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 160%);
  z-index: 10000; width: min(680px, calc(100% - 28px));
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.75);
  opacity: 0; transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.cookie-bar.show { transform: translate(-50%, 0); opacity: 1; }
.cookie-text { flex: 1; min-width: 220px; margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.cookie-text a { color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar .btn { padding: 9px 20px; font-size: 0.9rem; }
@media (max-width: 480px) {
  .cookie-bar { bottom: 0; width: 100%; border-radius: var(--radius) var(--radius) 0 0; border-bottom: 0; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}
.choice-group { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.choice { display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); color: var(--muted); cursor: pointer; font-size: 1rem; transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease); }
.choice input[type="radio"] { width: 16px; height: 16px; padding: 0; margin: 0; accent-color: var(--accent); cursor: pointer; }
.choice:hover { border-color: var(--accent); color: var(--text); }
.choice:has(input:checked) { border-color: var(--accent); color: var(--text); background: var(--surface-2); }
.form-note a { color: var(--accent); }

/* File upload (CV / résumé) */
.file-field { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.file-input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.file-btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  padding: 12px 20px; border-radius: 100px;
  border: 1px solid var(--line-2); color: var(--text); background: var(--surface);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.file-btn::before { content: "↥"; font-size: 1.05rem; line-height: 1; color: var(--accent); }
.file-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.file-input:focus-visible + .file-btn { border-color: var(--accent); outline: 2px solid var(--accent); outline-offset: 2px; }
.file-name { color: var(--muted); font-size: 0.92rem; }
.file-name.has-file { color: var(--text); }

.contact-aside .info-block { margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.contact-aside .info-block:last-child { border-bottom: none; }
.contact-aside h3 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.contact-aside a, .contact-aside p { color: var(--muted); }
.contact-aside a { transition: color 0.2s var(--ease); }
.contact-aside a:hover { color: var(--accent); }

/* ============================================================
   Success modal (thank-you)
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(5, 5, 7, 0.72); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  width: 100%; max-width: 440px; text-align: center;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 44px 36px 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.35s var(--ease);
}
.modal-overlay.open .modal { transform: none; }
.modal-check {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; color: var(--accent-ink);
  background: var(--accent); box-shadow: 0 0 30px rgba(201, 236, 91, 0.4);
}
.modal h3 { font-size: 1.7rem; margin-bottom: 12px; }
.modal p { color: var(--muted); margin-bottom: 28px; }
.modal-close { min-width: 150px; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 52px 0 60px; }
  .hero-visual { order: -1; }
  .banner-art { max-width: 360px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { gap: 32px 48px; }
  .footer-cols { gap: 48px; }
  .steps3 { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .industries--detail { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    transform: translateY(-120%); transition: transform 0.35s var(--ease);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .hero { padding-top: 32px; }
  .why-stat strong { font-size: 1.7rem; }
  .hero .hero-cta { flex-direction: column; align-items: stretch; }
  .hero .hero-cta .btn { width: 100%; justify-content: center; }
  .cards, .industries, .cases-grid, .trust-grid, .models-grid { grid-template-columns: 1fr; }
  .stats { gap: 12px; }
  .stat { padding: 22px 16px; }
  .stat strong { font-size: 1.7rem; }
  .why-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .form-grid2 { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
  .hero-meta div { flex-basis: 100%; }
  .models-pricing { gap: 8px; }
  .models-pricing-label { flex-basis: 100%; }
  .price-pill { padding: 6px 11px; font-size: 0.82rem; }
  .footer-top { gap: 28px; }
  .footer-cols { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .bv-flow, .bv-ripple { display: none; }
  .trust-track { flex-wrap: wrap; justify-content: center; width: auto; gap: 14px 40px; }
  .trust-track span[aria-hidden="true"] { display: none; }
}
