/* Website UI kit styles */
@import url("colors_and_type.css");

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg-canvas); color: var(--fg-1); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* ---------- A11y: skip link + focus-visible polish ---------- */
.skip-link {
  position: absolute; top: -100px; left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--fg-1, #0F172A); color: #fff;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15,23,42,0.25);
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: 2px solid var(--teal-500, #2BCABE);
  outline-offset: 2px;
}
:focus-visible {
  outline: 2px solid var(--teal-500, #2BCABE);
  outline-offset: 2px;
}
.nav a:focus-visible,
.footer a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--teal-500, #2BCABE);
  outline-offset: 3px;
  border-radius: 6px;
}
/* The <main> wrapper must accept programmatic focus from the skip link
   without showing a visible ring when reached via mouse. */
main[tabindex="-1"]:focus { outline: none; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; width: 100%;
  z-index: 9999;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid var(--border-1);
}
/* Push all page content below the fixed header */
body { padding-top: var(--nav-h); }
/* Anchor offsets so section headings clear the fixed header */
section[id], [id]:target { scroll-margin-top: calc(var(--nav-h) + 16px); }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 32px; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--fg-1); border: 0; font-weight: 500; }
.nav-links a:hover { color: var(--teal-700); }
.nav-cta { background: var(--teal-500); color: #fff; padding: 10px 18px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; border: 0; cursor: pointer; white-space: nowrap; transition: background var(--dur-base) var(--ease-standard); }
.nav-cta:hover { background: var(--teal-600); }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 780px; background: var(--navy-800); color: white; overflow: hidden; }

.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("assets/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero .hero-bg { z-index: 1; pointer-events: none;
  background: rgba(10, 37, 64, 0.35);
}
.hero .hero-img { z-index: 1; pointer-events: none; opacity: 0.18; }
.hero-inner { z-index: 2; }

