/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --cobalt:       #0A2FA8;
  --cobalt-deep:  #061d6b;
  --cobalt-soft:  #1640d6;
  --black:        #111111;
  --ink:          #15171c;
  --ink-soft:     #4a4f5a;
  --ink-mute:     #8088957a;
  --silver-1:     #C0C0C0;
  --silver-2:     #E8E8E8;
  --gold:         #C9A227;
  --gold-soft:    #e0c468;
  --red:          #B22222;
  --white:        #ffffff;
  --cream:        #f6f7fb;
  --line:         rgba(17,17,17,0.10);

  --serif: "Oswald", "Bebas Neue", Impact, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 14px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--serif); text-transform: uppercase; text-wrap: balance; line-height: 1.08; letter-spacing: 0.02em; font-weight: 600; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--black); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1.2rem; background: var(--gold); color: var(--black);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cobalt);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.eyebrow-light { color: var(--gold-soft); }

.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1.5rem;
  color: var(--black);
}
.quality .section-title { color: var(--white); }

/* Reveal-on-scroll (defensive default: visible) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.1rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out);
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, #a9801c);
  color: var(--black);
  box-shadow: 0 10px 30px -10px rgba(201,162,39,0.7);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(201,162,39,0.85);
}
.btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.6rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 16px -8px rgba(0,0,0,0.3);
  transition: background .4s, box-shadow .4s;
}
.nav.is-scrolled .nav-logo { background: rgba(255,255,255,0.0); box-shadow: none; }
.nav-logo img { height: 56px; width: auto; transition: filter .4s; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.lang-toggle {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: transparent;
  cursor: pointer;
  transition: color .3s, border-color .3s, background .3s;
}
.lang-toggle:hover { background: rgba(255,255,255,0.14); }
.nav.is-scrolled .lang-toggle { color: var(--ink); border-color: rgba(17,17,17,0.25); }
.nav.is-scrolled .lang-toggle:hover { background: rgba(10,47,168,0.08); }

.nav-links {
  display: none;
  gap: 2.2rem;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: absolute;
  top: 100%; left: 0; right: 0;
  padding: 1.5rem var(--gutter) 2rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 30px -16px rgba(0,0,0,0.25);
}
.nav-links.is-open a { color: var(--ink); }
.nav-links a {
  position: relative;
  color: var(--white);
  transition: color .3s;
  padding-bottom: 4px;
}
.nav.is-scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .35s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  justify-content: center;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--white);
  transition: background .3s, transform .3s, opacity .3s;
}
.nav.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
}
.hero-video {
  background: var(--black);
}
.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,29,107,0.92) 0%, rgba(6,29,107,0.55) 38%, rgba(10,10,14,0.45) 65%, rgba(10,10,14,0.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 35%, rgba(0,0,0,0.55) 100%);
}
.hero-mesh {
  position: absolute; inset: -20% -10% -10% -10%;
  z-index: 1;
  background:
    radial-gradient(38% 38% at 18% 22%, rgba(201,162,39,0.28), transparent 70%),
    radial-gradient(45% 45% at 85% 80%, rgba(192,192,192,0.18), transparent 70%);
  filter: blur(60px);
  mix-blend-mode: screen;
  animation: meshDrift 26s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshDrift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(4%, -3%) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  max-width: 760px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-2);
  margin-bottom: 1.4rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}
.usa-flag { display: inline-flex; border-radius: 3px; overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,0.25); }
.usa-flag img { display: block; }

.hero-title {
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: 1.4rem;
}
.hero-sub-line {
  background: linear-gradient(120deg, var(--silver-2) 0%, var(--silver-1) 45%, var(--gold-soft) 75%, var(--silver-2) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
.hero-title em {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 300;
  text-transform: none;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: 0.05em;
  color: var(--silver-2);
  margin-top: 0.9rem;
}
.hero-sub {
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.4rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
}
.hero-scroll-cue span {
  position: absolute; top: 6px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--gold-soft);
  animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue span { animation: none; opacity: 0.6; }
}

/* =============================================================
   7. Manifesto
   ============================================================= */
.manifesto {
  padding-block: clamp(4rem, 10vw, 8rem);
  background: var(--cream);
}
.manifesto-grid {
  display: grid;
  gap: 2rem;
  max-width: 980px;
}
@media (min-width: 960px) {
  .manifesto-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: none; }
}
.manifesto-p {
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.manifesto-p strong { color: var(--cobalt); }

/* =============================================================
   8. Quality pillars (metallic shine section)
   ============================================================= */
.quality {
  position: relative;
  padding-block: clamp(4rem, 10vw, 8rem);
  background: linear-gradient(160deg, var(--black) 0%, #1c2230 55%, var(--cobalt-deep) 100%);
  color: var(--silver-2);
  overflow: hidden;
}
.quality-shine {
  position: absolute; inset: 0;
  z-index: 0;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(192,192,192,0.0) 30%,
    rgba(232,232,232,0.18) 48%,
    rgba(255,255,255,0.32) 50%,
    rgba(232,232,232,0.18) 52%,
    rgba(192,192,192,0.0) 70%,
    transparent 100%);
  background-size: 260% 260%;
  animation: metalShine 9s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes metalShine {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}
.quality .container { position: relative; z-index: 1; }
.quality .section-title { color: var(--white); }

.quality-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .quality-grid { grid-template-columns: repeat(3, 1fr); }
}
.quality-card {
  padding: 1.9rem 1.7rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out), background .4s var(--ease-out);
}
@supports not (backdrop-filter: blur(6px)) {
  .quality-card { background: rgba(20,24,34,0.85); }
}
.quality-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.45);
  background: rgba(255,255,255,0.07);
}
.quality-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--silver-2), var(--silver-1));
  position: relative;
}
.quality-icon::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--quality-icon-svg, none);
  -webkit-mask: var(--quality-icon-svg, none) center / 26px 26px no-repeat;
  mask: var(--quality-icon-svg, none) center / 26px 26px no-repeat;
}
.quality-icon svg { width: 26px; height: 26px; fill: var(--cobalt-deep); }
.quality-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--white);
  letter-spacing: 0.06em;
}
.quality-card p {
  font-size: 0.92rem;
  color: rgba(232,232,232,0.7);
  text-transform: none;
}

