/* ===========================================================
   Mikron Woodworking Machinery — Homepage stylesheet
   Industrial · Dark navy + steel blue + orange accent
   =========================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Type scale (fluid) */
  --text-xs:   clamp(0.75rem, 0.70rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.80rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing 4px base */
  --space-1:  0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem; --space-4: 1rem;
  --space-5:  1.25rem; --space-6: 1.5rem;  --space-8: 2rem;    --space-10: 2.5rem;
  --space-12: 3rem;    --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

  /* Color — Mikron industrial */
  --navy-900: #0b1a2b;      /* deepest navy — primary dark */
  --navy-800: #0f2236;
  --navy-700: #162c44;
  --navy-600: #1e3a59;
  --steel-500: #3c6283;     /* steel blue mid */
  --steel-400: #5a82a4;
  --steel-300: #89a8c3;
  --steel-200: #c8d6e3;
  --steel-100: #e8eef5;
  --bg:        #f5f6f8;      /* near-white page bg */
  --surface:   #ffffff;
  --ink-900:   #0b1a2b;      /* body text on light */
  --ink-700:   #2a3b50;
  --ink-500:   #5b6b80;
  --ink-300:   #9aa6b6;
  --line:      #e3e7ec;
  --line-dark: #1d3450;

  /* Orange accent — safety/industrial */
  --accent-500: #ff6a1a;     /* primary CTA */
  --accent-600: #e85814;
  --accent-700: #c84810;
  --accent-100: rgba(255, 106, 26, 0.12);

  /* Radii & shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(11,26,43,0.06);
  --shadow-md: 0 10px 30px rgba(11,26,43,0.10);
  --shadow-lg: 0 22px 60px rgba(11,26,43,0.18);
  --shadow-glow: 0 10px 40px rgba(255,106,26,0.35);

  /* Transitions */
  --tx: 200ms cubic-bezier(.16,1,.3,1);

  /* Content */
  --container: 1240px;

  /* Fonts */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--bg);
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; letter-spacing: -0.015em; }
::selection { background: var(--accent-500); color: #fff; }
:focus-visible { outline: 2px solid var(--accent-500); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--steel-200);
  font-size: var(--text-xs);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 38px;
}
.topbar__item { display: inline-flex; align-items: center; gap: var(--space-2); white-space: nowrap; }
.topbar__item a { color: #fff; font-weight: 600; }
.topbar__item a:hover { color: var(--accent-500); }
.topbar__cta { color: var(--accent-500) !important; font-weight: 700; letter-spacing: 0.01em; }
@media (max-width: 720px) {
  .topbar__item--hide-sm { display: none; }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tx), box-shadow var(--tx);
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 76px;
}

/* Brand mark — real Mikron logo */
.brand { display: inline-flex; align-items: center; gap: var(--space-3); color: var(--navy-900); }
.brand__logo {
  display: block;
  height: 42px;
  width: auto;
  flex-shrink: 0;
}
.brand__logo--footer { height: 48px; }
/* legacy fallbacks (hidden if logo loads) */
.brand__mark { width: 44px; height: 28px; color: var(--navy-900); flex-shrink: 0; }
.brand__wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; letter-spacing: 0.06em; }
.brand__sub  { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--ink-500); text-transform: uppercase; margin-top: 3px; font-weight: 600; }
@media (max-width: 560px) {
  .brand__logo { height: 34px; }
}

/* Nav */
.nav { display: flex; }
.nav__list { display: flex; gap: var(--space-8); }
.nav__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-700);
  padding: var(--space-2) 0;
  position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tx);
}
.nav__link:hover { color: var(--navy-900); }
.nav__link:hover::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: var(--space-3); }
.header__phone { display: none; }
@media (min-width: 1180px) {
  .header__phone { display: inline-flex; }
}