/* Premium controls — bottom-right, unobtrusive */
.hero-controls {
  position: absolute; right: 32px; bottom: 28px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  padding: 6px; border-radius: 999px;
  background: rgba(10, 37, 64, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-ctrl {
  width: 32px; height: 32px; border-radius: 999px;
  background: transparent; border: 0; cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-standard);
}
.hero-ctrl:hover { background: rgba(255, 255, 255, 0.08); color: white; }
.hero-progress { display: flex; align-items: center; gap: 6px; padding: 0 4px; }
.hero-tick {
  width: 18px; height: 2px; border-radius: 2px; padding: 0; border: 0;
  background: rgba(255, 255, 255, 0.25); cursor: pointer;
  transition: background var(--dur-base) var(--ease-standard), width var(--dur-base) var(--ease-standard);
}
.hero-tick.is-active { background: var(--teal-400); width: 28px; }
.hero-tick:hover { background: rgba(255, 255, 255, 0.5); }

@media (max-width: 768px) {
  .hero-controls { right: 16px; bottom: 16px; }
}
.hero h1, .hero h2, .hero h3, .hero p { color: white; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark p { color: white; }
.final-cta h1, .final-cta h2, .final-cta h3, .final-cta p { color: white; }
.footer h1, .footer h2, .footer h3, .footer h4, .footer p { color: white; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,37,64,0.7) 0%, rgba(10,37,64,0.55) 100%),
    radial-gradient(ellipse at 30% 40%, #1A3D5E 0%, #0A2540 70%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(255,255,255,0.03) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(255,255,255,0.03) 23px 24px);
}
.hero-img { position: absolute; inset: 0; opacity: 0.45; mix-blend-mode: luminosity;
  background:
    conic-gradient(from 220deg at 70% 60%, #475569 0deg, #1E293B 90deg, #334155 180deg, #0F172A 270deg, #475569 360deg),
    linear-gradient(135deg, #1E293B 0%, #334155 100%);
  filter: contrast(1.1) brightness(0.6);
}
.hero-inner { position: relative; padding: 120px 0 200px; text-align: center; max-width: 1080px; margin: 0 auto; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-400); margin-bottom: 24px; }
.hero h1 { font-size: clamp(48px, 6vw, 84px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; margin: 0 0 28px; }
.hero h1 .accent { color: var(--teal-400); }
.hero-sub { font-size: clamp(18px, 1.5vw, 22px); color: rgba(255,255,255,0.85); line-height: 1.5; max-width: 820px; margin: 0 auto 16px; font-weight: 500; }
.hero-supporting { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 680px; margin: 0 auto 40px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.btn { font-family: var(--font-sans); font-weight: 600; font-size: 15px; padding: 14px 24px; border-radius: var(--radius-md); cursor: pointer; transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard); border: 1px solid transparent; display: inline-flex; align-items: center; gap: 8px; will-change: transform; }
.btn:hover { transform: translateY(-2px) scale(1.015); }
.btn:active { transform: translateY(0) scale(0.99); transition-duration: 80ms; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-primary { background: var(--teal-500); color: white; box-shadow: 0 1px 2px rgba(15,23,42,0.08); }
.btn-primary:hover { background: var(--teal-600); box-shadow: 0 10px 24px rgba(43,202,190,0.28), 0 2px 6px rgba(15,23,42,0.12); }
.btn-outline-light { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: white; box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.btn-secondary { background: white; color: var(--navy-800); border-color: var(--navy-800); }
.btn-secondary:hover { background: var(--slate-50); box-shadow: 0 8px 20px rgba(15,23,42,0.10); }

.trust-bar { display: flex; gap: 24px; justify-content: center; align-items: center; font-size: 13px; color: rgba(255,255,255,0.7); flex-wrap: wrap; }
.trust-bar .dot { width: 4px; height: 4px; border-radius: 999px; background: var(--teal-400); }

/* ---------- SECTION ---------- */
.section { padding: 128px 0; }
.section-tight { padding: 88px 0; }
.section + .section { padding-top: 128px; }
.section-title { margin-bottom: 16px; }
.cat-grid, .ind-grid, .cap-grid, .scope-grid, .supplier-grid { margin-top: 56px !important; gap: 20px; }
.section-dark { background: var(--navy-800); color: white; }
.section-tint { background: var(--bg-surface); }

.eyebrow-row { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.eyebrow-row .bar { width: 24px; height: 1px; background: var(--teal-500); }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-700); }
.section-dark .eyebrow { color: var(--teal-400); }
.section-title { font-size: clamp(32px, 3.5vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; margin: 0 0 12px; }
.section-sub { font-size: 17px; color: var(--fg-2); line-height: 1.55; max-width: 720px; margin: 0; }
.section-dark .section-sub { color: rgba(255,255,255,0.72); }

/* ---------- RFQ WIDGET ---------- */
.rfq-card { background: white; border: 1px solid var(--border-1); border-radius: var(--radius-xl); box-shadow: var(--shadow-3); padding: 28px; max-width: 560px; margin: -80px auto 0; position: relative; z-index: 5; color: var(--fg-1); }
.rfq-card .rfq-title, .rfq-card label { color: var(--fg-1); }
.rfq-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.rfq-title { font-size: 18px; font-weight: 700; }
.rfq-time { font-family: var(--font-mono); font-size: 11px; color: var(--teal-700); background: var(--teal-50); padding: 4px 8px; border-radius: var(--radius-sm); }
.rfq-sub { font-size: 13px; color: var(--fg-3); margin-bottom: 18px; }
.dropzone { border: 1.5px dashed var(--border-2); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: all var(--dur-base); cursor: pointer; background: var(--slate-50); }
.dropzone:hover { border-color: var(--teal-500); background: var(--teal-50); }
.dropzone-icon { width: 32px; height: 32px; color: var(--fg-3); margin: 0 auto 8px; display: block; }
.dropzone-title { font-size: 14px; font-weight: 600; color: var(--fg-1); }
.dropzone-sub { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); margin-top: 4px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.field label { font-size: 12px; font-weight: 500; color: var(--fg-2); }
.field input, .field textarea, .field select {
  font-family: var(--font-sans); font-size: 14px; padding: 11px 13px;
  border: 1px solid var(--border-2); border-radius: var(--radius-md);
  background: white; color: var(--fg-1); transition: all var(--dur-fast);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal-500); box-shadow: var(--shadow-focus-flat); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- CAPABILITY STRIP ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cap-card { background: white; border: 1px solid var(--border-1); border-radius: var(--radius-lg); padding: 28px; transition: border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard); will-change: transform; }
.cap-card:hover { border-color: var(--border-2); box-shadow: 0 16px 36px rgba(15,23,42,0.10), var(--shadow-2); transform: translateY(-3px) scale(1.01); }
.cap-icon { width: 28px; height: 28px; color: var(--navy-800); margin-bottom: 16px; }
.cap-title { font-size: 16px; font-weight: 600; margin: 0 0 6px; color: var(--fg-1); }
.cap-desc { font-size: 13px; line-height: 1.55; color: var(--fg-2); margin: 0; }

/* ---------- CATEGORY GRID ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.cat-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .cat-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cat-grid-3 { grid-template-columns: 1fr; } }
/* Unified dark card — shared by .cat-card and .ind-card */
.cat-card, .ind-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.cat-card::after, .ind-card::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--teal-500); transform: scaleX(0); transform-origin: left center;
  transition: transform var(--dur-base) var(--ease-standard);
}
.cat-card:hover, .ind-card:hover {
  border-color: rgba(43,202,190,0.4);
  box-shadow: 0 18px 44px rgba(0,0,0,0.40), 0 0 0 1px rgba(43,202,190,0.18);
  transform: translateY(-4px) scale(1.01);
}
.cat-card:hover::after, .ind-card:hover::after { transform: scaleX(1); }

.cat-img, .cat-img-slot { aspect-ratio: 4/3; display: block; width: 100%; background: linear-gradient(135deg, #1E293B, #0F172A); position: relative; }
.cat-img-photo { aspect-ratio: 4/3; width: 100%; overflow: hidden; background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%); display: block; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cat-img-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-img::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 50%); }
.cat-img.a { background: linear-gradient(135deg, #1E293B, #0F172A); }
.cat-img.b { background: linear-gradient(135deg, #1E293B, #0F172A); }
.cat-img.c { background: linear-gradient(135deg, #1E293B, #0F172A); }
.cat-img.d { background: linear-gradient(135deg, #1E293B, #0F172A); }
.cat-img.e { background: linear-gradient(135deg, #1E293B, #0F172A); }
.cat-img.f { background: linear-gradient(135deg, #1E293B, #0F172A); }
.cat-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.cat-name { font-size: 16px; font-weight: 600; color: #fff; letter-spacing: -0.005em; }
.cat-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 12px; }
.cat-tag { font-family: var(--font-mono); font-size: 10px; padding: 3px 7px; background: rgba(43,202,190,0.10); color: var(--teal-400); border: 1px solid rgba(43,202,190,0.18); border-radius: var(--radius-xs); letter-spacing: 0.02em; }

/* ---------- STEPPER ---------- */
.stepper { display: flex; gap: 0; margin-top: 40px; border: 1px solid var(--border-1); border-radius: var(--radius-lg); background: white; overflow: hidden; }
.step { flex: 1; padding: 24px 20px; border-right: 1px solid var(--border-1); cursor: pointer; transition: background var(--dur-base); }
.step:last-child { border-right: 0; }
.step.active { background: var(--slate-50); }
.step:hover { background: var(--slate-50); }
.step-num { font-family: var(--font-mono); font-size: 11px; color: var(--teal-700); }
.step-name { font-size: 14px; font-weight: 600; margin-top: 6px; color: var(--fg-1); }
.step-desc { font-size: 12px; color: var(--fg-3); margin-top: 4px; line-height: 1.4; }

/* ---------- RESPONSIBLE SCOPE ---------- */
.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.scope-col { background: white; border: 1px solid var(--border-1); border-left: 3px solid; border-radius: var(--radius-lg); padding: 24px; }
.scope-col.success { border-left-color: var(--success); }
.scope-col.warning { border-left-color: var(--warning); }
.scope-col.danger { border-left-color: var(--danger); }
.scope-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.scope-head .chip { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-sm); }
.scope-col.success .chip { background: var(--success-bg); color: var(--success); }
.scope-col.warning .chip { background: var(--warning-bg); color: var(--warning); }
.scope-col.danger  .chip { background: var(--danger-bg);  color: var(--danger); }
.scope-title { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.scope-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.scope-list li { font-size: 13px; color: var(--fg-2); line-height: 1.5; padding-left: 18px; position: relative; }
.scope-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 1px; background: currentColor; opacity: 0.4; }

/* ---------- INDUSTRIES ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.ind-img, .ind-img-slot { aspect-ratio: 16/9; display: block; width: 100%; }
.ind-img-photo { aspect-ratio: 16/9; width: 100%; overflow: hidden; background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%); display: block; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ind-img-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-base); }
.ind-card:hover .ind-img-photo img { transform: scale(1.03); }
.cat-card:hover .cat-img-photo img { transform: scale(1.03); }
.cat-img-photo img { transition: transform var(--dur-base); }
.ind-img.a, .ind-img.b, .ind-img.c, .ind-img.d, .ind-img.e, .ind-img.f { background: linear-gradient(120deg, #1E293B, #0F172A); }
.ind-body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.ind-icon { width: 22px; height: 22px; color: var(--teal-400); margin-bottom: 10px; }
.ind-name { font-size: 17px; font-weight: 600; color: #fff; letter-spacing: -0.005em; }
.ind-desc { font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.55; margin-top: 6px; }

/* ---------- SUPPLIER ---------- */
.supplier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.supplier-row { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: white; border: 1px solid var(--border-1); border-radius: var(--radius-md); font-size: 13px; color: var(--fg-1); font-weight: 500; }
.supplier-row svg { color: var(--teal-500); flex-shrink: 0; }

/* ---------- FINAL CTA ---------- */
.final-cta { padding: 96px 0; background: var(--navy-800); color: white; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent 0 47px, rgba(255,255,255,0.025) 47px 48px), repeating-linear-gradient(90deg, transparent 0 47px, rgba(255,255,255,0.025) 47px 48px); }
.final-cta .inner { position: relative; max-width: 720px; margin: 0 auto; padding: 0 32px; }
.final-cta h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.1; letter-spacing: -0.015em; font-weight: 700; }
.final-cta .sub { font-size: 18px; color: rgba(255,255,255,0.75); margin: 16px 0 32px; }
.mini-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; max-width: 560px; margin: 0 auto; }
.mini-form input { padding: 12px 14px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: white; font-size: 14px; }
.mini-form input::placeholder { color: rgba(255,255,255,0.5); }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy-900); color: white; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.78); font-size: 14px; border: 0; }
.footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.5); }

/* Sticky RFQ */
.rfq-orb {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--teal-500); color: white;
  padding: 14px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  box-shadow: var(--shadow-4); border: 0;
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 40; transition: all var(--dur-base);
}
.rfq-orb:hover { background: var(--teal-600); transform: translateY(-2px); }

/* ---------- CONFIDENTIALITY NOTE ---------- */
.confidentiality {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: 16px;
  max-width: 560px;
}
.confidentiality-light {
  background: var(--slate-50);
  border: 1px solid var(--border-1);
  color: var(--fg-2);
  margin-left: auto; margin-right: auto;
}
.confidentiality-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.72);
  margin-left: auto; margin-right: auto;
  text-align: left;
}
.confidentiality-icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(43,202,190,0.10);
  color: var(--teal-500);
  border: 1px solid rgba(43,202,190,0.25);
  flex-shrink: 0;
  margin-top: 1px;
}
.confidentiality-dark .confidentiality-icon { color: var(--teal-400); border-color: rgba(43,202,190,0.35); }
.confidentiality-title {
  font-size: 13px; font-weight: 600;
  color: var(--fg-1);
  letter-spacing: 0.005em;
  margin-bottom: 4px;
}
.confidentiality-dark .confidentiality-title { color: #fff; }
.confidentiality-text {
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0;
}

/* ---------- HOW IT WORKS (horizontal strip) ---------- */
.hiw-section { padding: 72px 0; position: relative; }
.hiw-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(255,255,255,0.025) 47px 48px),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(255,255,255,0.025) 47px 48px);
}
.hiw-section .container { position: relative; }
.hiw-strip {
  list-style: none; padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}
.hiw-strip::before {
  content: ''; position: absolute;
  top: 32px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, rgba(43,202,190,0) 0%, rgba(43,202,190,0.35) 12%, rgba(43,202,190,0.35) 88%, rgba(43,202,190,0) 100%);
  z-index: 0;
}
.hiw-step {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 18px 18px 20px;
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
  z-index: 1;
}
.hiw-step:hover {
  border-color: rgba(43,202,190,0.4);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.hiw-step-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.hiw-step-icon {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(43,202,190,0.12);
  border: 1px solid rgba(43,202,190,0.45);
  color: var(--teal-400);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hiw-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--teal-400);
}
.hiw-step-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.hiw-step-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 960px) {
  .hiw-strip { grid-template-columns: repeat(3, 1fr); }
  .hiw-strip::before { display: none; }
  .hiw-step:nth-child(n+4) { grid-column: span 1; }
  .hiw-strip > .hiw-step:nth-child(4) { grid-column: 1 / span 1; }
}
@media (max-width: 600px) {
  .hiw-section { padding: 56px 0; }
  .hiw-strip {
    grid-template-columns: repeat(5, 78%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 32px -32px 0;
    padding: 4px 32px 16px;
  }
  .hiw-step { scroll-snap-align: start; }
}

/* ============================================================
   REDESIGN — compact hero, embedded RFQ, reassurance, quality
   ============================================================ */

/* ---------- NAV (static, never collapses on scroll) ---------- */
.nav-static {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border-1);
  box-shadow: 0 1px 0 var(--border-1);
}
.nav-static .nav-links { gap: 28px; }
.nav-static .nav-links a { font-size: 13.5px; }
.nav-static .nav-cta { padding: 9px 16px; font-size: 13.5px; }
.nav-static .nav-contact {
  white-space: nowrap;
  font-size: 13.5px;
  color: var(--fg-1);
  font-weight: 500;
  margin-left: 4px;
}
.nav-static .nav-contact:hover { color: var(--teal-700); }
.nav-cta-mobile { display: none; }

