/* ==========================================================================
   G-AXIS TRADING CO — Design System
   Deep Navy · Royal Blue · Silver · White · Subtle Gold
   ========================================================================== */

:root {
  /* Brand color tokens */
  --navy-950: #060d24;
  --navy-900: #0a1633;
  --navy-800: #102040;
  --navy-700: #16294f;
  --navy-600: #1f3a6e;
  --royal-700: #1d4ed8;
  --royal-600: #2563eb;
  --royal-500: #3b82f6;
  --royal-400: #60a5fa;
  --silver-100: #f6f8fb;
  --silver-200: #e8edf4;
  --silver-300: #c8d2e0;
  --silver-400: #9aa8bd;
  --gold-500: #c9a24b;
  --gold-300: #e3c887;
  --white: #ffffff;

  /* Semantic tokens */
  --bg: var(--white);
  --bg-soft: var(--silver-100);
  --ink: #14213b;
  --ink-soft: #45526b;
  --line: var(--silver-200);
  --error: #c0392b;
  --success: #1d8a4e;

  /* Type */
  --font-head: "Lexend", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;

  /* Rhythm */
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(10, 22, 51, 0.05), 0 3px 10px rgba(10, 22, 51, 0.04);
  --shadow-md: 0 2px 6px rgba(10, 22, 51, 0.06), 0 10px 26px rgba(10, 22, 51, 0.08);
  --shadow-lg: 0 4px 14px rgba(6, 13, 36, 0.14), 0 16px 44px rgba(6, 13, 36, 0.18);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.6em;
  color: var(--navy-900);
  letter-spacing: -0.015em;
}

p { margin: 0 0 1em; }

a { color: var(--royal-600); text-decoration: none; }

button { font: inherit; cursor: pointer; }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 200;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

.container {
  width: min(100% - 2.5rem, 1180px);
  margin-inline: auto;
}
.container--narrow { width: min(100% - 2.5rem, 820px); }

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy {
  background: var(--navy-950);
  color: var(--silver-300);
}
.section--navy h2, .section--navy h3 { color: var(--white); }

/* ---------- Section headers ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
  text-align: center;
}
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--royal-600);
  margin-bottom: 0.9rem;
}
.section-eyebrow--gold { color: var(--silver-400); }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.section-sub { color: var(--ink-soft); font-size: 1.1rem; margin: 0; }
.section-head--light .section-sub { color: var(--silver-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.18s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--royal-600);
  color: var(--white);
}
.btn-primary:hover { background: var(--royal-700); }

.btn-gold {
  background: var(--white);
  color: var(--navy-900);
}
.btn-gold:hover { background: var(--silver-200); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); }
.btn-ghost--dark { color: var(--silver-300); border-color: rgba(255, 255, 255, 0.25); }
.btn-ghost--dark:hover { color: var(--white); }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: var(--silver-100);
  border: 1px solid var(--silver-200);
  color: var(--navy-700);
  white-space: nowrap;
}
.chip--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  padding: 0.15rem 0.5rem;
}
.chip--cn, .chip--de {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--silver-300);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--royal-600);
}
.text-link svg { width: 16px; height: 16px; transition: transform 0.18s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* ==========================================================================
   TOP BAR + HEADER
   ========================================================================== */
.topbar {
  background: var(--navy-950);
  color: var(--silver-300);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  padding-block: 0.3rem;
}
.topbar-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}
.topbar-note svg { width: 14px; height: 14px; color: var(--silver-400); flex-shrink: 0; }
.topbar-links { display: flex; align-items: center; gap: 0.9rem; }
.topbar-links a { color: var(--silver-300); transition: color 0.15s; }
.topbar-links a:hover { color: var(--white); }
.topbar-divider { width: 1px; height: 14px; background: rgba(255, 255, 255, 0.2); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 13, 36, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  color: var(--white);
}
.brand-tagline {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--silver-400);
}

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--silver-300);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.18s var(--ease);
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--royal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after, .site-nav a.is-current::after { transform: scaleX(1); }
.site-nav a.is-current { color: var(--white); }

