/* ═══════════════════════════════════════════════════════════════
   Cormorant Technology — marketing site
   Light-theme sibling of the ANPR-Live site: airy blue-white
   canvas, navy ink, the shared cyan→indigo accent gradient.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --paper:     #f6f9fd;
  --paper-alt: #eef4fb;
  --card:      #ffffff;
  --card-tint: #fbfdff;
  --line:      rgba(15, 42, 90, 0.12);
  --line-soft: rgba(15, 42, 90, 0.07);

  --ink:      #0f172a;
  --ink-soft: #44587a;
  --ink-mute: #7285a3;

  --cyan:   #0891b2;
  --indigo: #4f46e5;
  --blue:   #2d6bcf;
  --blue-d: #1e3a5f;
  --green:  #059669;
  --amber:  #d97706;
  --red:    #dc2626;
  --violet: #7c3aed;

  --grad: linear-gradient(135deg, var(--cyan), var(--indigo));
  --grad-h: linear-gradient(90deg, var(--cyan), var(--indigo));

  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1180px;
  --ease: cubic-bezier(.4, 0, .2, 1);

  --shadow: 0 24px 56px -24px rgba(15, 42, 90, .22);
  --shadow-soft: 0 12px 32px -18px rgba(15, 42, 90, .18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono { font-family: ui-monospace, 'Courier New', monospace; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }

.grad-text {
  background: linear-gradient(110deg, var(--cyan), var(--indigo) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  /* Extra right room so background-clip:text doesn't crop the last glyph's
     overhang (e.g. a trailing "?"); negative margin keeps layout unchanged. */
  padding-right: 0.14em;
  margin-right: -0.14em;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 600; font-size: 15px; border-radius: 10px;
  padding: 11px 20px; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, border-color .18s;
  white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(79, 70, 229, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(79, 70, 229, .65); }
.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--blue); background: rgba(45,107,207,.06); transform: translateY(-2px); }
.btn-ghost { color: var(--ink-soft); padding: 11px 14px; }
.btn-ghost:hover { color: var(--ink); }

/* ═══════════════════  NAV  ═══════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(246, 249, 253, .65);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.scrolled { background: rgba(255, 255, 255, .88); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 70px; }

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 53px; height: 53px; border-radius: 10px; box-shadow: 0 3px 10px -3px rgba(15,42,90,.4); }
.brand-lockup { display: flex; flex-direction: column; gap: 3px; }
.brand-word { font-weight: 800; font-size: 18px; letter-spacing: -.02em; line-height: 1; color: var(--ink); }
.brand-accent {
  background: var(--grad-h);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.brand-tag {
  font-family: 'Courier New', monospace; font-size: 8.5px; line-height: 1;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute);
}

.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--ink-soft); font-size: 14.5px; font-weight: 500; position: relative; transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-h); transition: width .22s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Wrapper for the collapsing nav items. On desktop it's transparent to the
   flex layout (display:contents); on mobile it becomes the dropdown panel. */
.nav-collapse { display: contents; }

/* Language switcher */
.lang-select {
  appearance: none; -webkit-appearance: none;
  font-family: inherit; font-size: 13.5px; font-weight: 600;
  color: var(--ink-soft); background-color: #fff;
  border: 1px solid var(--line); border-radius: 8px;
  padding: 7px 28px 7px 12px; cursor: pointer; flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4.5l4 4 4-4' fill='none' stroke='%237285a3' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 9px center; background-size: 11px;
  transition: border-color .15s, color .15s, box-shadow .15s;
}
.lang-select:hover { border-color: var(--blue); color: var(--ink); }
.lang-select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(45,107,207,.14); }

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

/* ═══════════════════  HERO  ═══════════════════ */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(79,70,229,.10), transparent 60%),
    radial-gradient(760px 460px at 12% 30%, rgba(8,145,178,.09), transparent 60%);
}
.hero-grid-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  background: rgba(45,107,207,.07); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 24px;
  letter-spacing: .01em;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(5,150,105,.14); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }

.hero-title { font-size: clamp(38px, 5.4vw, 66px); font-weight: 800; margin-bottom: 22px; color: var(--blue-d); }
.hero-sub { font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-tags li { font-size: 13.5px; color: var(--ink-mute); display: flex; align-items: center; gap: 8px; }
.hero-tags li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--grad); }

/* ── Hero 5W readout visual ──────────────────── */
.hero-visual { position: relative; }
.visual-glow { position: absolute; inset: -10% -6% -16% -6%; z-index: 0;
  background: radial-gradient(60% 60% at 50% 40%, rgba(79,70,229,.14), transparent 70%); filter: blur(20px); }

.scanner {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, var(--card), var(--card-tint));
  border: 1px solid var(--line); border-radius: 20px; padding: 18px;
  box-shadow: var(--shadow);
}
.scanner-head { display: flex; align-items: center; gap: 10px; padding: 4px 6px 14px; font-size: 12.5px; color: var(--ink-soft); }
.cam-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); }
.cam-label { font-weight: 600; letter-spacing: .02em; }
.cam-live { margin-left: auto; color: var(--red); font-weight: 700; font-size: 11px; letter-spacing: .08em; }

