/* ==========================================================================
   ACCORD CLEANROOM SOLUTIONS PRIVATE LIMITED
   Design system: Trust & Authority / Enterprise Gateway
   Brand: Navy #292F5F / Green #3E9D3B (from ACCORD identity)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --------------------------------------------------------------- tokens -- */
:root {
  /* Brand */
  --navy-950: #0b0e21;
  --navy-900: #12162f;
  --navy-800: #1b2044;
  --navy-700: #292f5f;   /* brand navy */
  --navy-600: #3a4180;
  --navy-500: #4f57a0;

  --gold-600: #2f7f2d;
  --gold-500: #3e9d3b;   /* brand green; legacy token name retained */
  --gold-400: #64be60;
  --gold-100: #e8f5e7;

  /* Neutrals */
  --ink:       #0e1120;
  --ink-soft:  #414a63;
  --ink-mute:  #5f6880;
  --line:      #e2e6ef;
  --line-soft: #eef1f7;
  --surface:   #ffffff;
  --surface-2: #f6f8fc;
  --surface-3: #eef2f9;

  /* Semantic */
  --accent:    var(--gold-500);
  --brand:     var(--navy-700);

  /* Type */
  --font-head: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Rhythm */
  --wrap: 1200px;
  --wrap-narrow: 900px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Elevation */
  --sh-1: 0 1px 2px rgba(16, 22, 48, .06), 0 1px 3px rgba(16, 22, 48, .04);
  --sh-2: 0 4px 12px rgba(16, 22, 48, .07), 0 2px 4px rgba(16, 22, 48, .04);
  --sh-3: 0 12px 32px rgba(16, 22, 48, .10), 0 4px 10px rgba(16, 22, 48, .05);
  --sh-4: 0 24px 60px rgba(16, 22, 48, .16), 0 8px 20px rgba(16, 22, 48, .07);

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: 260ms;

  /* Layers */
  --z-base: 1;
  --z-sticky: 20;
  --z-nav: 30;
  --z-overlay: 50;
}

/* ---------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--gold-500); color: var(--navy-900); }

/* ----------------------------------------------------------- typography -- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.022em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 1rem + 2.7vw, 3.5rem); font-weight: 700; letter-spacing: -.035em; line-height: 1.08; }
h2 { font-size: clamp(1.65rem, 1rem + 1.6vw, 2.35rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.12; }
h3 { font-size: clamp(1.1rem, 1rem + .3vw, 1.25rem); }
h4 { font-size: 1rem; }
h5 { font-size: .9rem; }

p { text-wrap: pretty; }
.lead { font-size: clamp(.95rem, .91rem + .14vw, 1.05rem); line-height: 1.6; color: var(--ink-mute); }

strong, b { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------- layout -- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(64px, 4.4vw + 44px, 112px); }
.section--tight { padding-block: clamp(48px, 3vw + 34px, 78px); }
.section--alt { background: var(--surface-2); }
.section--dark { background: var(--navy-900); color: rgba(255, 255, 255, .74); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ------------------------------------------------------- section header -- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: .755rem; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--gold-500); border-radius: 2px; flex: 0 0 auto;
}
.section--dark .eyebrow { color: var(--gold-400); }
.section--dark .eyebrow::before { background: var(--gold-500); }

.sec-head { max-width: 760px; margin-bottom: clamp(36px, 3vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow::before { display: none; }
.sec-head p { margin-top: 16px; }

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-size: .945rem; font-weight: 600;
  padding: 13px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              gap var(--dur) var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }

.btn--primary { background: var(--gold-500); color: var(--navy-950); box-shadow: 0 6px 18px rgba(62, 157, 59, .30); }
.btn--primary:hover { background: var(--gold-400); gap: 14px; box-shadow: 0 10px 26px rgba(62, 157, 59, .40); }

.btn--navy { background: var(--navy-700); color: #fff; box-shadow: var(--sh-2); }
.btn--navy:hover { background: var(--navy-800); gap: 14px; box-shadow: var(--sh-3); }

.btn--ghost { border-color: rgba(255, 255, 255, .28); color: #fff; background: rgba(255, 255, 255, .06); }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .5); gap: 14px; }

.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--navy-600); color: var(--navy-700); gap: 14px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  color: var(--navy-700);
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tlink svg { width: 15px; height: 15px; }
.tlink:hover { gap: 13px; color: var(--navy-600); }
.section--dark .tlink { color: var(--gold-400); }

/* --------------------------------------------------------------- header -- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--sh-1);
}

/* Top utility strip */
.topbar {
  background: var(--navy-900); color: rgba(255, 255, 255, .68);
  font-size: .8rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 38px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color var(--dur) var(--ease); }