.nav-cta {
  background: var(--royal-600);
  color: var(--white) !important;
  padding: 0.6rem 1.3rem !important;
  border-radius: var(--radius-sm);
  font-weight: 500 !important;
  transition: background-color 0.15s var(--ease);
}
.nav-cta:hover { background: var(--royal-700); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Fill the first screen: viewport minus topbar (~40px) + header (~76px) + buffer */
  min-height: calc(100svh - 120px);
  background: var(--navy-950);
  color: var(--silver-300);
  padding: clamp(3rem, 6vw, 5.5rem) 0 0;
}
.hero-inner { margin-block: auto; }
.snapshot-mode .hero { min-height: 0; }
.hero-map {
  position: absolute;
  inset: -4% -6% auto;
  height: 110%;
  opacity: 0.45;
  pointer-events: none;
}
.hero-map svg { width: 100%; height: 100%; }
.hero-glow { display: none; }
.hero-inner { position: relative; max-width: 880px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver-400);
  margin-bottom: 1.4rem;
}
.eyebrow-line { width: 44px; height: 1px; background: var(--royal-500); }

.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-accent { color: var(--royal-400); }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 640px;
  color: var(--silver-300);
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  list-style: none;
  padding: 0; margin: 0;
  font-size: 0.95rem;
}
.hero-trust li { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust svg { width: 17px; height: 17px; color: var(--royal-400); flex-shrink: 0; }

/* Metrics band */
.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.metric {
  background: rgba(10, 22, 51, 0.72);
  padding: 1.5rem 1.2rem;
  text-align: center;
}
.metric-value {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.metric-label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-400);
}

/* Compact hero on shorter desktop screens so the marquee stays on the first screen */
@media (min-width: 881px) and (max-height: 1000px) {
  .hero { padding-top: 2rem; }
  .hero-eyebrow { margin-bottom: 1rem; }
  .hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 1rem; }
  .hero-sub { margin-bottom: 1.6rem; }
  .hero-actions { margin-bottom: 1.6rem; }
  .metrics { margin-top: 1.8rem; }
  .metric { padding: 1.1rem 1rem; }
  .metric-value { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
  .hero .ticker { margin-top: 1.6rem; }
}

/* ---------- Ticker (country marquee, anchored at the base of the hero) ---------- */
.ticker {
  position: relative;
  margin-top: clamp(2.2rem, 4.5vw, 3.5rem);
  background: rgba(6, 13, 36, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 0.85rem 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-400);
  white-space: nowrap;
}
.tick-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--silver-400); opacity: 0.6; flex-shrink: 0; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   DIVISIONS
   ========================================================================== */
.division-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.division-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--silver-300);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.division-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.18);
}
.division-card h3 { color: var(--white); font-size: 1.45rem; }
.division-card > p { color: var(--silver-300); }
.division-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.4rem 0.95rem;
  margin-bottom: 1.4rem;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--royal-400);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.28);
}
.division-tag svg { width: 15px; height: 15px; }
.division-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}
.division-list li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.97rem;
}
.division-list li:last-child { border-bottom: none; }
.division-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--royal-500);
}
.division-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
}
.division-link svg { width: 17px; height: 17px; transition: transform 0.2s var(--ease); }
.division-card:hover .division-link svg { transform: translateX(5px); }

/* ==========================================================================
   IMPORT DIVISION
   ========================================================================== */
.import-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.import-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: transform 0.22s var(--ease), background-color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.import-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(96, 165, 250, 0.35);
}
.import-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: var(--radius-sm);
  color: var(--royal-400);
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.25);
}
.import-icon svg { width: 26px; height: 26px; }
.import-card h3 { color: var(--white); font-size: 1.12rem; }
.import-card p { font-size: 0.95rem; color: var(--silver-300); margin-bottom: 1.1rem; }
.origin-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }

.section-cta { text-align: center; margin-top: 3rem; }
.section-cta-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--silver-400);
}

/* ==========================================================================
   EXPORT DIVISION
   ========================================================================== */