/* Hamburger */
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: var(--radius-sm); position: relative; }
.nav-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--navy-900);
  transition: transform var(--tx), opacity var(--tx), top var(--tx);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  /* Hide the inline phone CTA on mobile header to make room for hamburger */
  .header__phone { display: none !important; }
  /* Shorten primary CTA on small screens */
  .header__cta .btn--primary { display: none; }
}
@media (max-width: 480px) {
  /* Ultra-compact header: just logo + hamburger */
  .brand__sub { display: none; }
  .topbar__cta { display: none; }
}

/* Mobile nav */
.mobile-nav {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: var(--space-4) 0 var(--space-8);
  box-shadow: var(--shadow-md);
}
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  padding: var(--space-4) clamp(1rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { background: var(--steel-100); }
.mobile-nav__cta { color: var(--accent-500) !important; font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: transform var(--tx), background var(--tx), color var(--tx), box-shadow var(--tx), border-color var(--tx);
  white-space: nowrap;
  cursor: pointer;
}
.btn .icon { width: 1em; height: 1em; }
.btn:active { transform: translateY(1px); }

.btn--sm  { padding: 0.55rem 0.9rem;  font-size: var(--text-xs); }
.btn--lg  { padding: 1rem 1.6rem;     font-size: var(--text-base); }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--accent-500);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,106,26,0.35);
}
.btn--primary:hover { background: var(--accent-600); box-shadow: 0 10px 28px rgba(255,106,26,0.45); }

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

.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--navy-900); background: var(--steel-100); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

/* ---------- Shared section ---------- */
.section {
  padding-block: clamp(4rem, 7vw, 7rem);
  position: relative;
}
.section__head { max-width: 780px; margin-bottom: var(--space-12); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  color: var(--navy-900);
}
.section__lede {
  font-size: var(--text-lg);
  color: var(--ink-500);
  line-height: 1.5;
  max-width: 65ch;
}
.section__head--center .section__lede { margin-inline: auto; }

.accent { color: var(--accent-500); }

/* Eyebrow labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.eyebrow .dot { width: 8px; height: 8px; background: var(--accent-500); border-radius: 50%; display: inline-block; }
.eyebrow--dark { color: var(--navy-700); }
.eyebrow--light { color: rgba(255,255,255,0.8); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(580px, 86vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding-block: var(--space-16) var(--space-20);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,26,43,0.35) 0%, rgba(11,26,43,0.55) 55%, rgba(11,26,43,0.92) 100%),
    linear-gradient(90deg, rgba(11,26,43,0.78) 0%, rgba(11,26,43,0.1) 75%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero__content .eyebrow { color: rgba(255,255,255,0.9); }
.hero__title {
  font-size: clamp(2.25rem, 1rem + 4.2vw, 4.75rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
  text-wrap: balance;
  line-height: 1.03;
}
.hero__lede {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  max-width: 56ch;
  margin-bottom: var(--space-8);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-12); }

.hero__proof {
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero__proof li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.hero__proof strong { color: #fff; font-weight: 700; letter-spacing: 0.02em; }

.hero__scroll {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll svg { width: 16px; height: 16px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ---------- WHO ---------- */
.who { background: var(--surface); }
.who__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}
.who__card {
  display: block;
  padding: var(--space-8) var(--space-6);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: transform var(--tx), border-color var(--tx), box-shadow var(--tx);
}
.who__card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.who__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--accent-500);
  display: grid; place-items: center;
  margin-bottom: var(--space-5);
}
.who__icon svg { width: 28px; height: 28px; }
.who__card h3 { font-size: var(--text-lg); color: var(--navy-900); margin-bottom: var(--space-2); }
.who__card p  { font-size: var(--text-sm); color: var(--ink-500); }

/* ---------- MACHINES ---------- */
.machines { background: var(--bg); }
.machines__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-6);
}

.machine-card {
  position: relative;
  grid-column: span 6;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tx), box-shadow var(--tx), border-color var(--tx);
}
.machine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--steel-500); }