.topbar a:hover { color: var(--gold-400); }
.topbar svg { width: 14px; height: 14px; opacity: .8; }
.topbar-l, .topbar-r { display: flex; align-items: center; gap: 22px; }
.topbar-tag { color: var(--gold-400); font-family: var(--font-head); font-weight: 500; letter-spacing: .04em; }

.navbar { }
.navbar .wrap { display: flex; align-items: center; gap: 28px; height: 74px; }

.brand { display: flex; align-items: center; flex: 0 0 auto; margin-right: auto; }
.brand img { height: 38px; width: auto; transition: filter var(--dur) var(--ease); }
.site-header:not(.is-solid) .brand img {
  content: url("../img/accord-logo-white.svg");
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: .93rem; font-weight: 500;
  padding: 10px 15px; border-radius: 10px;
  color: rgba(255, 255, 255, .88);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-solid .nav > li > a { color: var(--ink-soft); }
.nav > li > a:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.site-header.is-solid .nav > li > a:hover { color: var(--navy-700); background: var(--surface-3); }
.nav > li > a[aria-current="page"] { color: #fff; }
.site-header.is-solid .nav > li > a[aria-current="page"] { color: var(--navy-700); font-weight: 600; }
.nav .caret { width: 12px; height: 12px; opacity: .65; transition: transform var(--dur) var(--ease); }
.nav > li:hover .caret, .nav > li:focus-within .caret { transform: rotate(180deg); }

/* Dropdown */
.has-drop > .drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 288px; padding: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--sh-4);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
}
.has-drop:hover > .drop, .has-drop:focus-within > .drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.drop a {
  display: block; padding: 10px 13px; border-radius: var(--r-sm);
  font-size: .92rem; color: var(--ink-soft);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.drop a strong { display: block; font-family: var(--font-head); font-size: .93rem; font-weight: 600; color: var(--ink); }
.drop a span { display: block; font-size: .805rem; color: var(--ink-mute); line-height: 1.45; margin-top: 2px; }
.drop a:hover { background: var(--surface-2); }
.drop a:hover strong { color: var(--navy-700); }

.nav-cta { flex: 0 0 auto; }

/* Mobile toggle */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; border-radius: 10px; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 21px; height: 2px; border-radius: 2px; background: #fff;
  position: relative; transition: background var(--dur) var(--ease);
}
.site-header.is-solid .nav-toggle span { background: var(--ink); }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 21px; height: 2px;
  border-radius: 2px; background: inherit;
  transition: transform var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); background: var(--ink); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); background: var(--ink); }

/* ----------------------------------------------------------------- hero -- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(100svh, 940px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 168px; padding-bottom: 0;
  background: var(--navy-950);
  overflow: hidden;
}

/* Layer 1: real facility photography, duotoned to brand navy */
.hero__bg { position: absolute; inset: 0; z-index: -4; overflow: hidden; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(.52);
  transform: scale(1.06);
  animation: heroPan 26s var(--ease) infinite alternate;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(18, 22, 47, .93) 0%, rgba(41, 47, 95, .72) 45%, rgba(11, 14, 33, .95) 100%);
  mix-blend-mode: multiply;
}
@keyframes heroPan { to { transform: scale(1.14) translate3d(-1.6%, -1.2%, 0); } }

/* Layer 2: particle field canvas */
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -3; pointer-events: none; }