.export-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.export-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.export-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.export-media { position: relative; min-height: 220px; background: var(--navy-900); }
.export-media img, .export-media video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.export-illustration { position: absolute; inset: 0; width: 100%; height: 100%; }
.export-body { padding: 1.7rem 1.6rem; display: flex; flex-direction: column; gap: 0.2rem; }
.export-body h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.export-body p { font-size: 0.95rem; color: var(--ink-soft); }
.market-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.export-body .text-link { margin-top: auto; }

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.filter-btn {
  padding: 0.62rem 1.5rem;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--silver-300);
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.18s var(--ease);
}
.filter-btn:hover { border-color: var(--royal-500); color: var(--royal-600); }
.filter-btn.is-active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.portfolio-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-900);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.portfolio-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.portfolio-item img, .portfolio-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item.is-hidden { display: none; }

.portfolio-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 2.2rem 1.3rem 1.2rem;
  background: linear-gradient(to top, rgba(6, 13, 36, 0.92) 20%, rgba(6, 13, 36, 0.55) 60%, transparent);
  color: var(--white);
  pointer-events: none;
}
.portfolio-overlay--video {
  position: static;
  background: var(--navy-950);
  padding: 0.9rem 1.3rem 1rem;
}
.portfolio-item--video {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
}
.portfolio-item--video video {
  aspect-ratio: 4 / 3;
  height: auto;
  background: var(--navy-950);
}
.portfolio-cat {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal-400);
}
.portfolio-overlay strong {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3;
}
.portfolio-markets {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--silver-300);
}

/* Crab grading */
.grading {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-sm);
}
.grading-head { max-width: 560px; margin-bottom: 1.8rem; }
.grading-head h3 { font-size: 1.35rem; }
.grading-head p { color: var(--ink-soft); margin: 0; }
.grading-tables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.grading-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.5rem;
  background: var(--silver-100);
}
.grading-card h4 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.02rem;
  margin-bottom: 0.9rem;
}
.grade-dot { width: 11px; height: 11px; border-radius: 50%; }
.grade-dot--green { background: #2e8b57; box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.18); }
.grade-dot--red { background: #c0533a; box-shadow: 0 0 0 3px rgba(192, 83, 58, 0.18); }
.grading-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.grading-card th {
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.45rem 0.4rem;
  border-bottom: 2px solid var(--silver-300);
}
.grading-card td {
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--silver-200);
  font-variant-numeric: tabular-nums;
}
.grading-card tbody tr:last-child td { border-bottom: none; }
.grading-card td:first-child { font-weight: 600; color: var(--navy-800); }

/* ==========================================================================
   GLOBAL NETWORK MAP
   ========================================================================== */
.map-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.map-btn {
  padding: 0.55rem 1.4rem;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--silver-300);
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 500;
  transition: all 0.18s var(--ease);
}
.map-btn:hover { border-color: var(--white); color: var(--white); }
.map-btn.is-active {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-900);
}

.map-wrap {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(6, 13, 36, 0.55);
  padding: clamp(0.6rem, 2vw, 1.5rem);
  overflow: hidden;
}
.world-map svg { width: 100%; height: auto; }

.route {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 6 7;
  opacity: 0.85;
  animation: route-flow 1.6s linear infinite;
  transition: opacity 0.25s var(--ease);
}
.route--export { stroke: var(--royal-500); }
.route--import { stroke: var(--gold-500); }
.route.is-dim { opacity: 0.07; animation-play-state: paused; }
@keyframes route-flow { to { stroke-dashoffset: -13; } }

.city-dot { transition: opacity 0.25s var(--ease); cursor: pointer; }
.city-dot.is-dim { opacity: 0.25; }
.city-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  fill: var(--silver-300);
  pointer-events: none;
}
.hub-pulse {
  animation: hub-pulse 2.4s var(--ease) infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes hub-pulse {
  0% { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}

.map-tooltip {
  position: absolute;
  z-index: 5;
  max-width: 240px;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.45;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
}
.map-tooltip.is-visible { opacity: 1; transform: translateY(0); }
.map-tooltip strong { font-family: var(--font-head); display: block; color: var(--navy-900); }

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  padding: 1rem 0.5rem 0.2rem;
  font-size: 0.84rem;
  color: var(--silver-300);
}
.legend-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.legend-line { width: 26px; height: 0; border-top: 2.5px dashed; border-radius: 2px; }
.legend-line--gold { border-color: var(--gold-500); }
.legend-line--blue { border-color: var(--royal-500); }
.legend-hub {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 0 4px rgba(227, 200, 135, 0.25);
}

.network-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
}
.network-list li {
  background: rgba(10, 22, 51, 0.7);
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.network-list strong {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--white);
  font-size: 0.97rem;
}
.network-list span { font-size: 0.82rem; color: var(--silver-400); }