.machine-card--feature {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-color: var(--navy-700);
  color: #fff;
}
.machine-card--feature .machine-card__title { color: #fff; }
.machine-card--feature .machine-card__desc { color: rgba(255,255,255,0.8); }
.machine-card--feature .machine-card__eyebrow {
  background: var(--accent-500);
  color: #fff;
}
.machine-card--feature .machine-card__specs li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.15); }
.machine-card--feature .machine-card__specs li::before { color: var(--accent-500); }

.machine-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 2;
  background: var(--accent-500);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.machine-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-900);
}
.machine-card--feature .machine-card__media { aspect-ratio: auto; }
.machine-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.16,1,.3,1);
}
.machine-card:hover .machine-card__media img { transform: scale(1.04); }

.machine-card__body {
  padding: var(--space-6) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.machine-card__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--steel-100);
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.machine-card__title {
  font-size: var(--text-xl);
  color: var(--navy-900);
}
.machine-card__desc {
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.55;
  flex: 1;
}
.machine-card__specs { display: grid; gap: 4px; margin-top: var(--space-2); }
.machine-card__specs li {
  position: relative;
  padding-left: 20px;
  font-size: var(--text-xs);
  color: var(--ink-700);
  border-top: 1px solid var(--line);
  padding-top: 8px;
  padding-bottom: 4px;
}
.machine-card__specs li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 10px; height: 2px;
  background: var(--accent-500);
}
.machine-card__cta { display: flex; gap: var(--space-2); margin-top: var(--space-3); }

@media (max-width: 960px) {
  .machine-card { grid-column: span 12; }
  .machine-card--feature { grid-template-columns: 1fr; }
  .machine-card--feature .machine-card__media { aspect-ratio: 16/10; }
}
@media (min-width: 960px) and (max-width: 1200px) {
  .machine-card { grid-column: span 6; }
}

/* ---------- PROBLEM ---------- */
.problem {
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,106,26,0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(60,98,131,0.35), transparent 50%);
  pointer-events: none;
}
.problem > * { position: relative; z-index: 1; }
.problem .section__title { color: #fff; }
.problem .section__lede { color: rgba(255,255,255,0.75); }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}
.problem__card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.problem__card--bad { border-color: rgba(255,255,255,0.08); }
.problem__card--good { border-color: rgba(255,106,26,0.4); background: rgba(255,106,26,0.06); }
.problem__card--math {
  background: linear-gradient(145deg, var(--accent-500), var(--accent-700));
  border-color: transparent;
}

.problem__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.problem__card--math .problem__label { color: rgba(255,255,255,0.9); }
.problem__quote {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  font-family: var(--font-display);
}
.problem__card ul { list-style: none; display: grid; gap: 8px; }
.problem__card ul li {
  position: relative;
  padding-left: 22px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}