/* =============================================================
   9. Products
   ============================================================= */
.products {
  padding-block: clamp(4rem, 10vw, 8rem) 0;
  background: var(--white);
  overflow: hidden;
}
.products-sub {
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 3rem;
}
.products-showcase {
  margin: 0 0 clamp(3rem, 8vw, 6rem);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 18%, #ffffff 0%, #eef0f6 55%, #dde1ec 100%);
  box-shadow: 0 24px 60px -30px rgba(10,47,168,0.25);
}
.products-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

/* Infinite scrolling ticker */
.ticker {
  background: var(--cobalt-deep);
  overflow: hidden;
  padding-block: 1rem;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
}
.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track {
  animation-play-state: paused;
}
.ticker-seq {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  padding-right: 2.5rem;
}
.ticker-seq span {
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding-inline: 0.6rem;
}
.ticker-dot {
  color: var(--gold);
  font-size: 0.9rem;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (min-width: 720px) {
  .ticker-seq span { font-size: 0.92rem; }
}

/* =============================================================
   10. Process
   ============================================================= */
.process {
  padding-block: clamp(4rem, 10vw, 8rem);
  background: var(--cream);
}
.process-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .process-grid { grid-template-columns: 1.2fr 0.8fr; }
}
.process-text p {
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
  max-width: 60ch;
}
.process-text p strong { color: var(--cobalt); }
.process-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.process-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.process-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.45em;
  width: 12px; height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.process-visual {
  display: flex;
  justify-content: center;
}
.process-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--cobalt) 0%, var(--cobalt-deep) 100%);
  box-shadow: 0 30px 60px -30px rgba(10,47,168,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  color: var(--white);
  overflow: hidden;
}
.process-card::before {
  content: "";
  position: absolute; inset: -40% -10% auto -10%;
  height: 60%;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.18) 48%, rgba(255,255,255,0.32) 50%, rgba(255,255,255,0.18) 52%, transparent 80%);
  background-size: 200% 200%;
  animation: metalShine 7s linear infinite;
  mix-blend-mode: screen;
}
.process-badge {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  padding: 0.6rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  position: relative; z-index: 1;
}
.process-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  height: 80px;
  position: relative; z-index: 1;
}
.process-bars span {
  width: 10px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  animation: barPulse 2.6s var(--ease-soft) infinite;
}
.process-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.process-bars span:nth-child(2) { height: 70%; animation-delay: .2s; }
.process-bars span:nth-child(3) { height: 100%; animation-delay: .4s; }
.process-bars span:nth-child(4) { height: 60%; animation-delay: .6s; }
.process-bars span:nth-child(5) { height: 85%; animation-delay: .8s; }
@keyframes barPulse {
  0%, 100% { transform: scaleY(0.85); opacity: 0.8; }
  50% { transform: scaleY(1); opacity: 1; }
}
.process-card-label {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-2);
  position: relative; z-index: 1;
}

/* =============================================================
   11. Promise
   ============================================================= */
.promise {
  padding-block: clamp(4rem, 10vw, 8rem);
  background: var(--white);
}
.promise-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .promise-grid { grid-template-columns: repeat(4, 1fr); }
}
.promise-card {
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: border-color .4s var(--ease-out), transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.promise-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -26px rgba(201,162,39,0.4);
}
.promise-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.promise-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--cobalt-deep);
}
.promise-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-transform: none;
}

/* =============================================================
   12. Footer
   ============================================================= */
.footer {
  background: var(--black);
  color: var(--silver-2);
  padding-top: clamp(3rem, 7vw, 5rem);
}
.footer-inner {
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 2fr; }
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.footer-logo {
  height: 56px;
  width: auto;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.92);
}
.footer-tag {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  max-width: 24ch;
}
.footer-cols {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin-bottom: 0.9rem;
}
.footer-col p {
  font-size: 0.88rem;
  color: rgba(232,232,232,0.65);
  margin-bottom: 0.4rem;
  text-transform: none;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-legal p { font-size: 0.78rem; line-height: 1.6; }
.footer-bottom-inner {
  padding-block: 1.4rem;
  display: flex;
  justify-content: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(232,232,232,0.5);
  text-transform: none;
}

/* =============================================================
   14. Responsive — larger breakpoints
   ============================================================= */
@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

@media (min-width: 1280px) {
  .container { padding-inline: clamp(2rem, 4vw, 4rem); }
}

/* =============================================================
   15. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .quality-shine { animation: none; opacity: .12; }
  .process-card::before { animation: none; }
  .process-bars span { animation: none; }
  .hero-sub-line { animation: none; }
  .ticker-track { animation-duration: 120s; }
}
