/* ===================================================================
   Edward Transit Express Group — ete-ai.com
   New template (2026): enterprise-logistics aesthetic
   Ink/graphite base · blue + amber accents · Space Grotesk + Inter
   =================================================================== */

:root {
  /* Ink / graphite */
  --ink-950: #070d18;
  --ink-900: #0a1120;
  --ink-800: #0f1a2e;
  --ink-700: #16243d;
  --ink-600: #1f3357;

  /* Brand blue */
  --brand-700: #1740b0;
  --brand-600: #1d4ed8;
  --brand-500: #2563eb;
  --brand-400: #3b82f6;
  --brand-100: #dbe7ff;
  --brand-50: #eef4ff;

  /* Amber accent */
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-100: #fff0d6;

  /* Hazard */
  --danger: #dc2626;
  --danger-100: #fee2e2;

  /* Neutrals */
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #f0f3f9;
  --line: #e4e9f2;
  --line-strong: #d3dbe8;
  --text: #0b1322;
  --muted: #54637a;
  --muted-light: #8a98ad;
  --on-dark: #eef3fb;
  --on-dark-muted: #9fb0c9;

  /* Type */
  --font-display: "Space Grotesk", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(11, 19, 34, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 19, 34, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 19, 34, 0.14);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
img, svg { max-width: 100%; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-600);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--amber-500);
  border-radius: 2px;
}

/* Reveal is a progressive enhancement: hidden state only applies when JS is
   confirmed (html.js-reveal). Without JS the content is fully visible. */
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
html.js-reveal .reveal.in { opacity: 1; transform: none; }

/* ============================== Buttons ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}
.btn-primary:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37, 99, 235, 0.34); }
.btn-amber {
  background: var(--amber-500);
  color: #1a1206;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}
.btn-amber:hover { background: var(--amber-400); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--brand-500); color: var(--brand-600); }
.btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}
.btn-light:hover { background: rgba(255, 255, 255, 0.16); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.875rem; }

/* ============================== Top bar ============================== */
.topbar {
  background: var(--ink-950);
  color: var(--on-dark-muted);
  font-size: 0.8125rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}
.topbar-creds { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-creds span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-creds svg { width: 15px; height: 15px; color: var(--amber-400); }
.topbar-contact { display: flex; align-items: center; gap: 18px; }
.topbar-contact a { color: var(--on-dark); font-weight: 500; }
.topbar-contact a:hover { color: var(--amber-400); }

/* ============================== Nav ============================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition), background var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); background: rgba(255, 255, 255, 0.95); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink-700), var(--ink-950));
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.logo-text small { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-light); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > li:not(.nav-actions) > a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
}
.nav-links > li:not(.nav-actions) > a:hover { color: var(--text); }
.nav-links > li:not(.nav-actions) > a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--amber-500); transition: width var(--transition);
}
.nav-links > li:not(.nav-actions) > a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ============================== Hero ============================== */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 80% -10%, var(--ink-700), transparent 60%),
              linear-gradient(160deg, var(--ink-900) 0%, var(--ink-950) 100%);
  color: var(--on-dark);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 96px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem; color: var(--on-dark); margin-bottom: 26px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); animation: ping 2.2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); } 70% { box-shadow: 0 0 0 10px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--amber-400), var(--brand-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 1.15rem; color: var(--on-dark-muted); max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.hero-trust .t-item .t-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; display: block; }
.hero-trust .t-item .t-lab { font-size: 0.8rem; color: var(--on-dark-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Hero widget */
.widget {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.widget-tabs { display: flex; gap: 6px; padding: 6px; }
.widget-tab {
  flex: 1; padding: 11px; border-radius: 12px; border: none; cursor: pointer;
  background: transparent; color: var(--on-dark-muted);
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
}
.widget-tab svg { width: 17px; height: 17px; }
.widget-tab.active { background: #fff; color: var(--ink-900); box-shadow: var(--shadow-sm); }
.widget-body { background: #fff; border-radius: 16px; padding: 22px; }
.widget-panel { display: none; }
.widget-panel.active { display: block; animation: fade 0.3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.widget-panel h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--text); }
.widget-panel p.hint { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.92rem; color: var(--text); background: var(--surface);
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px var(--brand-50);
}
.widget .btn { width: 100%; margin-top: 4px; }
.widget-foot { font-size: 0.75rem; color: var(--muted-light); text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.widget-foot svg { width: 13px; height: 13px; color: var(--brand-500); }

/* ============================== Credentials strip ============================== */
.creds-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.cred {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 24px; border-right: 1px solid var(--line);
}
.cred:last-child { border-right: none; }
.cred-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--brand-50); color: var(--brand-600);
  display: grid; place-items: center;
}
.cred-icon svg { width: 24px; height: 24px; }
.cred-text strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--text); }
.cred-text span { font-size: 0.85rem; color: var(--muted); }

/* ============================== Section base ============================== */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin: 14px 0 14px; }
.section-head p { font-size: 1.1rem; color: var(--muted); }