.problem__card--bad ul li::before {
  content: "×"; color: #ff8262; font-weight: 700; position: absolute; left: 0; top: -2px; font-size: 1.1rem;
}
.problem__card--good ul li::before {
  content: "✓"; color: var(--accent-500); font-weight: 700; position: absolute; left: 0; top: 0;
}
.problem__stat {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.problem__stat span { font-size: var(--text-lg); font-weight: 600; opacity: 0.85; margin-left: 8px; }
.problem__note { font-size: var(--text-sm); color: rgba(255,255,255,0.85); line-height: 1.5; }
.problem__card--math .btn--accent { background: #fff; color: var(--navy-900); }
.problem__card--math .btn--accent:hover { background: var(--navy-900); color: #fff; }

/* ---------- BARN DOOR ---------- */
.barn {
  background: linear-gradient(180deg, #1b2f47 0%, var(--navy-900) 100%);
  color: #fff;
  overflow: hidden;
}
.barn__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.barn__media {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.barn__media img { width: 100%; height: 100%; object-fit: cover; }
.barn__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: #fff;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}
.barn .section__title { color: #fff; }
.barn .section__lede { color: rgba(255,255,255,0.8); }
.barn__features {
  display: grid;
  gap: var(--space-3);
  margin-block: var(--space-6);
}
.barn__features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.92);
}
.barn__features svg {
  width: 20px; height: 20px;
  color: var(--accent-500);
  flex-shrink: 0;
  background: rgba(255,106,26,0.15);
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
}
.barn__ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); }

@media (max-width: 880px) {
  .barn__inner { grid-template-columns: 1fr; }
  .barn__media { order: 2; }
}

/* ---------- TRUST ---------- */
.trust {
  background: var(--surface);
  padding-block: var(--space-16);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8) var(--space-6);
}
.trust__item {
  text-align: center;
  padding: var(--space-4);
}
.trust__icon {
  width: 52px; height: 52px;
  color: var(--navy-900);
  margin: 0 auto var(--space-4);
}
.trust__item h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.trust__item p {
  font-size: var(--text-xs);
  color: var(--ink-500);
  max-width: 28ch;
  margin-inline: auto;
}

/* ---------- VIDEO ---------- */
.video {
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.video__wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.video__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video__placeholder {
  position: absolute; inset: 0;
  cursor: pointer;
  border: 0;
  padding: 0;
}
.video__placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter var(--tx), transform 800ms cubic-bezier(.16,1,.3,1);
}
.video__placeholder:hover img { filter: brightness(1); transform: scale(1.03); }
.video__placeholder iframe { width: 100%; height: 100%; border: 0; }

.video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--accent-500);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
  transition: transform var(--tx), background var(--tx);
}
.video__play:hover { background: var(--accent-600); transform: translate(-50%, -50%) scale(1.08); }
.video__play svg { width: 36px; height: 36px; margin-left: 4px; }

.video__meta { display: flex; justify-content: center; margin-top: var(--space-6); }

/* ---------- QUOTE ---------- */
.quote {
  background: var(--bg);
  position: relative;
}
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.quote__copy .section__title { color: var(--navy-900); }
.quote__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-block: var(--space-6);
}
.quote__trust li {
  font-size: var(--text-sm);
  color: var(--ink-500);
}
.quote__trust strong { color: var(--navy-900); font-weight: 700; }

.quote__contact {
  display: grid;
  gap: var(--space-3);
}
.quote__phone {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--navy-900);
  transition: border-color var(--tx), transform var(--tx);
}
.quote__phone:hover { border-color: var(--accent-500); transform: translateY(-2px); }
.quote__phone svg {
  width: 28px; height: 28px;
  color: var(--accent-500);
  background: var(--accent-100);
  padding: 6px; box-sizing: content-box;
  border-radius: 50%;
}
.quote__phone span { display: flex; flex-direction: column; line-height: 1.1; }
.quote__phone-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); font-weight: 600; }
.quote__phone-num { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 800; color: var(--navy-900); margin-top: 3px; }

/* Form */
.quote__form {
  background: #fff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: var(--space-4);
}
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.field label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.field label span[aria-hidden] { color: var(--accent-500); }
.field__opt { color: var(--ink-300); font-weight: 500; text-transform: none; letter-spacing: 0.02em; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink-900);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--tx), background var(--tx), box-shadow var(--tx);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-500);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-100);
}
.field textarea { resize: vertical; min-height: 90px; }

.checkbox { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-sm); color: var(--ink-700); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; accent-color: var(--accent-500); margin-top: 2px; flex-shrink: 0; }