.stage {
  position: relative; background: #eaf1fa; border: 1px solid var(--line-soft);
  border-radius: 12px; padding: 34px 30px; display: flex; justify-content: center;
  background-image: radial-gradient(circle at 50% 40%, rgba(8,145,178,.08), transparent 60%);
  overflow: hidden;
}
.stage-frame { position: relative; }
.reticle { position: absolute; width: 18px; height: 18px; border: 2px solid var(--blue); opacity: .7; }
.reticle.tl { top: -12px; left: -14px; border-right: 0; border-bottom: 0; }
.reticle.tr { top: -12px; right: -14px; border-left: 0; border-bottom: 0; }
.reticle.bl { bottom: -12px; left: -14px; border-right: 0; border-top: 0; }
.reticle.br { bottom: -12px; right: -14px; border-left: 0; border-top: 0; }

.stage-chip {
  font-family: ui-monospace, 'Courier New', monospace;
  font-weight: 700; font-size: clamp(24px, 3.4vw, 34px); letter-spacing: .06em;
  color: var(--blue-d); background: #fff; border: 1px solid var(--line);
  border-radius: 9px; padding: 10px 22px; box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.scan-line {
  position: absolute; left: 0; right: 0; height: 3px; top: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 14px 2px rgba(8,145,178,.45);
  animation: scan 2.6s var(--ease) infinite;
}
@keyframes scan { 0%{top:-2px;opacity:0} 12%{opacity:1} 88%{opacity:1} 100%{top:100%;opacity:0} }

.readout { padding: 16px 8px 4px; display: grid; gap: 11px; }
.readout-row { display: flex; align-items: center; gap: 14px; font-size: 14px; }
.r-label { width: 68px; color: var(--ink-mute); font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0; font-weight: 600; }
.r-value { color: var(--ink); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.readout-row.action { border-top: 1px solid var(--line-soft); padding-top: 12px; margin-top: 3px; }
.r-value.tag {
  background: rgba(5,150,105,.10); color: var(--green); border: 1px solid rgba(5,150,105,.28);
  padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
}

/* ═══════════════════  SENSOR STRIP  ═══════════════════ */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.strip-inner { display: flex; align-items: center; gap: 30px; padding: 22px 24px; flex-wrap: wrap; }
.strip-label { font-size: 13px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.strip-formats { display: flex; gap: 12px 26px; flex-wrap: wrap; margin-left: auto; }
.strip-formats span { font-family: ui-monospace, 'Courier New', monospace; font-size: 14px; color: var(--ink-soft); font-weight: 600; }

/* ═══════════════════  SECTIONS  ═══════════════════ */
.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--paper-alt), var(--paper)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.kicker { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px; display: inline-block;
  font-family: 'Courier New', monospace; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 16px; color: var(--blue-d); }
.section-head p { font-size: 17px; color: var(--ink-soft); }

/* ── Card grid (industries) ─────────────────── */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cap {
  background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.cap:hover { transform: translateY(-5px); border-color: rgba(45,107,207,.45); box-shadow: var(--shadow); }
.cap-ico {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(79,70,229,.08); border: 1px solid rgba(79,70,229,.22);
}
.cap-ico svg { width: 23px; height: 23px; fill: none; stroke: var(--indigo); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cap h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 9px; letter-spacing: -.01em; color: var(--blue-d); }
.cap p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.cap-link { margin-top: auto; padding-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--blue); }
.cap-link:hover { color: var(--indigo); }

/* ── Split deep-dive ────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-copy { order: 2; }
.split-copy .kicker { margin-bottom: 10px; }
.split-copy h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 16px; color: var(--blue-d); }
.split-copy > p { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 18px; }
.split-actions { margin-top: 26px; }
.ticks { list-style: none; display: grid; gap: 13px; margin-top: 6px; }
.ticks li { position: relative; padding-left: 30px; font-size: 15px; color: var(--ink-soft); }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 6px;
  background: rgba(5,150,105,.10); border: 1px solid rgba(5,150,105,.35);
}
.ticks li::after { content: ''; position: absolute; left: 6px; top: 8px; width: 5px; height: 9px;
  border: solid var(--green); border-width: 0 2px 2px 0; transform: rotate(40deg); }

/* ── UI mock cards ──────────────────────────── */
.ui-card {
  background: linear-gradient(165deg, var(--card), var(--card-tint));
  border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow);
}
.ui-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 4px 6px 16px; }
.anprlive-logo { width: 190px; height: auto; }
.ui-pill { font-size: 12px; font-weight: 600; color: var(--blue); background: rgba(45,107,207,.08); border: 1px solid var(--line); padding: 4px 11px; border-radius: 999px; white-space: nowrap; }

