/* ──────────────────────────────────────────────────────────────────────
   Wright Aerial Solutions — Marketing site styles
   RTL-first (Hebrew primary). Built on the Wright Aerial Design System.
   ────────────────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-canvas);
  color: var(--fg-body);
  font-family: var(--font-heebo);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
:focus-visible { outline: none; box-shadow: var(--ring-focus); border-radius: var(--radius-sm); }

/* Hebrew headings ride on Heebo; Space Grotesk is reserved for Latin eyebrows /
   coordinates / numerals where its geometric "aerial" voice reads. */
.heading {
  font-family: var(--font-heebo);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--fg-primary);
  margin: 0;
}

/* Latin micro-label — coordinates, EN eyebrows, technical tags */
.eyebrow-en {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.coord {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--tracking-code);
}

/* ── Layout primitives ───────────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 120px); }

/* Eyebrow row: amber tick + EN label + HE descriptor */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: var(--space-5);
}
.eyebrow .tick { width: 26px; height: 2px; background: var(--signal-400); border-radius: 2px; }
.eyebrow .label { color: var(--signal-600); }
.on-dark .eyebrow .label { color: var(--signal-300); }
.on-dark .eyebrow .tick { background: var(--signal-400); }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-heebo);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  padding: 13px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(0.98); }

.btn-accent { background: var(--signal-400); color: var(--brand-accent-fg); }
.btn-accent:hover { background: var(--signal-300); box-shadow: 0 8px 22px -8px rgba(245,168,0,0.6); }

.btn-primary { background: var(--navy-600); color: #fff; }
.btn-primary:hover { background: var(--navy-700); }

.btn-ghost { background: transparent; color: var(--fg-primary); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--stone-100); }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.28); }
.on-dark .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

.btn-lg { padding: 16px 28px; font-size: var(--text-md); }