.form__fine { font-size: var(--text-xs); color: var(--ink-500); text-align: center; }
.form__success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(67,122,34,0.08);
  border: 1px solid rgba(67,122,34,0.25);
  border-radius: var(--radius-md);
  color: #3a6919;
  font-weight: 600;
  font-size: var(--text-sm);
}
.form__success svg { width: 20px; height: 20px; color: #3a6919; }

@media (max-width: 880px) {
  .quote__inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--surface);
}
.about__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__copy p {
  font-size: var(--text-base);
  color: var(--ink-700);
  margin-bottom: var(--space-4);
  line-height: 1.65;
  max-width: 56ch;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 2px solid var(--navy-900);
}
.about__stats > div { display: flex; flex-direction: column; gap: 4px; }
.about__stats strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.about__stats span { font-size: var(--text-xs); color: var(--ink-500); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

.about__card {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.about__card img { width: 100%; height: 100%; object-fit: cover; }
.about__card::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(180deg, transparent, rgba(11,26,43,0.5));
}

@media (max-width: 880px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__card { aspect-ratio: 16/10; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-900);
  color: var(--steel-200);
  padding-top: var(--space-20);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: var(--space-10);
  padding-bottom: var(--space-16);
}
.footer .brand { color: #fff; }
.footer .brand__sub { color: rgba(255,255,255,0.55); }
.footer__tag {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-top: var(--space-4);
  max-width: 40ch;
  line-height: 1.55;
}
.footer__social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background var(--tx), transform var(--tx);
}
.footer__social a:hover { background: var(--accent-500); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  transition: color var(--tx);
}
.footer__col a:hover { color: var(--accent-500); }

.footer__col--contact address {
  font-style: normal;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.footer__col--contact p { font-size: var(--text-sm); color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: var(--space-4); }
.footer__col--contact a { color: #fff; font-weight: 600; }
.footer__col--contact a:hover { color: var(--accent-500); }

.footer__legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-5);
}
.footer__legal-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ---------- Reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* --- Nav dropdown --- */
.nav__item.has-dropdown { position: relative; }
.nav__caret {
  width: 10px; height: 10px; margin-left: 4px;
  display: inline-block; vertical-align: middle;
  transition: transform 180ms ease;
}
.nav__item.has-dropdown:hover .nav__caret,
.nav__item.has-dropdown.is-open .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 10px); left: -12px;
  min-width: 280px;
  background: #fff;
  border: 1px solid rgba(11, 26, 43, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 48px rgba(11, 26, 43, 0.14);
  padding: 8px;
  display: none;
  list-style: none;
  z-index: 100;
}
.nav__item.has-dropdown:hover .nav__dropdown,
.nav__item.has-dropdown:focus-within .nav__dropdown,
.nav__item.has-dropdown.is-open .nav__dropdown { display: block; }

/* bridge hover gap */
.nav__item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0; height: 12px;
}

.nav__dropdown li a {
  display: block;
  padding: 10px 14px;
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: background 160ms ease, color 160ms ease;
}
.nav__dropdown li a:hover {
  background: rgba(255, 106, 26, 0.08);
  color: var(--accent-600);
}

/* Active nav link */
.nav__link.is-active {
  color: var(--navy-900);
}
.nav__link.is-active::after {
  width: 100% !important;
}

/* --- Generic page hero (used on non-home pages) --- */
.page-hero {
  position: relative;
  padding: calc(var(--space-8) + 56px) 0 var(--space-7);
  background:
    radial-gradient(ellipse 1200px 500px at 50% -20%, rgba(255,106,26,0.14), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--accent-500); margin-bottom: var(--space-4); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  margin-bottom: var(--space-4);
  max-width: 900px;
}
.page-hero h1 .accent { color: var(--accent-500); }
.page-hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 720px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}

/* --- Breadcrumbs --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.75);
  transition: color 160ms ease;
}
.breadcrumb a:hover { color: var(--accent-500); }
.breadcrumb__sep { color: rgba(255,255,255,0.3); }
.breadcrumb__current { color: #fff; font-weight: 600; }

/* --- Product page hero (split layout) --- */
.prod-hero {
  padding: calc(var(--space-8) + 56px) 0 var(--space-8);
  background:
    radial-gradient(ellipse 900px 500px at 80% 10%, rgba(255,106,26,0.18), transparent 55%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
}
.prod-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
.prod-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 106, 26, 0.12);
  border: 1px solid rgba(255, 106, 26, 0.3);
  border-radius: 999px;
  color: var(--accent-500);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.prod-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.prod-hero h1 .accent { color: var(--accent-500); }
