/* ============================================================
   FUSION ELECTRONICS — Homepage
   Light corporate system. Unified blue + navy; teal folded into
   blue, red reserved as the logo signature micro-accent.
   ============================================================ */

:root {
  /* Brand — single corporate accent + navy anchor */
  --blue:      #1457b0;   /* primary corporate blue (accent) */
  --blue-deep: #0c3f87;   /* darker blue for gradients/hovers */
  --blue-ink:  #0c2748;   /* deep navy anchor (footer, dark bands) */
  --teal:      #2e7dd1;   /* folded into blue: lighter blue for subtle gradients */
  --teal-deep: #1457b0;   /* = brand */
  --spark:     #e2142c;   /* logo signature red — micro-accent only */

  /* Neutrals — cool corporate slate */
  --ink:       #16202e;
  --ink-soft:  #2b3a4f;
  --muted:     #566375;
  --muted-2:   #8593a6;
  --line:      #e4e9f0;
  --line-2:    #eef2f7;
  --paper:     #ffffff;
  --surface:   #f5f7fa;
  --surface-2: #eef2f8;
  --tint:      #eaf1fb;   /* light blue tint */
  --tint-teal: #eaf1fb;   /* folded into blue tint */

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(13,40,87,.05), 0 1px 1px rgba(13,40,87,.04);
  --shadow:    0 6px 24px -8px rgba(12,63,135,.18), 0 2px 8px -4px rgba(12,63,135,.10);
  --shadow-lg: 0 28px 60px -24px rgba(10,31,61,.30), 0 8px 24px -12px rgba(10,31,61,.14);
  --ring:      0 0 0 4px rgba(20,102,201,.14);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;

  --maxw: 1360px;
  --gut:  40px;
  --topbar-h: 38px;

  --ff-display: "Space Grotesk", system-ui, sans-serif;
  --ff-body:    "IBM Plex Sans", system-ui, sans-serif;
  --ff-mono:    "IBM Plex Mono", ui-monospace, monospace;
}

/* Accent is theme-driven (Tweaks) */
:root {
  --accent:      var(--blue);
  --accent-deep: var(--blue-deep);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; margin: 0; color: var(--ink); text-wrap: balance; }

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* Shared utility bits ---------------------------------------- */
.kicker {
  font-family: var(--ff-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.kicker.center { justify-content: center; }

.section { padding: 104px 0; position: relative; }
.section.pt-sm { padding-top: 80px; }
.section--lg { padding-top: 128px; padding-bottom: 128px; }
.section--tint { background: var(--surface); }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 50px); margin: 18px 0 0; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 18px; }

/* Keyboard focus visibility */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
a:focus-visible, button:focus-visible, .btn:focus-visible, .cap-tab:focus-visible,
.nav-links a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.eyebrow-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }

/* Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body);
  font-weight: 600; font-size: 15.5px;
  padding: 14px 24px; border-radius: 10px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--accent) 60%, transparent); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 26px -10px color-mix(in srgb, var(--accent) 60%, transparent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-spark { background: var(--spark); color: #fff; box-shadow: 0 8px 20px -8px rgba(226,20,44,.5); }
.btn-spark:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16.5px; }
.btn-white { background: #fff; color: var(--blue-ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--accent); font-size: 15.5px;
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.arrow-link:hover svg { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
/* Slim utility top bar (slides away on scroll) */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 95; height: var(--topbar-h);
  display: flex; align-items: center;
  background: var(--blue-ink); color: #c4d2e6;
  font-family: var(--ff-mono); font-size: 12.5px; letter-spacing: .015em;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: transform .3s ease;
}
.topbar.up { transform: translateY(-100%); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 14px; min-width: 0; }
.topbar-left span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.tb-tag { color: #8fa6c6; overflow: hidden; text-overflow: ellipsis; }
.topbar svg { width: 14px; height: 14px; opacity: .85; flex: none; }
.tb-sep { width: 1px; height: 13px; background: rgba(255,255,255,.18); }
.topbar-right a { display: inline-flex; align-items: center; gap: 7px; color: #c4d2e6; white-space: nowrap; transition: color .2s ease; }
.topbar-right a:hover { color: #fff; }

.nav {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 100;
  transition: top .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  top: 0;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  padding: 9px 15px; border-radius: 8px; transition: background .2s, color .2s;
}
.nav-links a:hover { color: var(--accent); background: var(--tint); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--ff-mono); font-size: 13.5px; color: var(--muted); letter-spacing: .02em; }
.nav-burger { display: none; background: none; border: 1px solid var(--line); border-radius: 9px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-burger svg { width: 22px; height: 22px; color: var(--ink); }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark {
  position: relative; width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(150deg, var(--blue-ink), var(--blue-deep) 70%);
  display: grid; place-items: center; flex: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-word { font-family: var(--ff-display); font-weight: 700; font-size: 22px; letter-spacing: .06em; color: var(--ink); }
.logo-word .dot { color: var(--spark); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 101;
  background: rgba(255,255,255,.98); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; padding: 96px 32px 40px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { font-family: var(--ff-display); font-size: 26px; font-weight: 500; padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.mobile-menu .btn { margin-top: 28px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 172px 0 76px; overflow: hidden; background: linear-gradient(180deg, var(--surface) 0%, #fff 64%); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.hero-glow.a { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 26%, transparent), transparent 70%); }
.hero-glow.b { width: 420px; height: 420px; bottom: -180px; left: -120px; background: radial-gradient(circle, var(--tint-teal), transparent 70%); }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 { font-size: clamp(40px, 5.4vw, 64px); margin: 22px 0 0; font-weight: 600; }
.hero h1 .grad { color: var(--accent); }
.hero-sub { margin-top: 24px; font-size: 19.5px; color: var(--muted); max-width: 540px; }
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 40px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust .iso-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-mono); font-size: 12.5px; font-weight: 500; letter-spacing: .04em;
  color: var(--ink-soft); padding: 8px 14px; border: 1px solid var(--line); border-radius: 100px; background: #fff;
}
.hero-trust .iso-pill b { color: var(--accent); }
.hero-trust .since { font-family: var(--ff-mono); font-size: 12.5px; color: var(--muted-2); letter-spacing: .04em; }

/* Hero visual / image stack */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/4.4; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero-float {
  position: absolute; left: -34px; bottom: 42px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  z-index: 3; transition: transform .2s ease, box-shadow .2s ease;
}
.hero-float:hover { transform: translateY(-3px); box-shadow: 0 36px 70px -26px rgba(10,31,61,.4), 0 10px 26px -12px rgba(10,31,61,.18); }
.hero-float .num { font-family: var(--ff-display); font-weight: 700; font-size: 28px; color: var(--ink); line-height: 1; }
.hero-float .lab { font-size: 13px; color: var(--muted); line-height: 1.25; }
.hero-float .icon { width: 42px; height: 42px; border-radius: 11px; background: var(--tint-teal); color: var(--teal-deep); display: grid; place-items: center; flex: none; }
.hero-float .icon svg { width: 22px; height: 22px; }
.hero-chip {
  position: absolute; top: 28px; right: -22px; z-index: 3;
  background: var(--blue-ink); color: #fff; border-radius: 100px; padding: 9px 16px;
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: .06em; box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-chip .live { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 color-mix(in srgb, var(--teal) 70%, transparent);} 70%{ box-shadow: 0 0 0 9px transparent;} 100%{ box-shadow:0 0 0 0 transparent;} }

/* Placeholder image treatment */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, var(--surface-2) 0 11px, var(--surface) 11px 22px);
  display: grid; place-items: center; color: var(--muted-2);
}
.ph::after {
  content: attr(data-label);
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-2); padding: 8px 14px; border: 1px dashed var(--muted-2); border-radius: 100px;
  background: rgba(255,255,255,.7); max-width: 80%; text-align: center;
}
.ph.dark { background: repeating-linear-gradient(135deg, #16243a 0 11px, #1b2c45 11px 22px); }
.ph.dark::after { color: #9fb2cc; border-color: rgba(159,178,204,.5); background: rgba(10,20,36,.5); }

/* Real imagery */
.photo { position: relative; overflow: hidden; background: var(--blue-ink); }
.hero-photo img, .apps-visual img, .quality-bg img, .photo img, .cta-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-photo { background: var(--blue-ink); }
.apps-visual { background: var(--blue-ink); }
.quality-bg img { object-position: right center; }
.cta-bg img { mix-blend-mode: soft-light; }

/* Logo wall (trusted-by) under hero */
.ticker-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); padding: 40px 0 44px; overflow: hidden; }
.ticker-label { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); text-align: center; margin-bottom: 28px; }
.logo-wall {
  display: flex; flex-direction: column; gap: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-row { display: flex; gap: 16px; width: max-content; animation: marquee 48s linear infinite; }
.logo-row.rev { animation-direction: reverse; animation-duration: 58s; }
.logo-wall:hover .logo-row { animation-play-state: paused; }
.brand-card {
  display: inline-flex; align-items: center; gap: 13px; flex: none;
  padding: 10px 22px 10px 10px; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; box-shadow: var(--shadow-sm); white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.brand-mark { width: 42px; height: 42px; flex: none; display: grid; place-items: center; }
.brand-mark svg { width: 42px; height: 42px; }
.brand-mark svg rect { fill: var(--tint); stroke: color-mix(in srgb, var(--accent) 22%, transparent); stroke-width: 1.5; }
.brand-mark svg text { fill: var(--accent); font-family: var(--ff-display); font-weight: 700; font-size: 16px; letter-spacing: .02em; }
.brand-mark img { width: 42px; height: 42px; object-fit: contain; border-radius: 9px; }
.brand-name { font-family: var(--ff-display); font-weight: 600; font-size: 15.5px; letter-spacing: .05em; color: var(--ink-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STATS  (floating bar overlapping the hero)
   ============================================================ */
.stats-section { position: relative; z-index: 5; margin-top: -70px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); }
.stat { padding: 36px 32px; position: relative; transition: background .2s ease; }
.stat:hover { background: var(--surface); }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--tint); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 14%, transparent); }
.stat-ico svg { width: 24px; height: 24px; }
.stat .num { font-family: var(--ff-display); font-weight: 700; font-size: clamp(34px, 4vw, 46px); color: var(--ink); letter-spacing: -.02em; line-height: 1; display: flex; align-items: baseline; gap: 3px; font-variant-numeric: tabular-nums; }
.stat .num .suf { font-size: 24px; color: var(--accent); }
.stat .lab { margin-top: 12px; color: var(--muted); font-size: 15px; }
.stat .bar { position: absolute; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--accent), var(--teal)); transition: width 1s cubic-bezier(.2,.7,.2,1); }
.stat.in .bar { width: 100%; }

/* ============================================================
   CAPABILITIES (tabbed)
   ============================================================ */
.cap-tabs { display: inline-flex; gap: 6px; padding: 6px; background: var(--surface-2); border-radius: 100px; margin-top: 26px; flex-wrap: wrap; }
.cap-tab {
  border: none; background: transparent; color: var(--ink-soft);
  font-weight: 600; font-size: 15px; padding: 11px 22px; border-radius: 100px;
  transition: background .2s, color .2s, box-shadow .2s; display: inline-flex; align-items: center; gap: 9px;
}
.cap-tab .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: .4; }
.cap-tab.active { background: #fff; color: var(--accent); box-shadow: var(--shadow-sm); }
.cap-tab.active .dot { opacity: 1; }

.cap-body { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.cap-list-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.cap-list-card h3 { font-size: 24px; }
.cap-tagline { color: var(--muted); margin-top: 10px; }
.cap-rows { margin-top: 24px; display: grid; gap: 2px; }
.cap-row { display: flex; align-items: center; gap: 14px; padding: 15px 12px; margin: 0 -12px; border-radius: 10px; border-bottom: 1px solid var(--line-2); transition: background .18s ease; }
.cap-row:last-child { border-bottom: none; }
.cap-row:hover { background: var(--tint); }
.cap-row:hover .d { color: var(--accent); }
.cap-row .tick { width: 26px; height: 26px; border-radius: 7px; background: var(--tint); color: var(--accent); display: grid; place-items: center; flex: none; transition: transform .18s ease, background .18s ease; }
.cap-row:hover .tick { transform: scale(1.1); background: #fff; }
.cap-row .tick svg { width: 15px; height: 15px; }
.cap-row .t { font-weight: 600; font-size: 16px; }
.cap-row .d { color: var(--muted-2); font-size: 13.5px; margin-left: auto; font-family: var(--ff-mono); }

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.spec {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.spec:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.spec .k { font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.spec .v { font-family: var(--ff-display); font-weight: 700; font-size: 27px; color: var(--ink); margin-top: 8px; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.spec .v small { font-size: 15px; color: var(--muted); font-weight: 500; font-family: var(--ff-body); }
.spec .corner { position: absolute; top: 0; right: 0; width: 44px; height: 44px; background: linear-gradient(225deg, var(--tint), transparent); }

/* ============================================================
   APPLICATIONS
   ============================================================ */
.apps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-top: 56px; }
.apps-visual { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/12; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08); }
.apps-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.app-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s; cursor: default;
}
.app-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.app-card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--tint); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
.app-card .ico svg { width: 23px; height: 23px; }
.app-card h4 { font-family: var(--ff-body); font-weight: 700; font-size: 16.5px; }
.app-card p { color: var(--muted); font-size: 14px; margin-top: 6px; }

.apps-list { columns: 2; column-gap: 28px; margin-top: 30px; }
.apps-list span { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 15px; color: var(--ink-soft); break-inside: avoid; }
.apps-list span::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--teal); flex: none; transform: rotate(45deg); }

