/* ============================================================
   The Verto Group — production stylesheet
   Font: Plus Jakarta Sans. Palette: cream / forest / green.
   ============================================================ */

:root {
  --cream: #F6F3EB;
  --forest: #173D2E;
  --green: #0E7A4F;
  --green-bright: #2BA56A;
  --mint: #8DE3B0;
  --ink: #1B201A;
  --text: #4C5147;
  --muted: #6C7163;
  --muted-2: #7C8073;
  --faint: #9A9C8C;
  --line: rgba(27, 32, 26, 0.08);
  --line-strong: rgba(27, 32, 26, 0.14);
  --mono: ui-monospace, "SFMono-Regular", Menlo, monospace;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; }
img { display: block; }
a { color: inherit; }

.wrap { max-width: 1320px; margin: 0 auto; }

.brand-dot {
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, var(--green-bright), var(--green) 54%, #0A5736);
  display: inline-block;
  flex: none;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-dark { background: var(--forest); color: var(--cream); }
.btn-dark:hover { background: var(--green); }
.btn-cream { background: var(--cream); color: var(--forest); }
.btn-cream:hover { background: var(--mint); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(246, 243, 235, 0.4); }
.btn-outline:hover { border-color: var(--cream); background: rgba(246, 243, 235, 0.08); }
.btn-ghost-dark { background: transparent; color: var(--forest); border: 1px solid rgba(27, 32, 26, 0.22); }
.btn-ghost-dark:hover { border-color: var(--forest); background: rgba(255, 255, 255, 0.4); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px var(--pad-x);
  background: rgba(246, 243, 235, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 32, 26, 0.06);
  transition: background .35s ease, border-color .35s ease;
}
.nav.scrolled { background: rgba(246, 243, 235, 0.9); border-color: rgba(27, 32, 26, 0.1); }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--forest); }
.nav-brand .brand-dot { width: 22px; height: 22px; }
.nav-brand span:last-child { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 34px); }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14.5px; font-weight: 600; transition: color .2s ease; }
.nav-links a:hover { color: var(--forest); }
.nav-cta { font-size: 14px; padding: 11px 20px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(56px, 9vw, 124px) var(--pad-x) clamp(40px, 5vw, 64px); overflow: hidden; }
.hero-glow {
  position: absolute; top: -32%; right: -14%;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 122, 79, 0.12), transparent 64%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-meta { display: flex; align-items: center; gap: 13px; margin-bottom: clamp(26px, 4vw, 42px); }
.hero-meta .eyebrow:last-child { color: var(--faint); }
.hero-meta .rule { flex: 1; height: 1px; background: rgba(27, 32, 26, 0.13); }
.hero h1 {
  font-weight: 800; font-size: clamp(40px, 6.6vw, 116px);
  line-height: 1.0; letter-spacing: -0.045em; white-space: nowrap;
}
.hero h1 .accent { color: var(--green); }
.hero-foot { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 30px; margin-top: clamp(30px, 4.5vw, 52px); }
.hero-foot p { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: var(--text); max-width: 580px; margin: 0; }
.hero-foot .btn { font-size: 16px; padding: 16px 28px; white-space: nowrap; }

/* ---------- Section heading ---------- */
.section { padding: clamp(40px, 6vw, 80px) var(--pad-x); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(22px, 3vw, 36px); }
.section-head h2 { font-weight: 800; font-size: clamp(26px, 3.4vw, 48px); letter-spacing: -0.035em; }
.section-tag { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.16em; color: var(--faint); text-transform: uppercase; }