/* ==========================================================================
   WHY G-AXIS
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}
.why-icon {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-sm);
  color: var(--royal-600);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
}
.why-icon svg { width: 25px; height: 25px; }
.why-card h3 { font-size: 1.05rem; }
.why-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 7%; right: 7%;
  height: 1px;
  background: var(--silver-300);
}
.timeline-step {
  position: relative;
  text-align: center;
  padding: 0 0.7rem;
}
.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--royal-600);
  margin-bottom: 0.7rem;
}
.step-icon {
  width: 58px; height: 58px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--silver-300);
  color: var(--navy-800);
  position: relative;
  z-index: 1;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.timeline-step:hover .step-icon {
  border-color: var(--royal-500);
  color: var(--royal-600);
  transform: scale(1.07);
}
.step-icon svg { width: 25px; height: 25px; }
.timeline-step h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.timeline-step p { font-size: 0.84rem; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   PARTNERS & TESTIMONIALS
   ========================================================================== */
.partner-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}
.partner-slot {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 0.9rem;
  border: 1.5px dashed var(--silver-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--silver-400);
  background: var(--silver-100);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.testimonial-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.quote-mark { width: 34px; height: 34px; color: var(--royal-600); margin-bottom: 0.8rem; }
.testimonial-placeholder { color: var(--silver-400); font-style: italic; font-size: 0.97rem; }
.testimonial-card footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.1rem;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--silver-200);
  flex-shrink: 0;
}
.testimonial-card footer strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-900);
}
.testimonial-card footer em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   INSIGHTS
   ========================================================================== */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.insight-tag {
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--royal-600);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.insight-card h3 { font-size: 1.05rem; line-height: 1.35; }
.insight-card p { font-size: 0.9rem; color: var(--ink-soft); }
.insight-meta {
  margin-top: auto;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item[open] { border-color: rgba(37, 99, 235, 0.35); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  min-height: 48px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  width: 19px; height: 19px;
  flex-shrink: 0;
  color: var(--royal-600);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p {
  padding: 0 1.4rem 1.2rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ==========================================================================
   CONTACT + FORM
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-intro h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.contact-intro > p { color: var(--silver-300); font-size: 1.08rem; }

.contact-points {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-points li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-points svg {
  width: 22px; height: 22px;
  color: var(--royal-400);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.contact-points span { display: flex; flex-direction: column; }
.contact-points strong {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-400);
}
.contact-points a { color: var(--white); transition: color 0.15s; }
.contact-points a:hover { color: var(--royal-400); }

.contact-paths { display: flex; flex-direction: column; gap: 0.7rem; }
.path-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver-300);
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.path-card:hover {
  border-color: var(--royal-500);
  background: rgba(59, 130, 246, 0.08);
}
.path-card strong { font-family: var(--font-head); font-weight: 500; color: var(--white); }
.path-card span { font-size: 0.85rem; }

/* Form */
.rfq-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-progress {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.progress-step {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--silver-300);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--silver-400);
  transition: all 0.25s var(--ease);
}
.progress-step.is-active {
  border-color: var(--royal-600);
  background: var(--royal-600);
  color: var(--white);
}
.progress-step.is-done {
  border-color: var(--royal-600);
  color: var(--royal-600);
}
.progress-bar {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: var(--silver-200);
  overflow: hidden;
}
.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: var(--royal-600);
  transition: width 0.35s var(--ease);
}
.form-step-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}

.form-step { display: none; border: none; padding: 0; margin: 0; }
.form-step.is-active { display: block; animation: step-in 0.3s var(--ease); }
@keyframes step-in {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}
.form-step legend {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 1.2rem;
  padding: 0;
}