.prod-hero__tagline {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: var(--space-5);
}
.prod-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--space-5);
  margin-bottom: var(--space-6);
  list-style: none;
}
.prod-hero__highlights li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent-500);
  font-weight: 900;
  line-height: 1;
}
.prod-hero__highlights li span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.prod-hero__ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.prod-hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  aspect-ratio: 4 / 3;
  background: #0a1828;
}
.prod-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.prod-hero__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent-500);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .prod-hero__grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .prod-hero__highlights { gap: var(--space-4); }
  .prod-hero__highlights li strong { font-size: 1.5rem; }
}

/* --- Product page main content --- */
.prod-section {
  padding: var(--space-8) 0;
  background: #fff;
}
.prod-section--alt {
  background: #f5f7fa;
}
.prod-section--dark {
  background: var(--navy-900);
  color: #fff;
}
.prod-section--dark h2, .prod-section--dark h3 { color: #fff; }

.prod-section__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--space-7);
}
.prod-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy-900);
  margin-bottom: var(--space-3);
}
.prod-section--dark .prod-section__head h2 { color: #fff; }
.prod-section__head p {
  font-size: 1.05rem;
  color: var(--ink-700);
  line-height: 1.6;
}
.prod-section--dark .prod-section__head p { color: rgba(255,255,255,0.75); }

/* --- Features grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}
.feature-card {
  background: #fff;
  border: 1px solid rgba(11, 26, 43, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 26, 43, 0.1);
  border-color: rgba(255, 106, 26, 0.3);
}
.feature-card__icon {
  width: 44px; height: 44px;
  background: var(--accent-100);
  color: var(--accent-600);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0;
}

/* --- Specs table --- */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(11,26,43,0.06);
}
.specs-table th, .specs-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(11,26,43,0.08);
  font-size: 0.95rem;
}
.specs-table th {
  width: 38%;
  color: var(--ink-700);
  font-weight: 700;
  background: #f8fafc;
  text-transform: none;
  letter-spacing: 0;
}
.specs-table td { color: var(--navy-900); font-weight: 500; }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: none; }

/* --- Feature list (checkmarks) --- */
.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: var(--space-4) 0;
}
.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-700);
  line-height: 1.55;
  font-size: 0.98rem;
}
.check-list li::before {
  content: "";
  width: 22px; height: 22px;
  background: var(--accent-500);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4L19 7'/></svg>") center / 14px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4L19 7'/></svg>") center / 14px no-repeat;
  border-radius: 999px;
  margin-top: 2px;
  flex-shrink: 0;
}
.prod-section--dark .check-list li { color: rgba(255,255,255,0.85); }