/* ---------- Companies switcher ---------- */
.switch-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: clamp(20px, 2.4vw, 30px);
  padding: clamp(22px, 3vw, 46px);
  box-shadow: 0 24px 60px -40px rgba(23, 61, 46, 0.45);
}
.switch-grid { display: grid; grid-template-columns: 0.9fr 1.2fr; gap: clamp(26px, 4vw, 60px); align-items: stretch; }
.switch-list { display: flex; flex-direction: column; justify-content: center; }
.switch-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 15px; align-items: center;
  padding: clamp(13px, 1.7vw, 20px) 4px;
  border-top: 1px solid rgba(27, 32, 26, 0.1);
  cursor: pointer; width: 100%; text-align: left; background: none; font-family: inherit;
  transition: border-color .4s ease, padding-left .4s ease;
}
.switch-row .num { font-family: var(--mono); font-size: 12.5px; align-self: start; padding-top: 7px; color: var(--faint); transition: color .4s ease; }
.switch-row h3 { font-size: clamp(21px, 2.5vw, 33px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 600; color: #A4A797; transition: color .4s ease, font-weight .2s ease; }
.switch-row .cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; margin-top: 7px; color: #BCBDAE; transition: color .4s ease; }
.switch-row .arrow { font-size: 19px; color: transparent; transform: translateX(-8px); transition: color .4s ease, transform .4s ease; }
.switch-row.active { border-top-color: rgba(14, 122, 79, 0.45); padding-left: 14px; }
.switch-row.active .num { color: var(--green); }
.switch-row.active h3 { color: var(--forest); font-weight: 800; }
.switch-row.active .cat { color: var(--green); }
.switch-row.active .arrow { color: var(--green); transform: translateX(0); }

.switch-stage { display: flex; flex-direction: column; gap: clamp(18px, 2.2vw, 26px); min-width: 0; }
.stage-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); }
.stage-plate {
  border-radius: 16px; min-height: clamp(170px, 21vw, 250px);
  display: flex; align-items: center; justify-content: center; padding: 26px;
  overflow: hidden; transition: background .55s ease;
}
.stage-plate img { max-height: 90px; max-width: 74%; width: auto; height: auto; object-fit: contain; }
.stage-desc { font-size: clamp(16px, 1.4vw, 20px); line-height: 1.55; color: #3C4136; margin: 0; max-width: 50ch; }
.stage-foot { display: flex; align-items: flex-end; gap: clamp(24px, 4vw, 52px); flex-wrap: wrap; margin-top: 2px; }
.stage-stat { font-weight: 800; font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.03em; line-height: 1; color: var(--forest); }
.stage-stat-label { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-top: 6px; }
.stage-visit { font-size: 15px; padding: 12px 22px; border: 1px solid var(--forest); color: var(--forest); background: transparent; }
.stage-visit:hover { background: var(--forest); color: var(--cream); }

/* ---------- Companies index (editorial ledger) ---------- */
.company-index { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.company-index li { margin: 0; }
.company-row {
  display: grid;
  grid-template-columns: clamp(64px, 7vw, 92px) 1fr 156px 28px;
  grid-template-areas: "idx body plate arrow";
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
  padding: clamp(20px, 2.4vw, 28px) 6px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left .4s ease, background-color .4s ease;
}
.company-index li:last-child .company-row { border-bottom: 1px solid var(--line-strong); }
.company-row .idx {
  grid-area: idx;
  font-size: clamp(40px, 5vw, 58px); font-weight: 800; letter-spacing: -0.04em;
  line-height: 0.9; color: #CFCCBF; transition: color .4s ease;
}
.company-row .company-body { grid-area: body; min-width: 0; }
.company-row .cat {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green); margin-bottom: 9px;
}
.company-row h3 {
  font-size: clamp(24px, 2.6vw, 38px); font-weight: 700; letter-spacing: -0.028em;
  color: var(--forest); line-height: 1.0; margin: 0 0 9px;
}
.company-row p { font-size: 16px; line-height: 1.5; color: var(--muted); margin: 0; max-width: 50ch; text-wrap: pretty; }
.company-plate {
  grid-area: plate; height: 66px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; padding: 0 18px;
}
.company-plate img { max-width: 80%; width: auto; height: auto; object-fit: contain; }
.company-plate.plate-forest { background: var(--forest); }
.company-plate.plate-light { background: #F1EFE8; border: 1px solid var(--line-strong); }
.company-plate.plate-black { background: #0B0B0B; }
.company-row .arrow {
  grid-area: arrow; font-size: 21px; color: var(--forest); text-align: right;
  transform: translateX(-6px); opacity: .45; transition: transform .4s ease, opacity .4s ease;
}
.company-row:hover, .company-row:focus-visible { padding-left: 14px; background-color: rgba(14, 122, 79, 0.035); outline: none; }
.company-row:hover .idx, .company-row:focus-visible .idx { color: var(--green); }
.company-row:hover .arrow, .company-row:focus-visible .arrow { transform: translateX(0); opacity: 1; }

@media (max-width: 720px) {
  .company-row {
    grid-template-columns: clamp(40px, 12vw, 56px) 1fr clamp(72px, 22vw, 96px);
    grid-template-areas: "idx body plate";
    gap: 14px;
  }
  .company-row .arrow { display: none; }
  .company-plate { height: 54px; padding: 0 12px; }
}

/* ---------- Lockup band ---------- */
.lockup-band { padding: clamp(36px, 5vw, 64px) var(--pad-x); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lockup-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 1.4vw, 18px); margin-top: 22px; }
.lockup-plate { display: flex; align-items: center; justify-content: center; height: 76px; border-radius: 14px; padding: 0 18px; background: #fff; border: 1px solid var(--line); }
.lockup-plate.dark { background: var(--forest); border-color: rgba(255, 255, 255, 0.1); }
.lockup-plate.black { background: #0B0B0B; border-color: rgba(255, 255, 255, 0.1); }
.lockup-plate img { max-width: 82%; width: auto; height: auto; object-fit: contain; max-height: 30px; }
.lockup-plate.h-geoform img { max-height: 24px; }
.lockup-plate.h-halo img { max-height: 22px; }

/* ---------- Approach ---------- */
.approach { background: var(--forest); color: #EFF2E9; padding: clamp(64px, 9vw, 136px) var(--pad-x); }
.approach .eyebrow { color: #8FBFA3; }
.approach h2 { font-weight: 700; font-size: clamp(27px, 4vw, 58px); line-height: 1.14; letter-spacing: -0.035em; margin: 20px 0 0; max-width: 20ch; }
.approach h2 .accent { color: var(--mint); }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 52px); margin-top: clamp(44px, 6vw, 76px); }
.approach-grid > div { border-top: 2px solid rgba(141, 227, 176, 0.55); padding-top: 22px; }
.approach-grid h3 { font-weight: 700; font-size: clamp(19px, 1.8vw, 25px); letter-spacing: -0.02em; margin: 0 0 10px; }
.approach-grid p { font-size: 16px; line-height: 1.58; color: #C4D3C3; margin: 0; }

/* ---------- Figures ---------- */
.figures { padding: clamp(44px, 6vw, 80px) var(--pad-x); border-bottom: 1px solid var(--line); }
.figures-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); text-align: center; justify-items: center; }
.figures-grid .num { font-weight: 800; font-size: clamp(38px, 5vw, 68px); letter-spacing: -0.04em; line-height: 1; color: var(--forest); }
.figures-grid .num.green { color: var(--green); }
.figures-grid .lbl { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-top: 9px; max-width: 18ch; }

/* ---------- Contact CTA ---------- */
.contact { padding: clamp(28px, 4vw, 56px) var(--pad-x) clamp(40px, 5vw, 64px); }
.contact-card {
  background: var(--forest); border-radius: 28px; position: relative; overflow: hidden;
  padding: clamp(46px, 6.5vw, 98px) clamp(28px, 5vw, 80px);
}
.contact-glow {
  position: absolute; bottom: -44%; right: -8%;
  width: 46vw; height: 46vw; max-width: 520px; max-height: 520px;
  border-radius: 50%; background: radial-gradient(circle, rgba(141, 227, 176, 0.2), transparent 66%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: end; }
.contact-inner h2 { font-weight: 800; font-size: clamp(34px, 5vw, 76px); line-height: 1.0; letter-spacing: -0.04em; color: var(--cream); margin: 0 0 18px; }
.contact-inner p { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: #C4D3C3; margin: 0; max-width: 520px; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; }
.contact-actions .btn { font-size: 16px; padding: 18px 26px; justify-content: space-between; }

/* ---------- Footer ---------- */
.footer { padding: clamp(36px, 4.5vw, 60px) var(--pad-x) 34px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: end; padding-bottom: clamp(30px, 4vw, 44px); border-bottom: 1px solid rgba(27, 32, 26, 0.1); }
.footer-top h2 { font-weight: 800; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -0.03em; color: var(--forest); margin: 0 0 8px; }
.footer-top p { font-size: 15.5px; line-height: 1.5; color: var(--muted); margin: 0; max-width: 42ch; }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; }
.news-form .btn { white-space: nowrap; font-size: 14.5px; padding: 12px 22px; }
.news-msg { font-size: 13.5px; font-weight: 600; margin-top: 10px; min-height: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 26px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-dot { width: 18px; height: 18px; }
.footer-brand span:last-child { font-size: 18px; font-weight: 800; letter-spacing: -0.03em; color: var(--forest); }
.footer-meta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-meta a { text-decoration: none; color: var(--text); font-size: 14.5px; font-weight: 600; transition: color .2s ease; }
.footer-meta a:hover { color: var(--forest); }
.footer-meta span { font-size: 14px; color: var(--faint); }

/* ---------- Form fields ---------- */
.field {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid rgba(27, 32, 26, 0.16); border-radius: 12px;
  padding: 13px 15px; transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none; appearance: none;
}
.field:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(14, 122, 79, 0.16); }
.field::placeholder { color: var(--faint); }
textarea.field { resize: vertical; min-height: 96px; line-height: 1.5; }
select.field {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237C8073' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; cursor: pointer;
}
.foot-field {
  font-family: inherit; font-size: 14.5px; color: var(--ink);
  background: #fff; border: 1px solid rgba(27, 32, 26, 0.16); border-radius: 100px;
  padding: 12px 18px; transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none; appearance: none; flex: 1 1 200px; min-width: 0;
}
.foot-field:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(14, 122, 79, 0.16); }
.foot-field::placeholder { color: var(--faint); }

/* ---------- Modal ---------- */
.modal { display: none; position: fixed; inset: 0; z-index: 200; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(13, 17, 12, 0.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal-card {
  position: relative; z-index: 2; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto;
  background: var(--cream); border-radius: 22px; padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 40px 90px -30px rgba(13, 17, 12, 0.6);
  animation: modal-in .3s ease both;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; top: 16px; right: 16px; cursor: pointer; border: none; background: rgba(27, 32, 26, 0.06); color: var(--ink); width: 36px; height: 36px; border-radius: 50%; font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.modal-close:hover { background: rgba(27, 32, 26, 0.12); }
.modal-card .eyebrow { color: var(--green); font-size: 12px; letter-spacing: 0.18em; }
.modal-card h2 { font-weight: 800; font-size: clamp(26px, 3vw, 34px); letter-spacing: -0.03em; color: var(--forest); margin: 10px 0 4px; }
.modal-sub { font-size: 15px; line-height: 1.5; color: var(--muted); margin: 0 0 22px; }
.enquiry-form { display: flex; flex-direction: column; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.enquiry-form label { display: block; font-size: 13px; font-weight: 600; color: #3C4136; margin-bottom: 6px; }
.req { color: #C0392B; }
.opt { color: var(--faint); font-weight: 500; }
.form-error { display: none; font-size: 13.5px; font-weight: 600; color: #C0392B; }
.form-error.show { display: block; }
.enquiry-form .submit { background: var(--forest); color: var(--cream); font-size: 16px; padding: 16px 26px; margin-top: 2px; justify-content: center; }
.enquiry-form .submit:hover { background: var(--green); }
.form-fineprint { font-size: 12px; line-height: 1.5; color: var(--faint); margin: 2px 0 0; }
.success { display: none; text-align: center; padding: 18px 0 8px; }
.success.show { display: block; }
.success-check { width: 62px; height: 62px; border-radius: 50%; background: rgba(14, 122, 79, 0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--green); font-size: 28px; }
.success h2 { font-weight: 800; font-size: clamp(24px, 2.8vw, 30px); letter-spacing: -0.03em; color: var(--forest); margin: 0 0 8px; }
.success p { font-size: 15.5px; line-height: 1.55; color: var(--text); margin: 0 auto 24px; max-width: 38ch; }
.success .btn { font-size: 15px; padding: 13px 28px; }

/* ---------- Animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.anim-rise { animation: rise .8s ease both; }
.anim-fade { animation: fade .7s ease both; }
.d1 { animation-delay: .04s; } .d2 { animation-delay: .12s; } .d3 { animation-delay: .2s; }
.d4 { animation-delay: .26s; } .d5 { animation-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Motion layer ---------- */
/* Scroll reveal (only hidden when JS is present, so no-JS shows everything) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* Hero headline mask reveal */
.line-mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.14em; }
.js .line-inner { display: inline-block; transform: translateY(115%); animation: line-rise 1s cubic-bezier(.22,.61,.36,1) .12s both; }
@keyframes line-rise { to { transform: translateY(0); } }

/* Lockup plates: smooth state + hover lift */
.lockup-plate { transition: transform .35s ease, box-shadow .35s ease, background .55s ease, border-color .35s ease, opacity .7s cubic-bezier(.22,.61,.36,1); }
.lockup-band .lockup-plate:hover { transform: translateY(-5px); box-shadow: 0 16px 34px -20px rgba(23, 61, 46, 0.55); }

/* Button arrow micro-nudge */
.btn span { transition: transform .25s ease; }
.btn:hover span { transform: translateX(4px); }
.btn-jump:hover span { transform: translateY(4px); }

/* Brand dot pulse */
@keyframes dot-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(14, 122, 79, 0); } 50% { box-shadow: 0 0 0 7px rgba(14, 122, 79, 0.10); } }
.nav-brand .brand-dot { animation: dot-pulse 3.6s ease-in-out infinite; }

/* Decorative glows: parallax driven by JS */
.hero-glow, .contact-glow { will-change: transform; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .switch-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .figures-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .lockup-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero h1 { white-space: normal; }
}
@media (max-width: 560px) {
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .lockup-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .figures-grid { grid-template-columns: 1fr; row-gap: 26px; }
  .lockup-grid { grid-template-columns: 1fr; }
  .hero-foot .btn { width: 100%; justify-content: center; }
  .contact-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-meta { gap: 16px; }
  .news-form .btn { width: 100%; }
  .company-row p { font-size: 15px; }
  .company-row h3 { font-size: clamp(20px, 6vw, 26px); }
}