/* Layer 3: laminar airflow streaks, the signature cleanroom visual */
.hero__flow { position: absolute; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; opacity: .5; }
.hero__flow i {
  position: absolute; top: -32%; width: 1px; height: 32%;
  background: linear-gradient(to bottom, transparent, rgba(62, 157, 59, .55), transparent);
  animation: laminar linear infinite;
}
@keyframes laminar {
  0%   { transform: translateY(0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(420%); opacity: 0; }
}

/* Layer 4: legibility veil */
.hero__veil {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1100px 720px at 12% 38%, rgba(11, 14, 33, .82) 0%, rgba(11, 14, 33, .35) 58%, transparent 100%),
    linear-gradient(180deg, rgba(11, 14, 33, .78) 0%, transparent 26%, rgba(11, 14, 33, .55) 74%, rgba(11, 14, 33, .96) 100%);
}

.hero .wrap { position: relative; z-index: 1; width: 100%; }
.hero__inner { max-width: 1000px; padding-bottom: clamp(52px, 6vw, 88px); }

.hero .badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 7px 6px 6px; border-radius: 999px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: .8rem; color: rgba(255, 255, 255, .82); margin-bottom: 30px;
}
.hero .badge b {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .11em; text-transform: uppercase;
  background: var(--gold-500); color: var(--navy-950);
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.hero .badge span { padding-right: 12px; }

.hero h1 { color: #fff; max-width: 17ch; }
.hero h1 em { font-style: normal; color: var(--gold-400); }

/* Word-by-word entrance */
.hero h1 .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .w > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 900ms var(--ease);
}
.hero.ready h1 .w > span { transform: none; }

.hero .lead {
  color: rgba(255, 255, 255, .74); margin-top: 26px; max-width: 560px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 800ms var(--ease) 420ms, transform 800ms var(--ease) 420ms;
}
.hero .btn-row {
  margin-top: 40px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 800ms var(--ease) 560ms, transform 800ms var(--ease) 560ms;
}
.hero.ready .lead, .hero.ready .btn-row { opacity: 1; transform: none; }

/* Glass statistics rail pinned to the bottom of the hero */
.hero__strip {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: rgba(11, 14, 33, .42);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.hero__strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero__strip div {
  padding: 26px 30px 28px; position: relative;
  transition: background var(--dur) var(--ease);
}
.hero__strip div + div { border-left: 1px solid rgba(255, 255, 255, .12); }
.hero__strip div:hover { background: rgba(255, 255, 255, .05); }
.hero__strip div::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold-500); transition: width 420ms var(--ease);
}
.hero__strip div:hover::after { width: 100%; }
.hero__strip .n {
  font-family: var(--font-head); font-size: clamp(1.9rem, 1.2rem + 1.9vw, 2.7rem);
  font-weight: 700; color: #fff; line-height: 1; letter-spacing: -.03em;
}
.hero__strip .n sup { color: var(--gold-400); font-size: .48em; vertical-align: super; margin-left: 2px; }
.hero__strip .l {
  font-size: .75rem; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255, 255, 255, .52); margin-top: 10px;
}

/* Scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}
.scroll-cue i {
  display: block; width: 1px; height: 34px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0%, 100% { opacity: .25; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Page hero (interior pages) */
.phero {
  position: relative; isolation: isolate;
  padding-top: 170px; padding-bottom: 74px;
  background: var(--navy-900); overflow: hidden;
}
.phero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(760px 420px at 22% 34%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(760px 420px at 22% 34%, #000 0%, transparent 78%);
}
.phero::after {
  content: ""; position: absolute; z-index: -1;
  width: 620px; height: 620px; right: -180px; top: -240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 157, 59, .13) 0%, transparent 68%);
}
.phero h1 { color: #fff; max-width: 15ch; }
.phero .lead { color: rgba(255, 255, 255, .72); margin-top: 20px; max-width: 640px; }
.phero .eyebrow { color: var(--gold-400); }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: .84rem; color: rgba(255, 255, 255, .5); margin-bottom: 22px; }
.crumbs a { transition: color var(--dur) var(--ease); }
.crumbs a:hover { color: var(--gold-400); }
.crumbs .sep { opacity: .5; }
.crumbs [aria-current] { color: rgba(255, 255, 255, .82); }