/* --- Two-column prod body --- */
.prod-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.prod-split--reverse { grid-template-columns: 1fr 1.1fr; }
.prod-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(11, 26, 43, 0.12);
  aspect-ratio: 4 / 3;
  background: #0a1828;
}
.prod-split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-split__copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 1.9rem);
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: var(--space-3);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.prod-split__copy h3 .accent { color: var(--accent-500); }
.prod-split__copy p { color: var(--ink-700); line-height: 1.65; margin-bottom: var(--space-3); font-size: 1rem; }
.prod-section--dark .prod-split__copy h3 { color: #fff; }
.prod-section--dark .prod-split__copy p { color: rgba(255,255,255,0.8); }

@media (max-width: 860px) {
  .prod-split, .prod-split--reverse { grid-template-columns: 1fr; gap: var(--space-5); }
}

/* --- In-page CTA band --- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #fff;
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,106,26,0.2), transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: var(--space-6);
  align-items: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.cta-band__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
@media (max-width: 760px) {
  .cta-band__inner { grid-template-columns: 1fr; }
}

/* --- Awards page --- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.award-card {
  background: #fff;
  border: 1px solid rgba(11,26,43,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11,26,43,0.12);
}
.award-card__medal {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #ff9a3c 0%, var(--accent-500) 100%);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  box-shadow: 0 6px 16px rgba(255,106,26,0.35);
}
.award-card__medal svg { width: 32px; height: 32px; }
.award-card__year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.award-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: var(--space-2);
  line-height: 1.25;
}
.award-card p {
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* --- About page extras --- */
.about-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
  background: #fff;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(11,26,43,0.12);
  margin-top: calc(-1 * var(--space-7));
  position: relative;
  z-index: 3;
}
.about-hero-card__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.about-hero-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-hero-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1.15;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.about-hero-card p {
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: var(--space-3);
  font-size: 1rem;
}
@media (max-width: 860px) {
  .about-hero-card { grid-template-columns: 1fr; margin-top: var(--space-5); }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.value-card {
  padding: var(--space-5);
  background: #fff;
  border-left: 4px solid var(--accent-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 4px 12px rgba(11,26,43,0.06);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.value-card p {
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-7);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--navy-900);
  color: #fff;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  position: sticky;
  top: 80px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: var(--space-4);
  color: #fff;
  letter-spacing: -0.01em;
}
.contact-info__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  width: 36px; height: 36px;
  background: rgba(255,106,26,0.15);
  color: var(--accent-500);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info__value {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}
.contact-info__value a { color: #fff; }
.contact-info__value a:hover { color: var(--accent-500); }

/* Make the contact page form card-styled when used outside .quote */
.mikron-form {
  background: #fff;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11,26,43,0.06);
  box-shadow: 0 12px 32px rgba(11,26,43,0.08);
  display: grid;
  gap: var(--space-4);
}
.mikron-form__head { margin-bottom: var(--space-2); }
.mikron-form__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.3vw, 1.8rem);
  color: var(--navy-900);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.mikron-form__head p {
  color: var(--ink-700);
  font-size: 1rem;
  margin: 0;
}
.mikron-form .field { display: grid; gap: 6px; }
.mikron-form .field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
}
.mikron-form .field input,
.mikron-form .field select,
.mikron-form .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(11,26,43,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-family: inherit;
  background: #fff;
  color: var(--navy-900);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.mikron-form .field input:focus,
.mikron-form .field select:focus,
.mikron-form .field textarea:focus {
  border-color: var(--accent-500);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,106,26,0.15);
}
.mikron-form .field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3);
}
@media (max-width: 540px) { .mikron-form .field-row { grid-template-columns: 1fr; } }

.mikron-form .checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-700);
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}
.mikron-form .checkbox input {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-500);
  cursor: pointer;
}
.mikron-form .form__fine {
  font-size: 0.82rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.5;
}
.mikron-form .form__success {
  background: #e8f6ee;
  color: #1a6b3d;
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mikron-form .form__success svg { width: 24px; height: 24px; flex-shrink: 0; }

/* --- Gallery grid for product pages --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0a1828;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }

/* --- Video embed on product pages (inline) --- */
.prod-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a1828;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  max-width: 1000px;
  margin: 0 auto;
}
.prod-video .video__placeholder {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.prod-video .video__placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.prod-video .video__placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4));
}
.prod-video .video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  background: var(--accent-500);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255,106,26,0.5);
  transition: transform 200ms ease;
  z-index: 2;
}
.prod-video .video__play:hover { transform: translate(-50%, -50%) scale(1.08); }
.prod-video .video__play svg { width: 30px; height: 30px; margin-left: 3px; }
.prod-video iframe { width: 100%; height: 100%; border: 0; }

/* --- Cross-sell strip (other products) --- */
.cross-sell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.cross-sell__card {
  background: #fff;
  border: 1px solid rgba(11,26,43,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
  display: block;
}
.cross-sell__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11,26,43,0.12);
}
.cross-sell__media { aspect-ratio: 4/3; background: #0a1828; overflow: hidden; }
.cross-sell__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cross-sell__body { padding: var(--space-4); }
.cross-sell__body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.cross-sell__body p {
  color: var(--ink-700);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0 0 10px;
}
.cross-sell__arrow {
  color: var(--accent-600);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Disable on dark variants */
.prod-section--dark .feature-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.prod-section--dark .feature-card h3 { color: #fff; }
.prod-section--dark .feature-card p { color: rgba(255,255,255,0.8); }
.prod-section--dark .feature-card:hover { border-color: rgba(255,106,26,0.4); }

/* Reveal animation extras */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