/* Accent tweak: when accent=navy, primary CTAs become navy */
:root[data-accent="navy"] .btn-accent { background: var(--navy-600); color: #fff; }
:root[data-accent="navy"] .btn-accent:hover { background: var(--navy-700); box-shadow: 0 8px 22px -8px rgba(28,53,82,0.55); }

/* ── Topbar ──────────────────────────────────────────────────────────── */
.topbar {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 50;
  height: 68px;
  display: flex; align-items: center;
  background: rgba(250,250,247,0);
  transition: background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(250,250,247,0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--border-default);
  box-shadow: var(--shadow-sm);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 38px; height: 38px; border-radius: var(--radius-md); }
.brand-name { line-height: 1.05; }
.brand-name b {
  display: block; font-family: var(--font-heebo); font-weight: var(--weight-bold);
  font-size: 16px; color: var(--fg-primary); letter-spacing: -0.01em;
}
.brand-name span {
  font-family: var(--font-display); font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-secondary);
}
/* On the dark hero, before scroll, brand text is light */
.topbar:not(.scrolled) .brand-name b { color: #fff; }
.topbar:not(.scrolled) .brand-name span { color: rgba(255,255,255,0.65); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-heebo); font-weight: var(--weight-medium);
  font-size: var(--text-sm); color: var(--fg-body);
  padding: 8px 13px; border-radius: var(--radius-md);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav-links a:hover { background: var(--stone-100); color: var(--fg-primary); }
.topbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.82); }
.topbar:not(.scrolled) .nav-links a:hover { background: rgba(255,255,255,0.12); color: #fff; }

.topbar-actions { display: flex; align-items: center; gap: 10px; }
.login-link {
  font-family: var(--font-heebo); font-weight: var(--weight-medium); font-size: var(--text-sm);
  color: var(--fg-body); padding: 8px 12px; border-radius: var(--radius-md);
}
.login-link:hover { color: var(--fg-primary); background: var(--stone-100); }
.topbar:not(.scrolled) .login-link { color: rgba(255,255,255,0.82); }
.topbar:not(.scrolled) .login-link:hover { color: #fff; background: rgba(255,255,255,0.12); }

.hamburger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--border-default);
  border-radius: var(--radius-md); background: var(--bg-surface); cursor: pointer;
  align-items: center; justify-content: center; color: var(--fg-primary);
}
.topbar:not(.scrolled) .hamburger { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: #fff; }

/* Mobile sheet */
.mobile-sheet {
  position: fixed; inset: 0; z-index: 60; display: none;
}
.mobile-sheet.open { display: block; }
.mobile-sheet .backdrop { position: absolute; inset: 0; background: rgba(10,21,35,0.55); opacity: 0; transition: opacity var(--dur-base); }
.mobile-sheet.open .backdrop { opacity: 1; }
.mobile-sheet .panel {
  position: absolute; inset-block: 0; inset-inline-end: 0; width: min(82vw, 320px);
  background: var(--bg-surface); padding: 24px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform var(--dur-slow) var(--ease-out);
  box-shadow: var(--shadow-xl);
}
[dir="rtl"] .mobile-sheet .panel { transform: translateX(-100%); }
.mobile-sheet.open .panel { transform: translateX(0); }
.mobile-sheet .panel a {
  font-family: var(--font-heebo); font-weight: var(--weight-medium); font-size: var(--text-md);
  color: var(--fg-primary); padding: 14px 12px; border-radius: var(--radius-md);
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-sheet .panel a:hover { background: var(--stone-50); }
.sheet-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sheet-head button { background: none; border: none; cursor: pointer; color: var(--fg-secondary); padding: 6px; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy-800);
  color: #fff; overflow: hidden;
  padding-block: 110px 64px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before { /* radial depth */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(40,71,105,0.55), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
}
.hero-topo {
  position: absolute; inset-block: -10% -10%; inset-inline-end: -8%; width: 75%;
  opacity: 0.5; mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to var(--mask-dir, left), #000 30%, transparent 92%);
          mask-image: linear-gradient(to var(--mask-dir, left), #000 30%, transparent 92%);
}
/* hero photo (image slot) — hidden unless hero=photo */
.hero-photo { position: absolute; inset: 0; z-index: 0; display: none; }
.hero-photo image-slot { width: 100%; height: 100%; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,21,35,0.55), rgba(10,21,35,0.82)); }
:root[data-hero="photo"] .hero-photo { display: block; }
:root[data-hero="photo"] .hero-topo { opacity: 0.22; }

.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
:root[data-hero="topo"] .hero-grid,
:root[data-hero="photo"] .hero-grid { grid-template-columns: minmax(0, 760px); }
.hero-figure { display: block; }
:root[data-hero="topo"] .hero-figure,
:root[data-hero="photo"] .hero-figure { display: none; }

.hero-coords {
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px;
  font-size: 11px; color: rgba(255,255,255,0.5);
}
.hero-coords .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--signal-400); box-shadow: 0 0 0 4px rgba(245,168,0,0.18); }
.hero h1.heading {
  color: #fff;
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: var(--weight-bold);
  line-height: 1.04;
}
.hero h1 .accent { color: var(--signal-400); }
.hero .lead {
  margin-top: 22px; max-width: 46ch;
  font-size: var(--text-md); line-height: var(--leading-relaxed);
  color: rgba(255,255,255,0.78);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-figure-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5; background: var(--stone-50);
}
.hero-figure-card image-slot { width: 100%; height: 100%; }
.hero-figure-badge {
  position: absolute; inset-block-end: 14px; inset-inline-start: 14px; z-index: 3;
  background: rgba(10,21,35,0.72); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-md);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
}
.hero-figure-badge .coord { font-size: 11px; color: rgba(255,255,255,0.82); }
.hero-figure-badge .live { width: 8px; height: 8px; border-radius: 50%; background: var(--signal-400); animation: pulse 2s var(--ease-in-out) infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

/* ── Trust / value strip ─────────────────────────────────────────────── */
.trust {
  background: var(--navy-700); color: #fff; border-block-end: 1px solid var(--navy-600);
}
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border-radius: var(--radius-lg); overflow: hidden; margin-block: -44px 0; position: relative; z-index: 5; box-shadow: var(--shadow-lg); }
.trust-cell { background: var(--navy-700); padding: 28px 26px; }
.trust-cell .v { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: var(--text-3xl); color: #fff; font-variant-numeric: tabular-nums; line-height: 1; }
.trust-cell .v .unit { color: var(--signal-400); }
.trust-cell .k { margin-top: 8px; font-size: var(--text-sm); color: rgba(255,255,255,0.62); }

/* ── About ───────────────────────────────────────────────────────────── */
.about .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.about-figure { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 5 / 4; border: 1px solid var(--border-default); box-shadow: var(--shadow-md); background: var(--bg-sunken); }
.about-figure image-slot { width: 100%; height: 100%; }
.about-figure .tag {
  position: absolute; inset-block-end: 16px; inset-inline-start: 16px;
  background: rgba(250,250,247,0.92); backdrop-filter: blur(4px);
  border: 1px solid var(--border-default); border-radius: var(--radius-md);
  padding: 9px 13px; font-size: 11px; color: var(--fg-secondary);
}
.about h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 18px; }
.about p { font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--fg-body); margin-bottom: 16px; }
.about .btn { margin-top: 14px; }