/* ============================== Services ============================== */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: var(--brand-500); transform: scaleY(0); transform-origin: top; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleY(1); }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--brand-50); color: var(--brand-600);
  display: grid; place-items: center; margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; margin-bottom: 9px; }
.service-card p { color: var(--muted); font-size: 0.94rem; }
.service-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.service-features li {
  font-size: 0.78rem; font-weight: 600; padding: 5px 10px; border-radius: 7px;
  background: var(--brand-50); color: var(--brand-700);
}

/* Featured (AI) card */
.service-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--ink-800), var(--ink-950));
  color: var(--on-dark); border: none;
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start;
}
.service-card.featured::after { background: var(--amber-500); }
.service-card.featured .service-icon { background: rgba(245, 158, 11, 0.16); color: var(--amber-400); }
.service-card.featured h3 { color: #fff; font-size: 1.4rem; }
.service-card.featured p { color: var(--on-dark-muted); }
.service-card.featured .service-features { border-color: rgba(255, 255, 255, 0.14); }
.service-card.featured .service-features li { background: rgba(255, 255, 255, 0.1); color: #fff; }
.ai-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber-400); margin-bottom: 8px;
}

/* Warning (hazmat) card */
.service-card.warning::after { background: var(--danger); transform: scaleY(1); }
.service-card.warning .service-icon { background: var(--danger-100); color: var(--danger); }
.service-card.warning .service-features li { background: var(--danger-100); color: var(--danger); }

/* ============================== Trade lanes ============================== */
.lanes { background: var(--surface); }
.lanes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lane-card {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px;
  background: var(--surface-2); transition: var(--transition);
}
.lane-card:hover { background: var(--surface); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.lane-route { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; }
.lane-route .arrow { color: var(--amber-500); }
.lane-meta { font-size: 0.85rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }
.lane-meta span { display: inline-flex; align-items: center; gap: 6px; }
.lane-meta svg { width: 15px; height: 15px; color: var(--brand-500); }
.lane-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-600); }

/* ============================== AI / Why ============================== */
.expect { background: var(--surface); }
.expect-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.expect-grid h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); line-height: 1.12; margin: 12px 0 16px; }
.expect-grid > div:first-child p { color: var(--muted); font-size: 1rem; line-height: 1.6; max-width: 36ch; }
.expect-points { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 32px; }
.expect-point { display: flex; gap: 14px; align-items: flex-start; }
.expect-point .check {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: #16a34a; color: #fff; display: grid; place-items: center; margin-top: 2px;
}
.expect-point .check svg { width: 15px; height: 15px; }
.expect-point h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 5px; font-size: 1.05rem; }
.expect-point p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* ============================== About ============================== */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-content p { color: var(--muted); margin-bottom: 16px; }
.credentials { display: flex; gap: 36px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.credential .c-lab { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-light); }
.credential .c-val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--brand-600); }
.about-features { display: flex; flex-direction: column; gap: 16px; }
.feature-card {
  position: relative; padding: 24px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md); transition: var(--transition);
}
.feature-card:hover { border-color: var(--brand-400); box-shadow: var(--shadow-md); }
.feature-card .f-num { position: absolute; top: 18px; right: 22px; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--surface-2); }
.feature-card h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; max-width: 320px; }