/* ---------- HERO (compact, 2-col, embedded RFQ) ---------- */
.hero-compact { min-height: 0; padding: 0; }
.hero-compact .hero-photo { filter: brightness(0.55) saturate(0.9); }
.hero-compact .hero-bg {
  background:
    linear-gradient(135deg, rgba(10,37,64,0.78) 0%, rgba(10,37,64,0.55) 55%, rgba(10,37,64,0.85) 100%);
}
.hero-compact .hero-bg::after { display: none; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 96px 32px 96px;
}
.hero-copy { max-width: 560px; }
.hero-eyebrow-row { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hero-eyebrow-bar { width: 24px; height: 1px; background: var(--teal-400); }
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-400);
}
.hero-compact h1 {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: left;
}
.hero-compact h1 .accent { color: var(--teal-400); }
.hero-compact .hero-sub {
  font-size: clamp(15px, 1.15vw, 17px);
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin: 0 0 12px;
  max-width: 540px;
  font-weight: 400;
  text-align: left;
}
.hero-compact .hero-supporting {
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 520px;
  text-align: left;
}
.hero-compact .hero-cta {
  display: flex; gap: 10px;
  justify-content: flex-start;
  margin: 24px 0 0;
  flex-wrap: wrap;
}
.hero-compact .btn-lg { padding: 13px 22px; font-size: 14.5px; }
.hero-rfq { position: relative; z-index: 4; }
.hero-rfq .rfq-card { margin: 0 0 0 auto; max-width: 480px; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 72px 32px 72px; }
  .hero-rfq .rfq-card { margin: 0 auto; max-width: 560px; }
}

/* ---------- RFQ CARD (compact, embedded in hero) ---------- */
.rfq-card-compact { margin: 0 !important; padding: 22px 22px 24px; max-width: none; }
.rfq-card-compact .rfq-title { font-size: 16px; }
.rfq-card-compact .rfq-sub { margin-bottom: 14px; font-size: 12.5px; }
.dropzone-compact { padding: 18px 16px; }
.dropzone-compact .dropzone-icon { width: 26px; height: 26px; margin-bottom: 6px; }
.dropzone-compact .dropzone-title { font-size: 13px; }
.dropzone-compact .dropzone-sub { font-size: 10px; }
.dropzone-help { font-size: 11.5px; color: var(--fg-3); margin-top: 8px; text-align: center; }
.dropzone-help a { color: var(--teal-700); border-bottom: 1px solid var(--teal-200, rgba(43,202,190,0.35)); }
.rfq-card-compact .field { margin-top: 11px; }
.rfq-card-compact .field input, .rfq-card-compact .field textarea, .rfq-card-compact .field select {
  padding: 9px 11px; font-size: 13.5px;
}
.rfq-card-compact .field label { font-size: 11.5px; }

.rfq-collapse-toggle {
  margin-top: 12px;
  background: transparent; border: 0; padding: 6px 0;
  font-family: var(--font-sans); font-size: 12.5px; font-weight: 500;
  color: var(--teal-700); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.rfq-collapse-toggle:hover { color: var(--teal-600); }
.rfq-optional {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-1);
}
.field-help { font-size: 11px; color: var(--fg-3); margin-top: 2px; }

/* ---------- BUYER REASSURANCE STRIP ---------- */
.reassurance {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-1);
  padding: 18px 0;
}
.reassurance-inner {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.reassurance-lead {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  white-space: nowrap;
}
.reassurance-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px 10px;
  flex: 1;
}
.reassurance-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px;
  color: var(--fg-2);
  padding: 6px 11px;
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 999px;
  white-space: nowrap;
  transition: border-color 200ms, color 200ms;
}
.reassurance-item:hover { border-color: var(--teal-500); color: var(--teal-700); }
.reassurance-item svg { color: var(--teal-500); flex-shrink: 0; }

/* ---------- TIGHTER SECTION SPACING ---------- */
.section { padding: 88px 0; }
.section-tight { padding: 72px 0; }
.section + .section { padding-top: 88px; }
.cat-grid, .ind-grid, .cap-grid, .scope-grid, .supplier-grid { margin-top: 40px !important; }
.section-title { font-size: clamp(28px, 2.6vw, 36px); margin-bottom: 10px; }
.section-sub { font-size: 15.5px; max-width: 680px; }

/* ---------- CATEGORY GRID (compact + 3-tag cap + desc) ---------- */
.cat-grid-compact { gap: 16px; }
.cat-img-photo-compact { aspect-ratio: 16/10; }
.cat-body-compact { padding: 18px 20px 20px; gap: 6px; }
.cat-body-compact .cat-name { font-size: 15.5px; }
.cat-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  margin-top: 4px;
}
.cat-body-compact .cat-tags { margin-top: 10px; gap: 4px; }
.cat-tag-more {
  background: rgba(255,255,255,0.04) !important;
  color: rgba(255,255,255,0.55) !important;
  border-color: rgba(255,255,255,0.12) !important;
}

/* ---------- INDUSTRIES (icon tiles, no images) ---------- */
.ind-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.ind-tile {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms;
  display: flex; flex-direction: column;
  cursor: default;
}
.ind-tile:hover {
  border-color: rgba(43,202,190,0.45);
  box-shadow: 0 10px 28px rgba(15,23,42,0.06), 0 0 0 1px rgba(43,202,190,0.15);
  transform: translateY(-2px);
}
.ind-tile-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  border: 1px solid rgba(43,202,190,0.22);
  color: var(--teal-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.ind-tile-name {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--fg-1);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.ind-tile-desc {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.55;
}
@media (max-width: 900px) { .ind-grid-compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ind-grid-compact { grid-template-columns: 1fr; } }

/* ---------- QUALITY & DOCUMENTATION (compact trust block) ---------- */
.quality-section { padding: 64px 0; }
.quality-section-compact { padding: 56px 0; }
.quality-compact {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px 48px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: var(--shadow-1);
}
.quality-compact-head { max-width: 380px; }
.quality-compact-title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--fg-1);
  margin: 8px 0 10px;
  letter-spacing: -0.005em;
}
.quality-compact-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}
.quality-compact-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}
.quality-compact-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px;
  color: var(--fg-1);
  line-height: 1.5;
}
.quality-compact-list li svg { color: var(--teal-600); flex-shrink: 0; margin-top: 3px; }
.quality-compact-list li a { color: var(--teal-700); border-bottom: 1px solid rgba(43,202,190,0.4); }
@media (max-width: 820px) {
  .quality-compact { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .quality-compact-list { grid-template-columns: 1fr; }
  .quality-section-compact { padding: 44px 0; }
}

/* ---------- LEGACY QUALITY (kept for any other pages) ---------- */
.quality-section-legacy {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.quality-copy { max-width: 480px; }
.quality-note {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.55;
  margin-top: 18px;
  padding-left: 14px;
  border-left: 2px solid var(--teal-500);
}
.quality-card {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 22px 24px 24px;
  box-shadow: var(--shadow-1);
}
.quality-card-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--fg-1);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-1);
}
.quality-card-head svg { color: var(--teal-600); }
.quality-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.quality-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}
.quality-list li svg {
  color: var(--teal-600);
  flex-shrink: 0;
  margin-top: 3px;
}
@media (max-width: 900px) {
  .quality-grid { grid-template-columns: 1fr; gap: 28px; }
  .quality-list { grid-template-columns: 1fr; }
}

/* ---------- FINAL CTA (compact) ---------- */
.final-cta-compact { padding: 72px 0; }
.final-cta-compact h2 { font-size: clamp(26px, 3vw, 36px); }
.final-cta-compact .sub { font-size: 15px; margin: 12px 0 24px; }
.final-cta-meta {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.final-cta-meta a { color: var(--teal-400); border-bottom: 1px solid rgba(43,202,190,0.4); }
.final-cta-done {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: rgba(43,202,190,0.12);
  border: 1px solid rgba(43,202,190,0.32);
  color: var(--teal-400);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
}
.final-cta-done svg { color: var(--teal-400); }


/* ---------- COMMON BUYERS STRIP ---------- */
.common-buyers { background: var(--bg-surface); border-top: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1); padding: 28px 0; }
.common-buyers-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.common-buyers-lead { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); white-space: nowrap; }
.common-buyers-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 22px; flex: 1; }
.common-buyers-item { font-size: 13.5px; color: var(--fg-2); position: relative; padding-left: 14px; white-space: nowrap; }
.common-buyers-item::before { content: ''; position: absolute; left: 0; top: 50%; width: 4px; height: 4px; border-radius: 999px; background: var(--teal-500); transform: translateY(-50%); }
@media (max-width: 600px) { .common-buyers { padding: 22px 0; } .common-buyers-inner { gap: 12px; } .common-buyers-list { gap: 6px 16px; } }