/* ── Section header ──────────────────────────────────────────────────── */
.sec-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin-bottom: 14px; }
.sec-head p { font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--fg-secondary); margin: 0; }

/* ── Services ────────────────────────────────────────────────────────── */
.services { background: var(--bg-canvas); }
.svc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.svc-card {
  position: relative; grid-column: span 2; background: var(--bg-surface);
  border: 1px solid var(--border-default); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
/* first two cards span 3 each (featured), rest span 2 */
.svc-card.feature { grid-column: span 3; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.svc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-sunken); border-bottom: 1px solid var(--border-subtle); }
.svc-card.feature .svc-media { aspect-ratio: 16 / 8; }
.svc-media image-slot { width: 100%; height: 100%; }
.svc-num {
  position: absolute; inset-block-start: 12px; inset-inline-start: 12px; z-index: 3;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: #fff; background: rgba(10,21,35,0.6); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-sm);
  padding: 4px 9px;
}
.svc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.svc-icon { width: 40px; height: 40px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--navy-50); color: var(--navy-600); margin-bottom: 4px; }
.svc-icon svg { width: 22px; height: 22px; }
.svc-body h3 { font-family: var(--font-heebo); font-weight: var(--weight-bold); font-size: var(--text-xl); color: var(--fg-primary); margin: 0; letter-spacing: -0.01em; }
.svc-body p { font-size: var(--text-sm); line-height: var(--leading-relaxed); color: var(--fg-secondary); margin: 0; }
.svc-more {
  margin-top: auto; padding-top: 8px; display: inline-flex; align-items: center; gap: 7px;
  font-weight: var(--weight-semibold); font-size: var(--text-sm); color: var(--navy-600);
}
.svc-more svg { width: 16px; height: 16px; transition: transform var(--dur-base) var(--ease-out); }
.svc-card:hover .svc-more svg { transform: translateX(var(--arrow-x, -5px)); }

/* Empty image-slot media reads as a survey "blueprint" placeholder
   (faint topo contours behind the translucent slot) until a photo is dropped. */
.svc-media::before, .about-figure::before, .hero-figure-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("topo-texture.svg") center/cover no-repeat;
  opacity: 0.55;
}
.svc-media image-slot, .about-figure image-slot, .hero-figure-card image-slot { position: relative; z-index: 1; }

/* ── Process ─────────────────────────────────────────────────────────── */
.process { background: var(--navy-800); color: #fff; }
.process .sec-head h2 { color: #fff; }
.process .sec-head p { color: rgba(255,255,255,0.7); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 26px; }
.step::before { content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 2px; background: rgba(255,255,255,0.12); }
.step::after { content: ""; position: absolute; inset-block-start: 0; inset-inline-start: 0; width: 38px; height: 2px; background: var(--signal-400); }
.step .n { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--signal-400); letter-spacing: 0.1em; }
.step h3 { font-family: var(--font-heebo); font-weight: var(--weight-bold); font-size: var(--text-lg); color: #fff; margin: 14px 0 8px; }
.step p { font-size: var(--text-sm); line-height: var(--leading-relaxed); color: rgba(255,255,255,0.66); margin: 0; }

/* ── Testimonial ─────────────────────────────────────────────────────── */
.testi { background: var(--bg-canvas); overflow: hidden; }
.testi .wrap { max-width: 940px; text-align: center; position: relative; }
.quote-mark { font-family: var(--font-display); font-size: 120px; line-height: 0.6; color: var(--signal-300); opacity: 0.5; height: 56px; }
.testi blockquote {
  font-family: var(--font-heebo); font-weight: var(--weight-medium);
  font-size: clamp(1.4rem, 3vw, 2.05rem); line-height: 1.45; color: var(--fg-primary);
  margin: 0 auto 28px; max-width: 28ch; text-wrap: balance;
}
.testi .who { display: inline-flex; flex-direction: column; gap: 3px; align-items: center; }
.testi .who b { font-weight: var(--weight-bold); color: var(--fg-primary); font-size: var(--text-md); white-space: nowrap; }
.testi .who span { color: var(--fg-secondary); font-size: var(--text-sm); }
.testi .dots { display: flex; gap: 8px; justify-content: center; margin-top: 26px; }
.testi .dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--stone-300); cursor: pointer; padding: 0; transition: all var(--dur-base); }
.testi .dots button.active { background: var(--signal-400); width: 22px; border-radius: 4px; }