/* ---------------------------------------------------------------- cards -- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; position: relative; overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.card:hover { border-color: rgba(41, 47, 95, .3); box-shadow: var(--sh-3); }
a.card:hover { transform: translateY(-3px); }

.card__ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-600));
  color: var(--gold-400); margin-bottom: 20px;
  transition: transform var(--dur) var(--ease);
}
.card__ico svg { width: 25px; height: 25px; }
.card:hover .card__ico { transform: scale(1.06) rotate(-3deg); }

.card h3 { margin-bottom: 10px; }
.card h4 { margin-bottom: 8px; }
.card p { font-size: .95rem; color: var(--ink-mute); }
.card .tlink { margin-top: 18px; }

/* Accent rule that grows on hover */
.card--rule::after {
  content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 0;
  background: var(--gold-500);
  transition: height 380ms var(--ease);
}
.card--rule:hover::after { height: 100%; }

/* Numbered card */
.card--num .num {
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; color: var(--gold-600); margin-bottom: 12px; display: block;
}

/* Dark card */
.card--dark { background: var(--navy-800); border-color: rgba(255, 255, 255, .1); }
.card--dark h3, .card--dark h4 { color: #fff; }
.card--dark p { color: rgba(255, 255, 255, .68); }
.card--dark:hover { border-color: rgba(62, 157, 59, .4); }

/* ------------------------------------------------------------ tick list -- */
.ticks li {
  position: relative; padding: 6px 0 6px 30px;
  font-size: .95rem; color: var(--ink-soft); line-height: 1.55;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 18px; height: 18px; border-radius: 6px; background: var(--surface-3);
}
.ticks li::after {
  content: ""; position: absolute; left: 5.5px; top: 16px;
  width: 7px; height: 4px; border-left: 2px solid var(--navy-700);
  border-bottom: 2px solid var(--navy-700); transform: rotate(-45deg);
}
.ticks--gold li::before { background: rgba(62, 157, 59, .15); }
.ticks--gold li::after { border-color: var(--gold-600); }
.section--dark .ticks li { color: rgba(255, 255, 255, .76); }
.section--dark .ticks li::before { background: rgba(255, 255, 255, .1); }
.section--dark .ticks li::after { border-color: var(--gold-400); }

/* ----------------------------------------------------------------- pill -- */
.pills { display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: .845rem; font-weight: 500;
  padding: 7px 15px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-soft);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.pill:hover { border-color: var(--navy-600); color: var(--navy-700); background: #fff; }
.pill--gold { background: rgba(62, 157, 59, .12); border-color: rgba(62, 157, 59, .38); color: var(--gold-600); }
.section--dark .pill { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .82); }
.section--dark .pill:hover { background: rgba(255, 255, 255, .13); border-color: var(--gold-500); color: #fff; }

/* ---------------------------------------------------------------- media -- */
.media { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--surface-3); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 620ms var(--ease); }
.media:hover img { transform: scale(1.045); }
.media--tall { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 16 / 10; }
.media--square { aspect-ratio: 1; }

.media__cap {
  position: absolute; inset: auto 0 0 0; padding: 44px 22px 18px;
  background: linear-gradient(to top, rgba(11, 14, 33, .90) 0%, rgba(11, 14, 33, .55) 48%, transparent 100%);
  color: #fff; font-family: var(--font-head); font-size: .9rem; font-weight: 500; line-height: 1.4;
}
.media__cap small {
  display: block; font-family: var(--font-body); font-size: .78rem; font-weight: 400;
  color: var(--gold-400); letter-spacing: .07em; text-transform: uppercase; margin-bottom: 5px;
}

/* Framed image with gold offset */
.frame { position: relative; }
.frame::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 2px solid var(--gold-500); border-radius: var(--r-lg); z-index: 0;
}
.frame .media { position: relative; z-index: 1; box-shadow: var(--sh-3); }