/* ---------- SCOPE (compact, two-card best-fit) ---------- */
.scope-grid-compact { gap: 20px; margin-top: 24px !important; }
#scope.section-tight { padding: 56px 0; }
.rfq-track-panel { min-height: 520px; display: flex; flex-direction: column; justify-content: center; }
.scope-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 880px; }
.scope-grid-compact .scope-col {
  padding: 20px 22px 22px;
  border: 1px solid var(--border-1);
  border-left-width: 3px;
  border-radius: 14px;
  background: #fff;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-1);
}
.scope-grid-compact .scope-head { margin-bottom: 14px; }
.scope-grid-compact .scope-head .chip {
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
  text-transform: none; letter-spacing: 0.01em; font-weight: 600;
}
.scope-grid-compact .scope-list { gap: 9px; }
.scope-grid-compact .scope-list li {
  font-size: 13.5px; color: var(--fg-1); line-height: 1.5;
  padding-left: 0; display: flex; align-items: flex-start; gap: 8px;
}
.scope-grid-compact .scope-list li::before { content: none; }
.scope-grid-compact .scope-list li svg { flex-shrink: 0; margin-top: 3px; }

/* Best fit — teal */
.scope-col.success { border-left-color: var(--teal-600); }
.scope-col.success .chip { background: rgba(43, 202, 190, 0.12); color: var(--teal-700); }
.scope-col.success .scope-list li svg { color: var(--teal-600); }

/* May need review — subtle warm amber, no red */
.scope-col.warning { border-left-color: #E8A23B; }
.scope-col.warning .chip { background: rgba(232, 162, 59, 0.12); color: #8A5A12; }
.scope-col.warning .scope-list li svg { color: #C77F1A; }

@media (max-width: 760px) { .scope-grid-2 { grid-template-columns: 1fr; } }

/* ---------- QUALITY confidentiality line ---------- */
.quality-confidentiality { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12.5px; color: var(--fg-3); }
.quality-confidentiality svg { color: var(--teal-600); flex-shrink: 0; }

/* ---------- FINAL CTA actions ---------- */
.final-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.final-cta-compact .final-cta-meta { margin-top: 18px; }
.final-cta-sep { margin: 0 8px; opacity: 0.5; }

/* ---------- FOOTER (compact) ---------- */
.footer-compact { padding: 56px 0 28px; }
.footer-compact .footer-grid { gap: 40px 56px; grid-template-columns: 2.2fr 1fr 1fr 1fr; }
.footer-logo { height: 32px; margin-bottom: 14px; display: block; }
.footer-positioning {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 340px;
  margin: 0;
}
.footer-meta { margin-top: 16px; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-company { color: rgba(255,255,255,0.88); font-weight: 600; }
.footer-mail a { color: rgba(255,255,255,0.78); }
.footer-compact .footer-bottom { margin-top: 36px; padding-top: 20px; }

/* --- TYPOGRAPHY: prevent awkward mid-word breaks ("ob solete", split emails) --- */
.footer p,
.footer li,
.footer a,
.footer span,
.footer-positioning,
.footer-meta,
.footer-meta div,
.footer-bottom span {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  letter-spacing: normal;
}
/* Only the small uppercase column labels keep tracking. */
.footer h4 {
  letter-spacing: 0.08em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
/* Email is the one place we allow mid-string break — only as a last resort
   (very narrow viewports), so the address never overflows the column. */
.footer-mail a { overflow-wrap: anywhere; }

/* Footer link rows get bigger tap targets on mobile. */
.footer ul li { line-height: 1.4; }
.footer ul li a {
  display: inline-block;
  padding: 4px 0;
}

@media (max-width: 900px) {
  .footer-compact .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-positioning { max-width: none; }
}
@media (max-width: 560px) {
  .footer-compact { padding: 48px 0 24px; }
  .footer-compact .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer ul { gap: 4px; }
  .footer ul li a { padding: 10px 0; min-height: 24px; } /* 24 + 20 padding ≈ 44px tap target */
  .footer-mail a { padding: 6px 0; display: inline-block; }
  .footer-bottom { margin-top: 28px !important; padding-top: 16px !important; }
}

/* ---------- CATEGORY CARD (fixed heights) ---------- */
.cat-img-photo-fixed { aspect-ratio: auto; height: 160px; }
.cat-card-fixed { display: flex; flex-direction: column; }
.cat-body-fixed { padding: 18px 20px 20px; gap: 6px; min-height: 120px; flex: 1; display: flex; flex-direction: column; }
.cat-body-fixed .cat-name { font-size: 15.5px; }
.cat-body-fixed .cat-tags { margin-top: auto; padding-top: 10px; gap: 4px; }
@media (max-width: 960px) { .cat-img-photo-fixed { height: 150px; } }
@media (max-width: 640px) { .cat-img-photo-fixed { height: 180px; } }

/* ---------- NAV (mobile burger + drawer) ---------- */
.nav-burger { display: none; width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer; padding: 10px; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--fg-1); border-radius: 2px; transition: transform 200ms, opacity 200ms; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: white; border-bottom: 1px solid var(--border-1); box-shadow: 0 12px 28px rgba(15,23,42,0.08); padding: 12px 0; z-index: 49; max-height: 0; overflow: hidden; transition: max-height 240ms ease; }
.nav-mobile.is-open { max-height: 80vh; padding: 18px 0 22px; }
.nav-mobile-inner { display: flex; flex-direction: column; gap: 4px; padding: 0 24px; }
.nav-mobile a { padding: 12px 4px; font-size: 16px; color: var(--fg-1); border-bottom: 1px solid var(--border-1); }
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile-cta { margin-top: 12px; text-align: center; border-bottom: 0 !important; }
.nav-login { color: var(--fg-2) !important; padding-right: 14px; border-right: 1px solid var(--border-1); margin-right: 4px; }
@media (max-width: 900px) {
  .nav-links-desktop { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile { display: block; }
  .nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    margin-right: 10px;
    background: var(--teal-500);
    color: #fff;
    padding: 9px 14px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 600;
    border: 0;
    line-height: 1;
  }
  .nav-cta-mobile:hover { background: var(--teal-600); }
}
@media (max-width: 480px) {
  .nav-cta-mobile { padding: 8px 12px; font-size: 13px; }
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 48; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; background: var(--teal-500); color: white !important; border-radius: 14px; box-shadow: 0 12px 28px rgba(43,202,190,0.32), 0 2px 6px rgba(15,23,42,0.18); border: 0; font-weight: 600; opacity: 0; transform: translateY(120%); transition: opacity 200ms, transform 220ms ease; }
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); }
.sticky-cta-main { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 16px; font-weight: 600; }
.sticky-cta-sub { display: none; }
@media (max-width: 768px) {
  .sticky-cta { display: flex; justify-content: center; min-height: 56px; }
}


/* ---------- RFQ CARD v2 (tabs + polished dropzone) ---------- */
.rfq-card-v2 { padding: 24px 24px 26px; }
.rfq-card-v2 .rfq-head { margin-bottom: 16px; }
.rfq-card-v2 .rfq-title { font-size: 18px; font-weight: 700; line-height: 1.25; }
.rfq-card-v2 .rfq-sub { font-size: 13px; color: var(--fg-2); line-height: 1.5; margin: 4px 0 0; }

/* Tabs */
.rfq-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px;background: var(--slate-50);
  border: 1px solid var(--border-1);
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.rfq-tab {
  appearance: none; -webkit-appearance: none;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
  padding: 10px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 180ms var(--ease-standard), color 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard);
  white-space: nowrap;
}
.rfq-tab:hover { color: var(--fg-1); }
.rfq-tab:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 2px; }
.rfq-tab.is-active {
  background: white;
  color: var(--teal-700);
  box-shadow: 0 1px 2px rgba(15,23,42,0.06), 0 0 0 1px rgba(43,202,190,0.35);
}