/* ── Logo marquee ────────────────────────────────────────────────────── */
.logos { background: var(--bg-surface); border-block: 1px solid var(--border-default); }
.logos .lead-row { text-align: center; margin-bottom: 36px; }
.logos .lead-row .eyebrow { justify-content: center; }
.logos .lead-row h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 44px;
  height: 88px;
  flex-shrink: 0;
}
.logo-item + .logo-item { border-inline-start: 1px solid var(--border-subtle); }
.logo-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(3px);
  font-family: var(--font-heebo);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--navy-700);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.18s, transform 0.18s;
  pointer-events: none;
}
.logo-item:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.logo-item img {
  max-height: 44px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter var(--dur-base);
}
.logo-item:hover img { filter: grayscale(0) opacity(1); }
.logo-item span {
  font-family: var(--font-heebo);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  color: var(--stone-400);
  white-space: nowrap;
  transition: color var(--dur-base);
}
.logo-item:hover span { color: var(--navy-700); }

/* ── Contact CTA ─────────────────────────────────────────────────────── */
.cta-band { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.cta-band .topo-corner { position: absolute; inset-block-end: -20%; inset-inline-start: -6%; width: 46%; opacity: 0.28; mix-blend-mode: screen; }
.cta-band .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: #fff; margin: 0 0 16px; }
.cta-band p { font-size: var(--text-md); color: rgba(255,255,255,0.74); line-height: var(--leading-relaxed); margin: 0 0 28px; max-width: 44ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.contact-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl); padding: 28px;
}
.contact-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ic { width: 42px; height: 42px; border-radius: var(--radius-md); background: rgba(245,168,0,0.14); color: var(--signal-400); display: grid; place-items: center; flex-shrink: 0; }
.contact-row .ic svg { width: 20px; height: 20px; }
.contact-row .k { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-display); }
.contact-row .val { font-size: var(--text-md); color: #fff; font-weight: var(--weight-medium); direction: ltr; }
[dir="rtl"] .contact-row .val { text-align: start; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer { background: var(--stone-900); color: rgba(255,255,255,0.7); }
.footer .wrap { padding-block: 56px 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-name b { color: #fff; }
.footer-brand p { margin: 16px 0 0; font-size: var(--text-sm); line-height: var(--leading-relaxed); color: rgba(255,255,255,0.5); max-width: 32ch; }
.footer-col h4 { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 0 0 16px; }
.footer-col a { display: block; font-size: var(--text-sm); color: rgba(255,255,255,0.72); padding: 6px 0; transition: color var(--dur-fast); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; gap: 16px; flex-wrap: wrap; }
.footer-bottom span { font-size: var(--text-xs); color: rgba(255,255,255,0.4); }
.footer-bottom .coord { font-size: 11px; color: rgba(255,255,255,0.35); }

/* ── Scroll reveal ───────────────────────────────────────────────────────
   NOTE: opacity is intentionally kept at 1 at all times. Animation timelines
   are paused for offscreen iframes (preview / capture / PDF), which would
   freeze an opacity fade at 0 and blank the content. A transform-only reveal
   degrades safely: if the transition can't run, content is merely shifted a
   few px but always visible. */
@media (prefers-reduced-motion: no-preference) {
  :root[data-motion="on"] .reveal { transform: translateY(24px); transition: transform 0.7s var(--ease-out); }
  :root[data-motion="on"] .reveal.in { transform: none; }
  :root[data-motion="on"] .reveal-stagger > * { transform: translateY(24px); transition: transform 0.6s var(--ease-out); }
  :root[data-motion="on"] .reveal-stagger.in > * { transform: none; }
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links, .login-link { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .hero-figure { display: none !important; }
  .about .wrap { grid-template-columns: 1fr; }
  .about-figure { order: -1; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card, .svc-card.feature { grid-column: span 1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); }
  .cta-band .wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust .wrap { grid-template-columns: 1fr 1fr; margin-block: -32px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-block: 120px 72px; }
}