/* ---------------------------------------------------------------- table -- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-md); border: 1px solid var(--line); }
table.spec { width: 100%; border-collapse: collapse; background: #fff; min-width: 620px; }
table.spec th {
  background: var(--navy-800); color: #fff; text-align: left;
  font-family: var(--font-head); font-size: .845rem; font-weight: 600;
  letter-spacing: .02em; padding: 14px 18px; white-space: nowrap;
}
table.spec td { font-size: .92rem; padding: 13px 18px; border-top: 1px solid var(--line); color: var(--ink-soft); vertical-align: top; }
table.spec tbody tr:nth-child(even) td { background: var(--surface-2); }
table.spec td strong { color: var(--ink); font-weight: 600; }
table.spec tbody tr { transition: background var(--dur) var(--ease); }
table.spec tbody tr:hover td { background: var(--gold-100); }

/* ---------------------------------------------------------------- stats -- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stats > div { background: #fff; padding: 30px 26px; text-align: center; }
.stats .n { font-family: var(--font-head); font-size: clamp(1.9rem, 1.3rem + 1.8vw, 2.6rem); font-weight: 700; color: var(--navy-700); line-height: 1; }
.stats .n sup { font-size: .5em; color: var(--gold-600); vertical-align: super; margin-left: 2px; }
.stats .l { font-size: .81rem; letter-spacing: .085em; text-transform: uppercase; color: var(--ink-mute); margin-top: 10px; }

/* ---------------------------------------------------------------- steps -- */
.steps { counter-reset: s; display: grid; gap: 0; }
.step {
  position: relative; padding: 26px 0 26px 76px; border-top: 1px solid var(--line);
  transition: background var(--dur) var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; left: 0; top: 26px;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  color: var(--navy-700); width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--line);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step:hover { background: var(--surface-2); }