/* Tab panels */
.rfq-panels { margin-bottom: 4px; }
.rfq-panel { animation: rfqFade 180ms var(--ease-standard); }
@keyframes rfqFade {
  from { opacity: 0; transform: translateY(2px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rfq-instruction {
  font-size: 13px; color: var(--fg-2); line-height: 1.5;
  margin: 0 0 12px;
}

/* Dropzone v2 */
.dropzone-v2 {
  position: relative;
  display: block;
  border: 1.5px dashed var(--border-2);
  background: var(--slate-50);
  border-radius: 14px;
  padding: 28px 20px 26px;
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms var(--ease-standard), background-color 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard);
  min-height: 148px;
}
.dropzone-v2:hover {
  border-color: var(--teal-500);
  background: rgba(43,202,190,0.05);
}
.dropzone-v2:focus-within {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(43,202,190,0.18);
}
.dropzone-v2.is-drag {
  border-color: var(--teal-500);
  border-style: solid;
  background: rgba(43,202,190,0.10);
  box-shadow: 0 0 0 4px rgba(43,202,190,0.14);
}
.dropzone-v2.is-error { border-color: var(--danger, #DC2626); background: rgba(220,38,38,0.04); }
.rfq-file-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.dropzone-v2 .dropzone-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border-1);
  color: var(--teal-600);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.dropzone-v2 .dropzone-title {
  font-size: 14.5px; font-weight: 600; color: var(--fg-1);
  margin: 0 0 6px;
}
.dropzone-v2 .dropzone-formats {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  margin: 0;
}
.dropzone-v2 .dropzone-other {
  font-size: 11.5px; color: var(--fg-3); margin-top: 4px;
}
.dropzone-title-mobile { display: none; }
.dropzone-help { font-size: 12px; color: var(--fg-3); margin: 10px 0 0; text-align: center; }
.dropzone-help a { color: var(--teal-700); border-bottom: 1px solid rgba(43,202,190,0.35); }

/* Uploaded file cards */
.rfq-files-list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 6px; }
.rfq-file-card {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px 9px 12px;
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 10px;
  font-size: 13px;
}
.rfq-file-icon { color: var(--teal-600); flex-shrink: 0; }
.rfq-file-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--fg-1); }
.rfq-file-size { font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-3); flex-shrink: 0; }
.rfq-file-remove {
  background: transparent; border: 0; cursor: pointer;
  width: 28px; height: 28px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-3); flex-shrink: 0;
  transition: background 150ms, color 150ms;
}
.rfq-file-remove:hover { background: var(--slate-100); color: var(--danger, #DC2626); }
.rfq-file-remove:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 1px; }

/* Email later card */
.rfq-email-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--slate-50);
  border: 1px solid var(--border-1);
  border-radius: 12px;
  padding: 16px 18px;
}
.rfq-email-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: white; border: 1px solid var(--border-1);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--teal-600); flex-shrink: 0;
}
.rfq-email-body p { margin: 0; font-size: 13.5px; color: var(--fg-2); line-height: 1.55; }
.rfq-email-body a { color: var(--teal-700); border-bottom: 1px solid rgba(43,202,190,0.35); }

/* Notes textarea (large) */
.rfq-field-notes textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.55;
}