.list-row { display: flex; align-items: center; gap: 12px; padding: 13px 10px; border-radius: 10px; transition: background .2s; }
.list-row:hover { background: rgba(15,42,90,.03); }
.list-row + .list-row { border-top: 1px solid var(--line-soft); }
.swatch { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }
.sw-green { background: var(--green); } .sw-amber { background: var(--amber); }
.sw-violet { background: var(--violet); } .sw-red { background: var(--red); }
.list-name { font-weight: 600; font-size: 14.5px; }
.list-meta { margin-left: auto; font-size: 13px; color: var(--ink-mute); }
.list-act { font-size: 12px; font-weight: 600; color: var(--blue); background: rgba(45,107,207,.08); padding: 4px 10px; border-radius: 7px; white-space: nowrap; }
.list-row.danger .list-act { color: var(--red); background: rgba(220,38,38,.08); }

/* ── Platform / MET-Grid ────────────────────── */
.section-platform { background:
  radial-gradient(800px 400px at 50% 0%, rgba(79,70,229,.08), transparent 65%), var(--paper);
  text-align: center; }
.platform-inner { max-width: 780px; margin: 0 auto; }
.metgrid-logo { width: min(340px, 80%); height: auto; margin: 0 auto 30px; border-radius: 14px; box-shadow: var(--shadow-soft); }
.platform-title { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 18px; color: var(--blue-d); }
.platform-copy > p { font-size: 17px; color: var(--ink-soft); margin-bottom: 26px; }
.platform-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.platform-chips span { font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line); padding: 8px 15px; border-radius: 999px; transition: .2s; }
.platform-chips span:hover { border-color: var(--blue); color: var(--ink); box-shadow: var(--shadow-soft); }
.platform-foot { font-size: 15px; color: var(--ink-mute); }

/* ── Solutions ──────────────────────────────── */
.sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 920px; margin: 0 auto 44px; }
.sol { background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; border-left: 3px solid var(--indigo); box-shadow: var(--shadow-soft); }
.sol h3 { font-size: 18px; margin-bottom: 10px; color: var(--blue-d); }
.sol p { font-size: 14.5px; color: var(--ink-soft); }

.clients { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center;
  padding: 22px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); max-width: 920px; margin: 0 auto; }
.client-names { display: flex; gap: 14px 34px; flex-wrap: wrap; }
.client-names span { font-size: 16px; font-weight: 700; letter-spacing: .04em; color: var(--ink-mute); text-transform: uppercase; }

/* ── About stats ────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow-soft); }
.stat b { display: block; font-size: 26px; letter-spacing: -.02em; margin-bottom: 6px;
  background: var(--grad-h); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; }
.stat span { font-size: 13.5px; color: var(--ink-soft); }

/* ── CTA ────────────────────────────────────── */
.cta { padding: 96px 0; }
.cta-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: linear-gradient(150deg, #fff, var(--paper-alt));
  border: 1px solid var(--line); border-radius: 26px; padding: 56px 40px;
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.cta-inner::before { content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(420px 200px at 50% -10%, rgba(8,145,178,.10), transparent 70%); }
.cta-inner > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; color: var(--blue-d); }
.cta p { font-size: 17px; color: var(--ink-soft); margin-bottom: 28px; }

.cta-form { margin-bottom: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; text-align: left; }
.form-grid textarea { grid-column: 1 / -1; resize: vertical; }
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%; padding: 13px 16px; font-size: 15px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line); color: var(--ink); font-family: inherit;
}
.cta-form select:invalid, .cta-form select option[value=""] { color: var(--ink-mute); }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(45,107,207,.14); }
.cta-form input::placeholder, .cta-form textarea::placeholder { color: var(--ink-mute); }
.cta-fine { font-size: 13px; color: var(--ink-mute); display: block; margin-top: 14px; }
.cta-success { font-size: 16px; font-weight: 600; color: var(--green); margin-bottom: 14px; }
.hp { position: absolute; left: -9999px; }

/* ── Footer ─────────────────────────────────── */
.footer { border-top: 1px solid var(--line); background: #fff; padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--line-soft); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--ink-mute); max-width: 300px; margin-bottom: 12px; }
.footer-brand address { font-style: normal; font-size: 13px; color: var(--ink-mute); line-height: 1.6; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; font-size: 14px; color: var(--ink-soft); padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: var(--ink-mute); flex-wrap: wrap; gap: 8px; }
.footer-tag { font-family: 'Courier New', monospace; letter-spacing: .15em; font-size: 11px; color: var(--ink-mute); }

/* ── Reveal animation ───────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ═══════════════════  RESPONSIVE  ═══════════════════ */
@media (max-width: 1020px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1060px) {
  .nav-collapse { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav.menu-open .nav-collapse {
    display: flex; flex-direction: column; align-items: stretch; gap: 10px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px);
    padding: 16px 20px 20px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .nav.menu-open .nav-links { display: flex; flex-direction: column; gap: 2px; margin-left: 0; }
  .nav.menu-open .nav-links a { padding: 12px 2px; font-size: 16px; }
  .nav.menu-open .nav-cta { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
  .nav.menu-open .lang-select { width: 100%; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 124px 0 70px; }
  .hero-sub { max-width: none; }
  .split, .split.reverse .split-copy { grid-template-columns: 1fr; }
  .split.reverse .split-copy { order: 0; }
  .split { gap: 36px; }
  .sol-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .cap-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .strip-formats { margin-left: 0; }
  .section { padding: 72px 0; }
  .cta-inner { padding: 40px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