/* ============================== Process ============================== */
.process { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 26px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface-2); }
.step .s-num {
  width: 40px; height: 40px; border-radius: 11px; background: var(--ink-900); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; margin-bottom: 16px;
}
.step h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ============================== Contact ============================== */
.contact { background: linear-gradient(160deg, var(--ink-900), var(--ink-950)); color: var(--on-dark); position: relative; }
.contact .section-head h2 { color: #fff; }
.contact .section-head p { color: var(--on-dark-muted); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md); padding: 24px;
}
.contact-card.broker { background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(245, 158, 11, 0.05)); border-color: rgba(245, 158, 11, 0.3); }
.loc-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-400); margin-bottom: 12px; }
.loc-badge svg { width: 16px; height: 16px; }
.contact-card.broker .loc-badge { color: var(--amber-400); }
.contact-card h3 { font-family: var(--font-body); font-weight: 700; color: #fff; font-size: 1.15rem; margin-bottom: 14px; }
.contact-card address { font-style: normal; }
.addr-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 9px; color: var(--on-dark-muted); font-size: 0.9rem; }
.addr-line svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--on-dark-muted); }
.addr-line a { color: var(--on-dark); font-weight: 500; }
.addr-line a:hover { color: var(--amber-400); }

.quote-box { background: #fff; border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-lg); }
.quote-box h3 { color: var(--text); font-size: 1.4rem; margin-bottom: 6px; }
.quote-box > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.quote-box .btn { width: 100%; margin-top: 6px; }
.quote-note { font-size: 0.78rem; color: var(--muted-light); margin-top: 12px; text-align: center; }

/* ============================== Footer ============================== */
.footer { background: var(--ink-950); color: var(--on-dark-muted); padding: 64px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer .logo-text strong { color: #fff; }
.footer .logo-text small { color: var(--on-dark-muted); }
.footer-brand p { margin-top: 16px; max-width: 320px; font-size: 0.9rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--on-dark); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; }
.footer-col a:hover { color: var(--amber-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 26px; font-size: 0.82rem; color: var(--muted-light); flex-wrap: wrap; }

/* ============================== Responsive ============================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 56px 0 72px; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .cred:nth-child(2) { border-right: none; }
  .cred { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: span 2; grid-template-columns: 1fr; }
  .lanes-grid { grid-template-columns: 1fr; }
  .expect-grid, .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: 82%; max-width: 340px; height: 100vh;
    background: var(--surface); flex-direction: column; align-items: flex-start;
    padding: 92px 28px 28px; box-shadow: -10px 0 50px rgba(0,0,0,0.18);
    transform: translateX(100%); transition: transform var(--transition);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links > li > a { font-size: 1.1rem; }
  .nav-actions .btn-track { display: none; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .expect-points { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-trust { gap: 22px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .credentials { flex-direction: column; gap: 18px; }
}

/* Trade & policy updates (White House fact sheets) */
.updates { background: var(--bg); }
.updates-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.updates-loading { color: var(--muted); font-size: 0.95rem; }
.update-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.update-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-400);
}
.update-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber-600);
}
.update-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  flex: 1;
}
.update-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-600);
}
.update-go svg { width: 16px; height: 16px; }
.updates-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.updates-foot .btn-outline {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.updates-foot .btn-outline:hover {
  border-color: var(--brand-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.updates-foot .btn-outline svg { width: 16px; height: 16px; margin-left: 6px; }
.updates-updated { font-size: 0.82rem; color: var(--muted-light); }

/* Testimonials */
.testimonials { background: var(--surface); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 8px;
}
.testi-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.testi-stars { color: var(--amber-500); letter-spacing: 2px; font-size: 1.05rem; }
.testi-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text);
}
.testi-card figcaption { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.testi-name { font-weight: 700; }
.testi-role { font-size: 0.85rem; color: var(--muted); }

/* FAQ */
.faq { background: var(--bg); }
.faq-list {
  max-width: 820px;
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
  transition: color var(--transition-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand-500);
  transition: transform var(--transition);
}
.faq-item[open] summary { color: var(--brand-600); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--brand-600); }
.faq-body { padding: 0 22px 20px; }
.faq-body p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }

/* Contact form: honeypot + status */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.form-status { margin: 14px 0 0; font-size: 0.9rem; line-height: 1.5; min-height: 1.2em; }
.form-status.success { color: #16a34a; font-weight: 600; }
.form-status.error { color: var(--danger); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html.js-reveal .reveal { opacity: 1 !important; transform: none !important; }
}