/* ============================================================
   PROCESS / WHY
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.why-card { padding: 34px; border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; position: relative; transition: transform .2s, box-shadow .2s; }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-card .n { font-family: var(--ff-mono); font-size: 13px; color: var(--accent); letter-spacing: .1em; }
.why-card .ico { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(150deg, var(--accent), var(--accent-deep)); color: #fff; display: grid; place-items: center; margin: 18px 0 20px; box-shadow: 0 10px 20px -10px color-mix(in srgb, var(--accent) 60%, transparent); }
.why-card .ico svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 21px; }
.why-card p { color: var(--muted); margin-top: 12px; font-size: 15.5px; }

/* ============================================================
   QUALITY band (deep)
   ============================================================ */
.quality { background: linear-gradient(135deg, var(--blue-ink) 0%, var(--blue-deep) 100%); color: #fff; position: relative; overflow: hidden; }
.quality .wrap { position: relative; z-index: 2; }
.quality-bg { position: absolute; inset: 0; opacity: .28; z-index: 1; }
.quality .kicker { color: var(--teal); }
.quality .kicker::before { background: var(--teal); }
.quality h2 { color: #fff; }
.quality .lead { color: #c4d4e8; font-size: 18px; margin-top: 18px; max-width: 620px; }
.quality-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.cert-cards { display: grid; gap: 16px; }
.cert {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r);
  padding: 24px; display: flex; align-items: center; gap: 20px; backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
}
.cert:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.cert .seal { width: 58px; height: 58px; border-radius: 50%; flex: none; display: grid; place-items: center; border: 2px solid var(--teal); color: var(--teal); font-family: var(--ff-mono); font-size: 10px; font-weight: 600; text-align: center; line-height: 1.1; }
.cert h4 { font-family: var(--ff-body); color: #fff; font-size: 17px; font-weight: 700; }
.cert p { color: #9fb6d4; font-size: 14px; margin-top: 3px; }
.quality-methods { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.method-pill { font-family: var(--ff-mono); font-size: 13px; letter-spacing: .03em; color: #d6e4f5; padding: 9px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 100px; background: rgba(255,255,255,.04); transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.method-pill:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.34); }
.method-pill b { color: var(--teal); }

/* ============================================================
   PLANT
   ============================================================ */
.plant-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center; }
.plant-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 460px; }
.plant-photos .photo { border-radius: var(--r); }
.plant-photos .photo:nth-child(1) { grid-row: span 2; }
.plant-feature { display: flex; gap: 16px; padding: 18px 12px; margin: 0 -12px; border-radius: 12px; border-bottom: 1px solid var(--line); transition: background .18s ease; }
.plant-feature:last-child { border-bottom: none; }
.plant-feature:hover { background: #fff; }
.plant-feature:hover h4 { color: var(--accent); }
.plant-feature .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--tint-teal); color: var(--teal-deep); display: grid; place-items: center; flex: none; transition: transform .18s ease, box-shadow .18s ease; }
.plant-feature:hover .ico { transform: scale(1.06); box-shadow: 0 8px 18px -8px color-mix(in srgb, var(--accent) 55%, transparent); }
.plant-feature h4 { transition: color .18s ease; }
.plant-feature .ico svg { width: 23px; height: 23px; }
.plant-feature h4 { font-family: var(--ff-body); font-size: 17px; font-weight: 700; }
.plant-feature p { color: var(--muted); font-size: 15px; margin-top: 4px; }

/* ============================================================
   CUSTOMERS
   ============================================================ */
.cust-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 40px; margin-top: 48px; align-items: start; }
.cust-quote {
  background: linear-gradient(160deg, var(--blue-ink), var(--blue-deep));
  color: #fff; border-radius: var(--r-lg); padding: 40px 36px; box-shadow: var(--shadow-lg);
  position: sticky; top: 100px;
}
.cust-quote blockquote { font-family: var(--ff-display); font-weight: 600; font-size: 25px; line-height: 1.22; letter-spacing: -.01em; margin: 0; text-wrap: balance; }
.cust-quote > p { color: #c4d4e8; font-size: 15.5px; margin-top: 18px; }
.cust-stats { display: flex; gap: 30px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.cust-stats b { display: block; font-family: var(--ff-display); font-weight: 700; font-size: 30px; line-height: 1; font-variant-numeric: tabular-nums; }
.cust-stats span { display: block; color: #9fb6d4; font-size: 13px; margin-top: 6px; }
.cust-groups { display: grid; gap: 26px; }
.cust-group h4 { font-family: var(--ff-mono); font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cust-count { font-family: var(--ff-mono); font-size: 11px; color: var(--accent); background: var(--tint); border-radius: 100px; padding: 2px 9px; letter-spacing: .04em; }
.cust-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cust-chip {
  font-family: var(--ff-display); font-weight: 600; font-size: 15px; letter-spacing: .02em; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px 16px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}
.cust-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: color-mix(in srgb, var(--accent) 38%, var(--line)); color: var(--accent); }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 0 0 104px; }
.cta-card {
  position: relative; overflow: hidden; border-radius: 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 60%, var(--blue-ink) 100%);
  color: #fff; padding: 76px 64px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-card .cta-bg { position: absolute; inset: 0; opacity: .35; }
.cta-card > * { position: relative; z-index: 2; }
.cta-card h2 { color: #fff; font-size: clamp(30px, 4vw, 48px); }
.cta-card p { color: #d3e2f5; font-size: 19px; margin: 18px auto 0; max-width: 560px; }
.cta-actions { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-meta { margin-top: 30px; font-family: var(--ff-mono); font-size: 13px; color: #aac3e3; letter-spacing: .04em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--blue-ink); color: #c4d2e6; padding: 76px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo-word { color: #fff; }
.footer-about { color: #91a6c2; font-size: 15px; margin-top: 18px; max-width: 320px; }
.footer-col h5 { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #6f86a6; margin: 0 0 18px; }
.footer-col a, .footer-col p { display: block; color: #b7c6dc; font-size: 14.5px; padding: 7px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-form { margin-top: 18px; display: grid; gap: 10px; max-width: 280px; }
.footer-form input, .footer-form textarea {
  width: 100%; font: inherit; font-size: 14px; color: #e7eefb;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; padding: 11px 13px; resize: vertical;
}
.footer-form input::placeholder, .footer-form textarea::placeholder { color: #7e92b2; }
.footer-form input:focus, .footer-form textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.1); }
.footer-form .btn { justify-content: center; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { color: #7589a6; font-size: 13.5px; font-family: var(--ff-mono); }
.footer-iso { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-iso span { font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: .05em; color: #9fb2cc; border: 1px solid rgba(255,255,255,.14); border-radius: 100px; padding: 5px 12px; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .logo-row { animation: none; }
  * { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .apps-grid, .quality-grid, .plant-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .stats-section { margin-top: -48px; }
  .cust-layout { grid-template-columns: 1fr; gap: 30px; }
  .cust-quote { position: static; }
  .plant-photos { height: 380px; }
}
@media (max-width: 720px) {
  :root { --gut: 22px; }
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-desktop-cta { display: none; }
  .tb-sep, .tb-tag { display: none; }
  .topbar { font-size: 11.5px; }
  .topbar-right a:last-child { display: none; }
  .hero { padding: 146px 0 56px; }
  .cap-body { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .apps-cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats-section { margin-top: -28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-card { padding: 52px 28px; }
  .hero-float { left: 0; }
  .hero-chip { right: 0; }
}
@media (max-width: 440px) {
  .apps-cards, .spec-grid { grid-template-columns: 1fr; }
  .apps-list { columns: 1; }
}