/* Common contact section */
.rfq-card-v2 .rfq-contact { margin-top: 14px; }
.rfq-card-v2 .field { margin-top: 12px; }
.rfq-card-v2 .field input,
.rfq-card-v2 .field textarea,
.rfq-card-v2 .field select {
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 8px;
}
.rfq-card-v2 .field label { font-size: 12px; font-weight: 500; color: var(--fg-2); }
.rfq-card-v2 .field.is-invalid input,
.rfq-card-v2 .field.is-invalid textarea,
.rfq-card-v2 .field.is-invalid select {
  border-color: var(--danger, #DC2626);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.12);
}
.field-error { font-size: 11.5px; color: var(--danger, #DC2626); margin-top: 4px; }

/* Inline error blocks */
.rfq-inline-error {
  font-size: 12.5px;
  color: var(--danger, #DC2626);
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 8px;
  padding: 8px 10px;
  margin: 10px 0 0;
}
.rfq-inline-error-block { margin-top: 6px; }


/* Submit + footer notes */
.rfq-submit { margin-top: 18px; padding: 13px 18px; font-size: 14.5px; }


/* Mobile adjustments */
@media (max-width: 768px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .rfq-card-v2 .field-row .field + .field { margin-top: 12px; }
  .rfq-card-v2 .field { margin-top: 14px; }
  .rfq-card-v2 .field input,
  .rfq-card-v2 .field select {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 16px; /* avoids iOS zoom-on-focus */
  }
  .rfq-card-v2 .field textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
  .rfq-field-notes textarea { min-height: 200px; }
  .rfq-tab { font-size: 14px; padding: 14px 8px; min-height: 48px; }
  .rfq-card-v2 { padding: 20px 18px 22px; }
  .rfq-submit { min-height: 52px; padding: 14px 18px; font-size: 15px; }
  .rfq-track-actions .btn { min-height: 52px; padding: 14px 18px; font-size: 15px; }
}

/* ============================================================
   MOBILE-FIRST UPLOAD AREA (two big tap targets)
   ============================================================ */
.rfq-upload-mobile { display: none; }
.rfq-camera-input {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.rfq-upload-mobile-title {
  font-size: 15px; font-weight: 600; color: var(--fg-1);
  text-align: center; margin: 0 0 12px;
}
.rfq-upload-mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.rfq-upload-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 6px;
  padding: 18px 12px 16px;
  min-height: 112px;
  background: white;
  border: 1.5px dashed var(--border-1);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 160ms var(--ease-standard), background 160ms var(--ease-standard), transform 120ms var(--ease-standard), box-shadow 160ms var(--ease-standard);
  text-align: center;
  font: inherit;
  color: var(--fg-1);
}
.rfq-upload-btn:hover { border-color: var(--teal-500); background: rgba(43,202,190,0.04); }
.rfq-upload-btn:active { transform: translateY(1px) scale(0.99); }
.rfq-upload-btn:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 2px; }
.rfq-upload-btn-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(43,202,190,0.10);
  color: var(--teal-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 2px;
}
.rfq-upload-btn-label { font-size: 14.5px; font-weight: 600; line-height: 1.2; }
.rfq-upload-btn-sub { font-size: 11.5px; color: var(--fg-3); line-height: 1.35; }
.rfq-upload-mobile-formats {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  margin: 12px 0 0;
  text-align: center;
}
.rfq-upload-mobile-other {
  font-size: 12px; color: var(--fg-3); margin: 4px 0 0; text-align: center;
}

/* On mobile: show buttons, hide drag-drop zone */
@media (max-width: 768px) {
  .rfq-upload-mobile { display: block; }
  .dropzone-desktop { display: none; }
}
/* On very narrow phones, still keep two-up but allow more breathing room */
@media (max-width: 360px) {
  .rfq-upload-mobile-actions { grid-template-columns: 1fr; }
  .rfq-upload-btn { min-height: 88px; flex-direction: row; gap: 12px; padding: 14px 16px; text-align: left; align-items: center; }
  .rfq-upload-btn-icon { margin: 0; }
}

/* ============================================================
   HERO — MOBILE / DESKTOP SUBTEXT VARIANTS
   ============================================================ */
.hero-sub-mobile { display: none; }
.hero-sub-desktop { display: block; }
.hero-cta-helper {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin: 10px 0 0;
  line-height: 1.5;
  display: none;
}

/* Mobile-only hero adjustments — when inline RFQ is hidden, give the copy room to breathe */
.hero-mobile-cta .hero-grid { grid-template-columns: 1fr; gap: 24px; padding-top: 88px; padding-bottom: 64px; }
.hero-mobile-cta .hero-copy { text-align: left; max-width: 620px; margin: 0 auto; }
.hero-mobile-cta h1 { font-size: clamp(36px, 9vw, 54px); margin-bottom: 18px; }
.hero-mobile-cta .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; margin: 22px 0 6px; }
.hero-mobile-cta .hero-cta .btn { width: 100%; justify-content: center; }
.hero-mobile-cta .hero-supporting { display: none; }
.hero-mobile-cta .hero-cta-helper { display: block; }

@media (max-width: 768px) {
  .hero-sub-mobile { display: block; }
  .hero-sub-desktop { display: none; }
}

/* ============================================================
   STICKY MOBILE CTA — drop shadow + safe-area
   ============================================================ */
.sticky-cta {
  bottom: calc(16px + env(safe-area-inset-bottom));
  box-shadow: 0 12px 28px -8px rgba(15,23,42,0.45), 0 6px 12px -4px rgba(15,23,42,0.25);
  transform: translateY(8px);
  transition: opacity 220ms var(--ease-standard), transform 220ms var(--ease-standard);
  opacity: 0; pointer-events: none;
  text-decoration: none;
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta-sub { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* Hide while bottom sheet is open */
body.rfq-sheet-open .sticky-cta { opacity: 0 !important; pointer-events: none !important; transform: translateY(8px); }

/* ============================================================
   RFQ BOTTOM SHEET (mobile)
   ============================================================ */
.rfq-sheet-root {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  display: flex; align-items: flex-end; justify-content: stretch;
}
.rfq-sheet-root.is-open { pointer-events: auto; }
.rfq-sheet-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 19, 36, 0.55);
  opacity: 0;
  transition: opacity 240ms var(--ease-standard);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.rfq-sheet-root.is-open .rfq-sheet-backdrop { opacity: 1; }

.rfq-sheet {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -16px 60px -8px rgba(8, 19, 36, 0.45);
  transform: translateY(100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
  /* Use small viewport unit for stable height with mobile keyboards */
  max-height: 92svh;
  max-height: 92dvh;
  overflow: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}
.rfq-sheet-root.is-open .rfq-sheet { transform: translateY(0); }

.rfq-sheet-handle {
  display: flex; justify-content: center; align-items: center;
  padding: 8px 0 4px;
  cursor: grab;
  touch-action: none;
}
.rfq-sheet-handle-bar {
  width: 44px; height: 4px;
  background: var(--slate-200, #E2E8F0);
  border-radius: 999px;
}

.rfq-sheet-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
  padding: 4px 20px 14px;
  border-bottom: 1px solid var(--border-1);
  background: white;
}
.rfq-sheet-title { font-size: 18px; font-weight: 700; color: var(--fg-1); line-height: 1.2; }
.rfq-sheet-sub { font-size: 13px; color: var(--fg-2); margin-top: 4px; line-height: 1.45; }
.rfq-sheet-close {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--slate-50, #F8FAFC);
  border: 1px solid var(--border-1);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-2);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 150ms, color 150ms, transform 120ms;
}
.rfq-sheet-close:hover { background: var(--slate-100); color: var(--fg-1); }
.rfq-sheet-close:active { transform: scale(0.96); }
.rfq-sheet-close:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 2px; }

.rfq-sheet-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 16px 18px 28px;
  scroll-padding-bottom: 80px;
}

/* Card variant when inside the sheet — no card chrome (sheet provides it) */
.rfq-card-sheet {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.rfq-card-sheet .rfq-tabs { margin-top: 4px; }

/* Success state inside sheet */
.rfq-success-actions {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 6px;
}

/* Submit button in sheet — remain visible after scroll */
.rfq-card-sheet .rfq-submit { margin-top: 16px; padding: 14px 18px; font-size: 15px; }

/* Hide hero RFQ wrapper visually only when not rendered (no-op fallback if instance differs) */
@media (max-width: 768px) {
  .rfq-sheet-root { display: flex; }
  /* Reduce hero background scaling on small screens */
  .hero-compact .hero-photo { opacity: 0.35; }
}
@media (min-width: 769px) {
  .rfq-sheet-root { display: none; }
}


/* ---------- LEGAL: combined page TOC + section jumps ---------- */
.legal-page-combined .legal-card { max-width: 760px; }
.legal-toc {
  display: flex; flex-wrap: wrap; gap: 6px 8px;
  margin: 18px 0 28px;
  padding: 14px 16px;
  background: var(--slate-50, #F1F5F9);
  border: 1px solid var(--border-1);
  border-radius: 10px;
}
.legal-toc a {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--fg-2);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-1);
  white-space: nowrap;
}
.legal-toc a:hover { color: var(--teal-700); border-color: var(--teal-500); }
.legal-section { scroll-margin-top: calc(var(--nav-h) + 16px); }
.legal-section + .legal-section { margin-top: 28px; }
.legal-section h2 { font-size: 18px; font-weight: 600; color: var(--fg-1); margin: 0 0 10px; letter-spacing: 0; }
.legal-section p  { font-size: 14.5px; line-height: 1.65; color: var(--fg-2); margin: 0 0 8px; }
.legal-section a  { color: var(--teal-700); border-bottom: 1px solid rgba(43,202,190,0.35); }
.legal-track { padding: 20px; background: var(--slate-50, #F8FAFC); border: 1px solid var(--border-1); border-radius: 12px; margin-top: 32px; }
.legal-track-email a { font-weight: 600; }
.legal-track-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.legal-track-actions .btn { min-width: 180px; justify-content: center; }
@media (max-width: 600px) {
  .legal-track-actions .btn { width: 100%; min-width: 0; }
}

/* ---------- LEGAL & PLACEHOLDER PAGES ---------- */
.legal-page {
  min-height: calc(100vh - var(--nav-h));
  padding: 72px 0 96px;
  background: var(--bg-surface);
}
.legal-card {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 56px 64px 48px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-1);
}
.legal-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.legal-eyebrow .bar { width: 24px; height: 1px; background: var(--teal-500); display: block; }
.legal-eyebrow .eyebrow {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-600); font-weight: 600;
}
.legal-title {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--fg-1);
}
.legal-summary {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 32px;
  max-width: 64ch;
}
.legal-body { display: flex; flex-direction: column; gap: 28px; margin-bottom: 36px; }
.legal-section h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--fg-1);
}
.legal-section p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 10px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-3);
  background: var(--bg-surface);
  border: 1px dashed var(--border-1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 0;
}
.legal-note a { color: var(--teal-600); }
.legal-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-top: 28px;
  border-top: 1px solid var(--border-1);
}
.legal-mail {
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.legal-mail:hover { color: var(--teal-700); border-bottom-color: currentColor; }
@media (max-width: 720px) {
  .legal-page { padding: 48px 0 64px; }
  .legal-card { padding: 32px 24px 28px; border-radius: var(--radius-md); }
  .legal-actions { gap: 10px; }
  .legal-actions .btn { width: 100%; justify-content: center; }
  .legal-mail { width: 100%; padding-top: 4px; }
}

/* Footer logo as a link should not pick up underline/border styles. */
.footer-logo-link {
  display: inline-block;
  border: 0 !important;
  text-decoration: none !important;
  line-height: 0;
}
.footer-logo-link:hover { opacity: 0.85; }



/* ============================================================
   MICRO-ANIMATIONS — scroll reveal, focus rings, hover polish
   Respects prefers-reduced-motion via .motion-reduced on <html>
   ============================================================ */

/* ----- Scroll reveal ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.motion-reduced [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ----- How it works: progress line + step activation ----- */
.hiw-strip { --hiw-progress: 0%; }
.hiw-strip::after {
  content: '';
  position: absolute;
  top: 32px; left: 8%;
  width: calc((100% - 16%) * (var(--hiw-progress)));
  height: 1px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
  box-shadow: 0 0 16px rgba(43, 202, 190, 0.55);
  z-index: 0;
  transition: width 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
@media (max-width: 960px) { .hiw-strip::after { display: none; } }
.hiw-step .hiw-step-icon {
  transition:
    background 240ms var(--ease-standard),
    color 240ms var(--ease-standard),
    box-shadow 240ms var(--ease-standard),
    transform 240ms var(--ease-standard);
}
.hiw-step.is-active .hiw-step-icon {
  background: var(--teal-500);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(43, 202, 190, 0.18), 0 8px 18px rgba(43, 202, 190, 0.35);
  transform: scale(1.06);
}
.hiw-step.is-active .hiw-step-num { color: var(--teal-300, #6FE9DC); }
.motion-reduced .hiw-strip::after { transition: none; }

/* ----- CTA polish: primary glow + steady lift ----- */
.btn-primary {
  position: relative;
  isolation: isolate;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(60% 100% at 50% 0%, rgba(255,255,255,0.22), transparent 70%);
  opacity: 0;
  transition: opacity 240ms var(--ease-standard);
  pointer-events: none;
  z-index: 0;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(43, 202, 190, 0.32),
    0 10px 24px rgba(43, 202, 190, 0.30);
}

/* ----- Form focus rings (consistent teal halo) ----- */
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(43, 202, 190, 0.20);
}

/* ----- Upload dropzone polish ----- */
.dropzone, .dropzone-v2 {
  transition:
    border-color 200ms var(--ease-standard),
    background 200ms var(--ease-standard),
    box-shadow 200ms var(--ease-standard),
    transform 200ms var(--ease-standard);
}
.dropzone:hover, .dropzone-v2:hover {
  border-color: var(--teal-500);
  background: var(--teal-50);
}
.dropzone-v2.is-drag {
  transform: scale(1.01);
  box-shadow: 0 0 0 3px rgba(43, 202, 190, 0.18), 0 14px 32px rgba(15,23,42,0.10);
}
.dropzone-v2.is-error {
  border-color: var(--danger);
  background: var(--danger-bg, rgba(239, 68, 68, 0.06));
  animation: ps-shake 320ms cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes ps-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-3px); }
  40%, 60% { transform: translateX(3px); }
}
.motion-reduced .dropzone-v2.is-error { animation: none; }

/* ----- RFQ tabs: animated underline ----- */
.rfq-tabs { position: relative; }
.rfq-tab {
  position: relative;
  transition: color 180ms var(--ease-standard), background 180ms var(--ease-standard);
}
.rfq-tab::after {
  content: '';
  position: absolute; left: 18%; right: 18%; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.rfq-tab.is-active::after { transform: scaleX(1); }
.motion-reduced .rfq-tab::after { transition: none; }

/* ----- RFQ panel crossfade (already keyframed; refine for consistency) ----- */
.rfq-panel { animation: rfqFadeIn 220ms cubic-bezier(0.22, 0.61, 0.36, 1); }
@keyframes rfqFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.motion-reduced .rfq-panel { animation: none; }

/* ----- Sticky CTA entrance ----- */
.sticky-cta {
  transform: translateY(120%);
  opacity: 0;
  transition:
    opacity 280ms var(--ease-standard),
    transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* ----- Nav active-section underline ----- */
.nav-links a {
  position: relative;
  transition: color 180ms var(--ease-standard);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px; border-radius: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-links a.is-active { color: var(--teal-700); }
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-mobile a.is-active { color: var(--teal-700); }
.motion-reduced .nav-links a::after { transition: none; }


/* =========================================================================
   POLISH PASS — visual hierarchy, spacing rhythm, type, wrapping, focus
   Appended last so it wins over earlier rules without rewriting them.
   ========================================================================= */

/* ----- TYPE: enforce Inter + healthy body metrics ----- */
html, body { font-family: var(--font-sans); }
body { font-size: 16px; line-height: 1.6; color: var(--fg-1); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
@media (min-width: 1100px) { body { font-size: 17px; } }

/* Heading rhythm — strong but not oversized */
.section-title {
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.section-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 64ch;
  text-wrap: pretty;
}
.section-dark .section-sub { color: rgba(255,255,255,0.78); }

/* ----- WORD-WRAP / HYPHENATION: prevent ugly mid-word splits everywhere ----- */
p, li, a, span, label, h1, h2, h3, h4, h5, h6, button, input, textarea, select {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
/* Long URLs / emails may break only as last resort */
.footer-mail a, .legal-mail, a[href^="mailto:"] {
  overflow-wrap: anywhere;
  word-break: normal;
}
/* Headings should never hyphenate */
h1, h2, h3, h4, .section-title, .hero-compact h1, .final-cta h2 {
  hyphens: none !important;
  text-wrap: balance;
}

/* ----- LETTER-SPACING: only on uppercase eyebrows / labels ----- */
/* Reset any wide tracking on body/form text */
p, li, .footer a, .footer li, .field input, .field textarea, .field select,
.field label, input, textarea, select, .nav a, .btn, .hero-sub, .hero-supporting, .hero-cta-helper {
  letter-spacing: normal;
}
/* Keep tracking on uppercase micro-labels */
.eyebrow, .hero-eyebrow, .footer h4, .common-buyers-lead,
.scope-head .chip,
.legal-eyebrow .eyebrow {
  letter-spacing: 0.08em;
}

/* ----- HERO: stronger overlay + premium heading + line-break control ----- */
.hero { background: var(--navy-800); }
.hero-photo {
  filter: contrast(1.05) brightness(0.45) saturate(0.9) !important;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,24,43,0.55) 0%, rgba(7,24,43,0.78) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(0,184,169,0.10), transparent 55%);
  z-index: 1;
}
.hero { position: relative; }
.hero .container { position: relative; z-index: 2; }
.hero-bg { z-index: 1; }

.hero-compact h1 {
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 22px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-compact h1 .accent {
  color: var(--teal-400);
  font-weight: 700;
}
.hero-compact .hero-sub {
  font-size: clamp(15.5px, 1.1vw, 17px);
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 56ch;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0,0,0,0.25);
}
.hero-compact .hero-supporting {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
}
.hero-compact .hero-cta-helper {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  margin: 12px 0 0;
}

/* ----- SECTION PADDING RHYTHM: 96 / 80 / 64 / 48 ----- */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section + .section { padding-top: 96px; }
.hiw-section { padding: 80px 0; }
.quality-section { padding: 56px 0; }
.quality-section-compact { padding: 56px 0; }
.final-cta-compact { padding: 80px 0; }
.reassurance, .common-buyers { padding: 22px 0; }

@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 56px 0; }
  .section + .section { padding-top: 64px; }
  .hiw-section { padding: 56px 0; }
  .quality-section { padding: 44px 0; }
  .final-cta-compact { padding: 56px 0; }
}
@media (max-width: 560px) {
  .section { padding: 48px 0; }
  .section-tight { padding: 44px 0; }
  .section + .section { padding-top: 48px; }
  .hiw-section { padding: 48px 0; }
  .quality-section { padding: 36px 0; }
  .final-cta-compact { padding: 48px 0; }
}

/* Section header (eyebrow + title + sub) breathing room */
.section-title { margin-bottom: 12px; }
.section-sub + .cat-grid,
.section-sub + .ind-grid,
.section-sub + .cap-grid,
.section-sub + .scope-grid,
.section-sub + .supplier-grid,
.section-sub + .quality-grid,
.section-sub + .hiw-strip {
  margin-top: 48px;
}
@media (max-width: 900px) {
  .section-sub + .cat-grid,
  .section-sub + .ind-grid,
  .section-sub + .cap-grid,
  .section-sub + .scope-grid,
  .section-sub + .quality-grid {
    margin-top: 36px;
  }
}

/* ----- CARD SYSTEM UNIFICATION ----- */
/* Consistent 12px radius, 1px borders, equal heights, 22px gap */
.cat-grid, .ind-grid, .cap-grid, .scope-grid, .supplier-grid, .quality-grid {
  gap: 22px !important;
}
@media (max-width: 720px) {
  .cat-grid, .ind-grid, .cap-grid, .scope-grid, .supplier-grid, .quality-grid {
    gap: 16px !important;
  }
}
.cat-card, .ind-card, .cap-card, .scope-col {
  border-radius: 12px !important;
  border-width: 1px !important;
}
.cat-card, .ind-card { border-color: rgba(255,255,255,0.10); }
.cap-card, .scope-col { border-color: var(--border-1); box-shadow: var(--shadow-1); }

/* Equal-height cards within a row */
.cap-grid, .scope-grid, .cat-grid, .ind-grid { align-items: stretch; }
.cap-card, .scope-col, .cat-card, .ind-card { height: 100%; display: flex; flex-direction: column; }

/* Card icon size + stroke consistency (scope-col + cap-card) */
.cap-icon, .quality-icon { width: 26px; height: 26px; stroke-width: 1.5; }
.ind-icon { width: 22px; height: 22px; stroke-width: 1.6; }

/* Scope chip color logic preserved per spec:
   safety orange = warning (Assessed Case-by-Case)
   red          = danger  (Outside Current Scope)
   teal         = success (Accepted / In-scope) */
.scope-col.success .chip { background: var(--teal-50); color: var(--teal-700); }
.scope-col.success { border-left-color: var(--teal-500); }

/* ----- BUTTONS: focus + steady glow ----- */
.btn { white-space: nowrap; }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg-canvas), 0 0 0 4px var(--teal-500);
}
.section-dark .btn:focus-visible,
.hero .btn:focus-visible,
.final-cta .btn:focus-visible {
  box-shadow: 0 0 0 2px var(--navy-800), 0 0 0 4px var(--teal-400);
}
.btn-primary {
  font-weight: 600;
  letter-spacing: 0;
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { border-color: white; }

/* ----- FORM POLISH: consistent height, readable placeholders, helper text ----- */
.field input, .field textarea, .field select {
  font-size: 14.5px;
  line-height: 1.4;
  padding: 12px 13px;
  border-radius: 8px;
  border: 1px solid var(--border-2);
  transition: border-color 160ms var(--ease-standard), box-shadow 160ms var(--ease-standard);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-4); opacity: 1; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--slate-400); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(0,184,169,0.18);
  outline: none;
}
.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fg-1);
  letter-spacing: 0;
}
.field-help, .dropzone-help {
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-3);
}