.step:hover::before { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.step h4 { margin-bottom: 5px; }
.step p { font-size: .92rem; color: var(--ink-mute); }

.section--dark .step { border-color: rgba(255, 255, 255, .13); }
.section--dark .step:last-child { border-bottom-color: rgba(255, 255, 255, .13); }
.section--dark .step::before {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
  color: var(--gold-400);
}
.section--dark .step:hover { background: rgba(255, 255, 255, .04); }
.section--dark .step:hover::before { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.section--dark .step p { color: rgba(255, 255, 255, .62); }

/* Dark-section variants for shared blocks */
.section--dark .card { background: var(--navy-800); border-color: rgba(255, 255, 255, .1); }
.section--dark .card h3, .section--dark .card h4 { color: #fff; }
.section--dark .card p { color: rgba(255, 255, 255, .68); }
.section--dark .card:hover { border-color: rgba(62, 157, 59, .4); }
.section--dark .table-scroll { border-color: rgba(255, 255, 255, .14); }
.section--dark table.spec { background: var(--navy-800); }
.section--dark table.spec th { background: var(--navy-950); }
.section--dark table.spec td { color: rgba(255, 255, 255, .74); border-top-color: rgba(255, 255, 255, .1); }
.section--dark table.spec td strong { color: #fff; }
.section--dark table.spec tbody tr:nth-child(even) td { background: rgba(255, 255, 255, .035); }
.section--dark table.spec tbody tr:hover td { background: rgba(62, 157, 59, .12); }
.section--dark .lead { color: rgba(255, 255, 255, .72); }

/* ------------------------------------------------------------- accordion -- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 22px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-size: 1.04rem; font-weight: 600; color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.acc__btn:hover { color: var(--navy-700); }
.acc__btn .ic {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--line); position: relative; margin-top: 2px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.acc__btn .ic::before, .acc__btn .ic::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--navy-700);
  transform: translate(-50%, -50%); transition: opacity var(--dur) var(--ease);
}
.acc__btn .ic::before { width: 11px; height: 1.5px; }
.acc__btn .ic::after { width: 1.5px; height: 11px; }
.acc__btn[aria-expanded="true"] .ic { background: var(--gold-500); border-color: var(--gold-500); transform: rotate(180deg); }
.acc__btn[aria-expanded="true"] .ic::after { opacity: 0; }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 320ms var(--ease); }
.acc__panel > div { overflow: hidden; }
.acc__btn[aria-expanded="true"] + .acc__panel { grid-template-rows: 1fr; }
.acc__panel p { padding-bottom: 24px; font-size: .96rem; color: var(--ink-mute); max-width: 74ch; }

/* ------------------------------------------------------------- clients ---- */
.logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.logos div {
  background: #fff; padding: 22px 18px; min-height: 92px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-head); font-size: .875rem; font-weight: 500; color: var(--ink-soft);
  line-height: 1.35; transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.logos div:hover { background: var(--surface-2); color: var(--navy-700); }

/* --------------------------------------------------------------- ribbon -- */
.ribbon { background: var(--navy-800); overflow: hidden; padding: 15px 0; border-block: 1px solid rgba(255, 255, 255, .09); }
.ribbon__track { display: flex; gap: 46px; width: max-content; animation: slide 34s linear infinite; }
.ribbon:hover .ribbon__track { animation-play-state: paused; }
.ribbon span {
  display: inline-flex; align-items: center; gap: 46px;
  font-family: var(--font-head); font-size: .86rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase; color: rgba(255, 255, 255, .62); white-space: nowrap;
}
.ribbon span::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); flex: 0 0 auto; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------ CTA -- */
.cta {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(125deg, var(--navy-900) 0%, var(--navy-700) 58%, var(--navy-600) 100%);
  color: rgba(255, 255, 255, .78);
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(760px 420px at 50% 50%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(760px 420px at 50% 50%, #000, transparent 76%);
}
.cta h2 { color: #fff; }
.cta .lead { color: rgba(255, 255, 255, .74); }
/* Single centred column: the footer directly below already carries the
   address and phone numbers, so the CTA stays purely a call to action. */
.cta__inner { max-width: 760px; margin-inline: auto; text-align: center; }
/* .cta is its own dark surface, not .section--dark, so the eyebrow needs the
   light-on-dark colour spelled out or it renders navy-on-navy. */
.cta .eyebrow { color: var(--gold-400); }
.cta__inner .eyebrow::before { display: none; }
.cta__inner .lead { margin-inline: auto; }
.cta__inner .btn-row { justify-content: center; }

/* --------------------------------------------------------------- footer -- */
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, .58); font-size: .92rem; }
.site-footer a { transition: color var(--dur) var(--ease); }
.site-footer a:hover { color: var(--gold-400); }

.footer-top { padding-block: clamp(52px, 4vw, 76px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 42px; }
.footer-grid h5 {
  color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 18px;
}
.footer-grid li { margin-bottom: 10px; }
.footer-brand img {
  content: url("../img/accord-logo-white.svg");
  height: 40px;
  margin-bottom: 20px;
}
.footer-brand p { max-width: 34ch; font-size: .91rem; line-height: 1.65; }

.f-contact li { display: flex; gap: 11px; align-items: flex-start; line-height: 1.55; }
.f-contact svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 4px; color: var(--gold-500); }

.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, .09); padding-block: 22px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  font-size: .845rem; color: rgba(255, 255, 255, .42);
}
.footer-bot ul { display: flex; flex-wrap: wrap; gap: 22px; }

/* ----------------------------------------------------- floating actions -- */
.float-action {
  position: fixed; bottom: 24px; z-index: var(--z-sticky);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer; color: #fff;
  box-shadow: 0 10px 28px rgba(11, 14, 33, .24);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease),
              visibility var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.float-action:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(11, 14, 33, .3); }
.float-action svg { width: 25px; height: 25px; }
.float-action--whatsapp { left: 24px; background: #25d366; }
.float-action--whatsapp:hover { background: #1fbd5a; }
.float-action--top {
  left: auto !important; right: 24px; bottom: 24px;
  display: flex !important; opacity: 1 !important; visibility: visible !important;
  background: var(--gold-500); color: var(--navy-950); z-index: 999;
}

/* --------------------------------------------------------- legal pages -- */
.legal { max-width: 860px; }
.legal h2 { margin-top: 42px; margin-bottom: 14px; font-size: 1.45rem; }
.legal h3 { margin-top: 28px; margin-bottom: 10px; font-size: 1.08rem; }
.legal p, .legal li { line-height: 1.75; }
.legal p + p { margin-top: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-top: 12px; }
.legal li + li { margin-top: 8px; }
.legal a { color: var(--navy-700); text-decoration: underline; text-underline-offset: 3px; }
.legal__updated {
  margin-bottom: 30px; color: var(--ink-mute); font-size: .88rem;
  padding-bottom: 20px; border-bottom: 1px solid var(--line);
}

/* ----------------------------------------------------------------- form -- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--sh-2); }
.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--font-head); font-size: .82rem; font-weight: 600;
  color: var(--ink); margin-bottom: 7px; letter-spacing: .01em;
}
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; font-size: .96rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--surface-2);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #cbd3e2; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600); background: #fff;
  box-shadow: 0 0 0 4px rgba(41, 47, 95, .10);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa3b8; }
.field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6880' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 42px;
}
.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: 14px; line-height: 1.5; }
.form-msg {
  display: none; margin-top: 16px; padding: 13px 16px; border-radius: var(--r-sm);
  font-size: .9rem; background: rgba(62, 157, 59, .13); border: 1px solid rgba(62, 157, 59, .4); color: #245f22;
}
.form-msg.show { display: block; }

/* --------------------------------------------------------------- reveal -- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 90ms; }
.rv-d2 { transition-delay: 180ms; }
.rv-d3 { transition-delay: 270ms; }
.rv-d4 { transition-delay: 360ms; }

/* --------------------------------------------------------------- a11y ---- */
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }
.skip {
  position: absolute; left: 16px; top: -60px; z-index: var(--z-overlay);
  background: var(--gold-500); color: var(--navy-900); padding: 11px 20px; border-radius: 0 0 10px 10px;
  font-family: var(--font-head); font-weight: 600; transition: top 200ms var(--ease);
}
.skip:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------- card spotlight glow -- */
.card--glow { position: relative; }
.card--glow::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  border-radius: inherit; opacity: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(62, 157, 59, .16), transparent 66%);
  transition: opacity 380ms var(--ease);
}
.card--glow:hover::before { opacity: 1; }
.card--glow > * { position: relative; z-index: 1; }
.section--dark .card--glow::before {
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(62, 157, 59, .22), transparent 68%);
}