.radio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.radio-card { position: relative; display: block; cursor: pointer; }
.radio-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
}
.radio-card span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  min-height: 48px;
  border: 1.5px solid var(--silver-300);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--ink-soft);
  transition: all 0.18s var(--ease);
}
.radio-card strong { font-family: var(--font-head); font-size: 0.95rem; color: var(--navy-900); }
.radio-card input:checked + span {
  border-color: var(--royal-600);
  background: rgba(37, 99, 235, 0.06);
  box-shadow: 0 0 0 1px var(--royal-600);
}
.radio-card input:focus-visible + span {
  outline: 3px solid var(--royal-500);
  outline-offset: 2px;
}

.field { margin-bottom: 1.2rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 0.4rem;
}
.req { color: var(--error); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.78rem 0.95rem;
  min-height: 48px;
  border: 1.5px solid var(--silver-300);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--royal-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: var(--error); }
.field-error {
  display: none;
  margin: 0.4rem 0 0;
  font-size: 0.84rem;
  color: var(--error);
}
.field-error.is-visible { display: block; }
.field-help {
  margin: 0.4rem 0 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
}
.form-nav .btn:only-child { margin-left: auto; }
.form-nav .btn-ghost--dark {
  color: var(--ink-soft);
  border-color: var(--silver-300);
}
.form-nav .btn-ghost--dark:hover {
  color: var(--navy-900);
  border-color: var(--navy-800);
  background: var(--silver-100);
}
.form-privacy {
  margin: 1.2rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

.form-success { text-align: center; padding: 1.5rem 0.5rem; }
.form-success svg {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  color: var(--success);
}
.form-success h3 { font-size: 1.3rem; }
.form-success p { color: var(--ink-soft); }
.form-success .btn-ghost {
  color: var(--navy-800);
  border-color: var(--silver-300);
  margin-top: 0.8rem;
}
.form-success .btn-ghost:hover { border-color: var(--navy-800); background: var(--silver-100); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: var(--silver-400);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 2.2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p { font-size: 0.92rem; margin: 1.1rem 0 0; max-width: 320px; }
.footer-col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-300);
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: var(--silver-400);
  font-size: 0.92rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-address { font-size: 0.92rem; margin: 0.3rem 0 0; }

.footer-seo {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-seo p {
  font-size: 0.84rem;
  color: var(--silver-400);
  opacity: 0.8;
  max-width: 900px;
  margin: 0;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 1.6rem;
  font-size: 0.84rem;
}
.footer-bottom p { margin: 0; }

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
.wa-float svg { width: 30px; height: 30px; }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: calc(1.4rem + 56px + 0.8rem); /* stacked above the WhatsApp float */
  z-index: 90;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--silver-300);
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s, background-color 0.15s var(--ease);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover { background: var(--silver-100); border-color: var(--navy-800); }
.to-top svg { width: 22px; height: 22px; }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .route { animation: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .import-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 2rem 0; }
  .timeline::before { display: none; }
  .partner-band { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .network-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .topbar-links { display: none; }
  .topbar-inner { justify-content: center; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.25rem 1.2rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 0.85rem 0.4rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .site-nav a::after { display: none; }
  .nav-cta {
    margin-top: 0.9rem;
    justify-content: center;
    border-bottom: none !important;
  }

  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:last-child { grid-column: 1 / -1; }
  .division-grid { grid-template-columns: 1fr; }
  .export-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .grading-tables { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .map-legend { font-size: 0.78rem; gap: 0.6rem 1rem; }
  .city-label { font-size: 17px; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .import-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .export-card { grid-template-columns: 1fr; }
  .export-media { min-height: 190px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .radio-cards { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 1.6rem; }
  .timeline-step { text-align: left; display: grid; grid-template-columns: 58px 1fr; gap: 0 1rem; }
  .step-num { grid-column: 2; margin-bottom: 0.2rem; }
  .step-icon { grid-row: 1 / 4; margin: 0; }
  .timeline-step h3, .timeline-step p { grid-column: 2; }
  .partner-band { grid-template-columns: repeat(2, 1fr); }
  .network-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-nav { flex-direction: column-reverse; }
  .form-nav .btn { width: 100%; justify-content: center; }
  .wa-float { right: 1rem; bottom: 1rem; }
  .to-top { right: 1rem; bottom: calc(1rem + 56px + 0.7rem); }
}