/* ----- MOBILE OVERFLOW AUDIT ----- */
html, body { overflow-x: hidden; }
img, svg, video { max-width: 100%; }
.container { padding-left: clamp(20px, 4vw, 32px); padding-right: clamp(20px, 4vw, 32px); }
@media (max-width: 720px) {
  .hero-grid { padding: 56px 24px 56px !important; gap: 28px; }
  .hero-compact h1 { font-size: clamp(30px, 8vw, 40px); max-width: 100%; }
  .hero-compact .hero-sub { font-size: 15.5px; }
  .hero-rfq .rfq-card { max-width: 100% !important; }
  .footer-grid { gap: 28px !important; }
}

/* Ensure RFQ card fits inside hero column without spilling */
.hero-rfq .rfq-card { width: 100%; }

/* Subtle premium grid texture on light sections (very faint) */
.section-tint, .section.section-light {
  background-image:
    linear-gradient(0deg, rgba(15,23,42,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.018) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
}

/* Premium link underline weight in body copy */
.section p a, .quality-list a, .scope-list a {
  border-bottom: 1px solid rgba(0,160,150,0.35);
  color: var(--teal-700);
}
.section p a:hover { border-bottom-color: var(--teal-700); }


/* ---------- PARTS WE SOURCE — launch-ready refinement ---------- */
/* Lock 3×2 on desktop, 2×3 on tablet, 1-col on mobile */
.cat-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 960px) { .cat-grid-3 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 640px) { .cat-grid-3 { grid-template-columns: 1fr !important; } }