/* ============================================ ISO CLASS VISUALISER ====== */
.iso {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 3.4vw, 56px);
  align-items: center;
}
.iso__tabs { display: flex; flex-direction: column; gap: 10px; }
.iso__tab {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px;
  width: 100%; text-align: left; cursor: pointer;
  padding: 17px 20px; border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .03);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.iso__tab:hover { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .24); }
.iso__tab[aria-selected="true"] {
  background: rgba(62, 157, 59, .12); border-color: var(--gold-500);
  transform: translateX(6px);
}
.iso__tab .cls {
  font-family: var(--font-head); font-size: 1.02rem; font-weight: 700;
  color: #fff; letter-spacing: -.01em;
}
.iso__tab[aria-selected="true"] .cls { color: var(--gold-400); }
.iso__tab .sub { font-size: .8rem; color: rgba(255, 255, 255, .5); margin-top: 2px; }
.iso__tab .cnt {
  font-family: var(--font-head); font-size: .82rem; font-weight: 600;
  color: rgba(255, 255, 255, .62); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.iso__tab[aria-selected="true"] .cnt { color: #fff; }
.iso__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.iso__tab[aria-selected="true"] .iso__dot {
  background: var(--gold-500); box-shadow: 0 0 0 4px rgba(62, 157, 59, .22);
}

.iso__stage {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(165deg, #10142c 0%, #1b2044 100%);
  aspect-ratio: 16 / 11; min-height: 300px;
}
.iso__stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.iso__stage::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
}
.iso__hud {
  position: absolute; left: 18px; top: 16px; z-index: 2;
  font-family: var(--font-head); pointer-events: none;
}
.iso__hud .k {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}
.iso__hud .v {
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem); font-weight: 700;
  color: #fff; line-height: 1.1; margin-top: 3px; letter-spacing: -.025em;
}
.iso__hud .v em { font-style: normal; color: var(--gold-400); }
.iso__foot {
  position: absolute; left: 18px; right: 18px; bottom: 15px; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 8px 20px; pointer-events: none;
  font-size: .76rem; color: rgba(255, 255, 255, .55);
}
.iso__foot b { color: rgba(255, 255, 255, .88); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ------------------------------------------------- scroll image reveal -- */
/* The clip lives on the image, but the trigger class lands on its wrapper:
   a clip-path on the observed element itself zeroes its own intersection
   rect, so an observer watching the image would never fire. */
.reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1000ms var(--ease); }
.img-in .reveal-img { clip-path: inset(0 0 0 0); }

/* ---------------------------------------------------------- responsive -- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .topbar .wrap { height: auto; padding-block: 8px; }
  .topbar-l { display: none; }
  .topbar .wrap { justify-content: center; }

  .navbar .wrap { height: 66px; gap: 12px; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav {
    position: fixed; inset: 104px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-4); padding: 12px 20px 26px;
    max-height: calc(100svh - 104px); overflow-y: auto;
    transform: translateY(-14px); opacity: 0; visibility: hidden;
    transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 240ms;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav > li > a { color: var(--ink) !important; padding: 14px 8px; font-size: 1.02rem; border-radius: 8px; }
  .nav > li:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
  .nav .caret { display: none; }

  .has-drop > .drop {
    display: none;
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; min-width: 0;
    padding: 0 0 12px 8px; background: transparent;
  }
  .has-drop.mobile-open > .drop { display: block; }
  .drop a { padding: 9px 10px; }
  .drop a span { display: none; }

  .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero__strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .hero__strip div:nth-child(3) { border-left: 0; }
  .hero__strip div:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .12); }
  .hero { padding-top: 136px; min-height: auto; }
  .hero__inner { padding-bottom: 52px; }
  .iso { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .phero { padding-top: 140px; padding-bottom: 60px; }
  .frame::before { inset: 12px -12px -12px 12px; }
}

@media (max-width: 640px) {
  body { font-size: 14.5px; }
  .wrap { padding-inline: 20px; }
  h1 { font-size: clamp(1.6rem, 7vw, 2.1rem); line-height: 1.12; }
  h2 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
  h3 { font-size: 1.05rem; }
  .lead { font-size: .9rem; line-height: 1.55; }
  .nav > li > a { font-size: .95rem; }
  .btn { font-size: .88rem; padding: 11px 20px; }
  .field input, .field select, .field textarea { font-size: .9rem; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
  .hero__strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .hero__strip div { padding: 20px 18px 22px; }
  .iso__stage { min-height: 260px; aspect-ratio: 4 / 3; }
  .step { padding-left: 62px; }
  .step::before { width: 42px; height: 42px; font-size: .95rem; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .scroll-cue { display: none; }
  .card { padding: 24px; }
  .float-action { bottom: 18px; width: 48px; height: 48px; }
  .float-action--whatsapp { left: 16px; }
  .float-action--top { right: 16px; }
}

/* ----------------------------------------------------- reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .rv { opacity: 1; transform: none; }
  .reveal-img { clip-path: none; }
  .hero__bg img { animation: none; transform: scale(1.02); }
  .hero__flow { display: none; }
  .hero h1 .w > span { transform: none; }
  .hero .lead, .hero .btn-row { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------- print ---- */
@media print {
  .site-header, .scroll-cue, .cta, .ribbon, .float-action { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .hero, .phero { background: #fff !important; padding-top: 20px; }
  .hero h1, .phero h1, .hero .lead, .phero .lead { color: #000 !important; }
}