/* Image height per spec: 150–170px desktop */
.cat-img-photo-fixed { height: 160px; }
@media (max-width: 1100px) { .cat-img-photo-fixed { height: 150px; } }
@media (max-width: 640px)  { .cat-img-photo-fixed { height: 170px; } }

/* Card image background: cohesive light technical surface for cutouts */
.cat-img-photo {
  background: linear-gradient(160deg, #11253A 0%, #0A1B2D 100%);
}
.cat-img-photo img { object-fit: cover; object-position: center; }

/* Body equal heights + chip wrapping */
.cat-body-fixed { min-height: 132px; }
.cat-body-fixed .cat-tags { flex-wrap: wrap; row-gap: 4px; }
.cat-tag { white-space: nowrap; }

/* Hover: subtle 4px lift + teal border glow (no dramatic motion) */
.cat-card {
  transition:
    transform 220ms var(--ease-standard),
    box-shadow 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard);
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43,202,190,0.35);
  box-shadow:
    0 14px 32px rgba(0,0,0,0.32),
    0 0 0 1px rgba(43,202,190,0.20);
}

/* Mobile: keep cards compact */
@media (max-width: 640px) {
  .cat-body-fixed { min-height: 0; padding: 16px 18px 18px; }
  .cat-body-fixed .cat-tags { margin-top: 10px; padding-top: 0; }
}

/* ---------- RFQ success / error toast (inline, in-card) ---------- */
.rfq-toast {
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}
.rfq-toast-success {
  background: rgba(43, 202, 190, 0.08);
  border: 1px solid rgba(43, 202, 190, 0.35);
  color: var(--teal-700);
}
.rfq-toast-error {
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.30);
  color: #B91C1C;
}

/* ---------- RFQ inline submit status (success / error) ---------- */
.rfq-submit-success,
.rfq-submit-error {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid;
  animation: rfqStatusIn 180ms var(--ease-standard);
}
.rfq-submit-success {
  background: rgba(43, 202, 190, 0.10);
  border-color: rgba(43, 202, 190, 0.35);
  color: var(--teal-700, #0F766E);
}
.rfq-submit-success::before {
  content: '✓ ';
  font-weight: 700;
}
.rfq-submit-error {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #B91C1C;
}
@keyframes rfqStatusIn {
  from { opacity: 0; transform: translateY(-2px); }
  to   { opacity: 1; transform: translateY(0); }
}
.motion-reduced .rfq-submit-success,
.motion-reduced .rfq-submit-error { animation: none; }

/* Disabled submit button keeps the brand color but lowers opacity slightly. */
.rfq-submit[disabled] { opacity: 0.7; cursor: progress; }
.rfq-zoho-note { margin-top: 10px; font-size: 12px; color: var(--slate-500); text-align: center; }
.rfq-tabs-2 {
  grid-template-columns: repeat(2, 1fr);
  background: var(--slate-50, #F1F5F9);
  border: 1px solid var(--border-1);
  padding: 4px;
  border-radius: 10px;
}
.rfq-tabs-2 .rfq-tab {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--fg-2);
  background: transparent;
  transition: background 180ms var(--ease-standard), color 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard);
}
.rfq-tabs-2 .rfq-tab:hover { color: var(--fg-1); background: rgba(255,255,255,0.6); }
.rfq-tabs-2 .rfq-tab.is-active {
  background: #fff;
  color: var(--teal-700);
  box-shadow: 0 1px 2px rgba(15,23,42,0.06), inset 0 -2px 0 var(--teal-500);
}
.rfq-tabs-2 .rfq-tab::after { display: none; }

/* ---------- RFQ Submit panel: upload field (v3) ---------- */
.rfq-upload-field { margin-top: 4px; margin-bottom: 18px; }
.rfq-upload-label { font-size: 13px; font-weight: 600; color: var(--fg-1); margin-bottom: 8px; display: block; }
.rfq-upload-label .field-required { color: var(--danger, #DC2626); margin-left: 2px; }

.dropzone-v3 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px dashed var(--border-2);
  border-radius: var(--radius-lg);
  background: var(--slate-50, #F8FAFC);
  padding: 28px 20px;
  min-height: 148px;
  cursor: pointer;
  transition: border-color 180ms var(--ease-standard), background 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard);
}
.dropzone-v3:hover { border-color: var(--teal-500); background: rgba(43,202,190,0.05); }
.dropzone-v3:focus-within {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(43,202,190,0.18);
}
.dropzone-v3.is-drag { border-color: var(--teal-500); border-style: solid; background: rgba(43,202,190,0.08); }
.dropzone-v3.is-error { border-color: var(--danger, #DC2626); background: rgba(220,38,38,0.04); }
.dropzone-v3 .rfq-file-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.dropzone-v3 .dropzone-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-1);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-600);
  margin: 0 0 12px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.dropzone-v3 {
  min-height: 120px;
  padding: 18px 22px;
  gap: 4px;
}
.dropzone-v3 .dropzone-icon-wrap {
  width: 32px; height: 32px; margin-bottom: 2px;
}
.dropzone-v3 .dropzone-title { font-size: 14px; font-weight: 600; color: var(--fg-1); margin: 0; }
.dropzone-v3 .dropzone-title-mobile { display: none; }
.dropzone-v3 .dropzone-formats { font-size: 12px; color: #475569; margin-top: 0; line-height: 1.4; }

.rfq-files-error { margin-top: 8px; }

@media (max-width: 768px) {
  .dropzone-v3 .dropzone-title-desktop { display: none; }
  .dropzone-v3 .dropzone-title-mobile { display: block; }
  .dropzone-v3 { padding: 16px 14px; min-height: 116px; }
  .dropzone-v3 .dropzone-formats { font-size: 11.5px; text-align: center; }
}

/* ---------- RFQ card: tighter premium spacing ---------- */
.rfq-card-v2 { padding: 22px 22px 22px; }
.rfq-card-v2 .field { margin-top: 14px; }
.rfq-card-v2 .field input,
.rfq-card-v2 .field select { min-height: 44px; padding: 10px 12px; }
.rfq-card-v2 .field textarea { padding: 10px 12px; }
.rfq-card-v2 .rfq-field-notes textarea { min-height: 140px; }
.rfq-card-v2 .rfq-submit { min-height: 52px; }
.rfq-card-v2 .field-row { gap: 14px; }
@media (max-width: 768px) {
  .rfq-card-v2 .rfq-field-notes textarea { min-height: 150px; }
}

/* ---------- Notes textarea: comfortable for technical detail ---------- */
.rfq-card-v2 .rfq-field-notes textarea { min-height: 160px; resize: vertical; }
@media (max-width: 768px) {
  .rfq-card-v2 .rfq-field-notes textarea { min-height: 200px; }
}

/* ---------- Required asterisk ---------- */
.field label .field-required { color: var(--danger, #DC2626); margin-left: 2px; font-weight: 600; }


/* ---------- RFQ Track Job panel ---------- */
.rfq-track-panel {
  text-align: center;
  padding: 12px 8px 4px;
}
.rfq-track-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-1);
  margin: 8px 0 8px;
  letter-spacing: 0;
}
.rfq-track-body {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  max-width: 42ch;
  margin: 0 auto 14px;
}
.rfq-track-email {
  font-size: 14px;
  margin: 0 0 22px;
}
.rfq-track-email a {
  color: var(--teal-700);
  font-weight: 600;
  border-bottom: 1px solid rgba(43,202,190,0.4);
}
.rfq-track-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  max-width: 320px;
  margin: 0 auto;
}
.rfq-track-actions .btn { width: 100%; }
.rfq-track-cta { text-align: center; }

/* ── Thank-you page ─────────────────────────────────────────────────── */
.thankyou-card {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 56px 64px 48px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-1);
  text-align: center;
}
.thankyou-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.thankyou-heading {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--fg-1);
}
.thankyou-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-600);
  margin: 0 0 12px;
}
.thankyou-body a { color: var(--teal-600); text-decoration: underline; }
.thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.thankyou-actions .btn { width: 100%; justify-content: center; }
@media (min-width: 480px) {
  .thankyou-actions { flex-direction: row; flex-wrap: wrap; }
  .thankyou-actions .btn { width: auto; flex: 1 1 auto; }
}
@media (max-width: 600px) {
  .thankyou-card { padding: 40px 24px 36px; }
}

/* Top nav: pin solid, never collapse / shrink / hide */
.nav-static {
  position: fixed;
  top: 0; left: 0; right: 0; width: 100%;
  height: var(--nav-h) !important;
  min-height: var(--nav-h);
  z-index: 9999;
  background: #ffffff;
}
