:root {
  --navy: #092743;
  --navy-2: #163e5c;
  --green: #087a59;
  --green-2: #16936d;
  --lime: #67b84e;
  --text: #102c43;
  --muted: #617381;
  --muted-2: #82909a;
  --white: #ffffff;
  --surface: #f8fbfa;
  --surface-2: #f5f8fb;
  --line: #e1e9e5;
  --line-strong: #cedbd5;
  --shadow-xs: 0 1px 2px rgba(9,39,67,.04);
  --shadow-sm: 0 8px 24px rgba(9,39,67,.06);
  --shadow-md: 0 18px 44px rgba(9,39,67,.09);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
::selection { background: rgba(8,122,89,.14); color: var(--navy); }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 88px 0; position: relative; }
.section-sm { padding: 58px 0; }
.section-soft { background: var(--surface); }
.section-blue { background: var(--surface-2); }
.narrow { max-width: 760px; }
.center { text-align: center; margin-inline: auto; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  padding: 10px 14px; border-radius: 8px;
  background: var(--navy); color: #fff; font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(225,233,229,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(9,39,67,.055); }
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { flex: 0 0 auto; width: 190px; display: flex; align-items: center; }
.brand img { width: 190px; height: 50px; object-fit: contain; object-position: left center; }
.nav-wrap { display: flex; align-items: center; gap: 18px; }
.primary-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link, .nav-trigger {
  min-height: 42px; padding: 0 10px;
  border: 0; border-radius: 8px; background: transparent;
  display: inline-flex; align-items: center; gap: 5px;
  color: #39536a; font-size: .875rem; font-weight: 650;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
}
.nav-link:hover, .nav-trigger:hover,
.nav-link.active, .nav-trigger.active { color: var(--green); background: #f4f9f6; }
.chevron { font-size: 1rem; line-height: 1; transform-origin: center; transition: transform .18s ease; }
.nav-item.open .chevron { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: -8px;
  width: 300px; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.nav-item.open .dropdown,
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: grid; grid-template-columns: 34px 1fr; gap: 10px;
  padding: 10px; border-radius: 10px;
  transition: background .16s ease;
}
.dropdown a:hover { background: var(--surface); }
.dropdown-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: #eef7f2; color: var(--green); font-size: .75rem; font-weight: 800;
}
.dropdown strong { display: block; font-size: .88rem; line-height: 1.3; }
.dropdown small { display: block; margin-top: 2px; color: var(--muted); font-size: .75rem; line-height: 1.35; }
.header-cta {
  min-height: 42px; padding: 0 15px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; font-size: .84rem; font-weight: 750;
  transition: transform .18s ease, background .18s ease;
}
.header-cta:hover { background: #0d3558; transform: translateY(-1px); }
.menu-toggle {
  display: none; width: 44px; height: 44px; padding: 10px;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px; margin: 4px 0;
  border-radius: 99px; background: var(--navy); transition: .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-cta { display: none; }

/* Type */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--green); font-size: .69rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em;
}
.kicker::before { content: ""; width: 20px; height: 2px; border-radius: 99px; background: var(--green); }
h1, h2, h3, h4 { color: var(--navy); }
h1, h2, h3 { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 5.2vw, 5.45rem);
  line-height: .98; letter-spacing: -.052em; font-weight: 720;
}
h2 {
  font-size: clamp(2.1rem, 3.55vw, 3.55rem);
  line-height: 1.04; letter-spacing: -.04em; font-weight: 720;
}
h3 { font-size: 1.18rem; line-height: 1.24; letter-spacing: -.018em; }
p { margin-top: 0; }
.lead { max-width: 740px; color: var(--muted); font-size: clamp(1.03rem, 1.4vw, 1.18rem); }
.section-heading { margin-bottom: 36px; }
.section-heading h2 { margin: 12px 0 14px; }
.section-heading p { max-width: 720px; margin-bottom: 0; color: var(--muted); }

/* Buttons */
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.btn {
  min-height: 46px; padding: 0 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 10px;
  font-size: .9rem; font-weight: 750; cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 7px 18px rgba(8,122,89,.14); }
.btn-primary:hover { background: #066e50; box-shadow: 0 10px 22px rgba(8,122,89,.18); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #0c3558; }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--line-strong); }
.btn-outline:hover { border-color: #a8bcb3; background: var(--surface); }
.btn-ghost { padding-inline: 0; color: var(--green); }

/* Hero */
.hero { min-height: 660px; padding: 78px 0 64px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; width: 440px; height: 440px; right: -210px; top: -210px;
  border-radius: 50%; background: radial-gradient(circle, rgba(103,184,78,.10), transparent 68%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; margin: 14px 0 22px; }
.hero-copy h1 em { color: var(--green); font-style: normal; }
.hero-copy .lead { max-width: 680px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: #526878; font-size: .78rem;
}
.hero-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-2); }

.trade-canvas {
  position: relative; min-height: 480px; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #fff 0%, #f7fbf9 60%, #f7f9fb 100%);
  box-shadow: var(--shadow-sm);
}
.trade-canvas::before {
  content: ""; position: absolute; inset: auto -130px -170px auto;
  width: 330px; height: 330px; border: 1px solid rgba(8,122,89,.09); border-radius: 50%;
}
.trade-gridline {
  position: absolute; inset: 0; opacity: .55;
  background-image: linear-gradient(rgba(9,39,67,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(9,39,67,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, #000, transparent 95%);
}
.trade-route { position: absolute; inset: 54px 38px 38px; }
.trade-route svg { width: 100%; height: 100%; overflow: visible; }
.route-line { fill: none; stroke: url(#routeGradient); stroke-width: 2; stroke-dasharray: 7 8; animation: dash 18s linear infinite; }
.route-node { fill: #fff; stroke: var(--green); stroke-width: 2; }
.route-core { fill: var(--navy); }
.canvas-brand { position: absolute; top: 26px; left: 28px; display: flex; align-items: center; gap: 10px; z-index: 3; }
.canvas-brand img { width: 42px; height: 42px; object-fit: contain; }
.canvas-brand span { font-size: .82rem; font-weight: 800; }
.canvas-brand small { display: block; color: var(--muted); font-size: .7rem; font-weight: 500; }
.float-card {
  position: absolute; z-index: 4; min-width: 168px; padding: 13px 14px;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,.94); box-shadow: var(--shadow-xs); backdrop-filter: blur(8px);
}
.float-card .mini-kicker { display: block; margin-bottom: 4px; color: var(--muted-2); font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.float-card strong { display: block; font-size: .88rem; }
.float-card small { color: var(--muted); font-size: .72rem; }
.fc-1 { right: 20px; top: 102px; }
.fc-2 { left: 22px; bottom: 34px; }
.fc-3 { right: 28px; bottom: 56px; min-width: 158px; }
.core-badge {
  position: absolute; left: 50%; top: 51%; transform: translate(-50%,-50%); z-index: 3;
  width: 112px; height: 112px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 36px rgba(8,122,89,.12);
}
.core-badge img { width: 72px; height: 72px; object-fit: contain; }

/* Stats / facts */
.stat-strip { border-block: 1px solid var(--line); background: #fff; }
.stat-grid, .fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat, .fact { min-height: 106px; padding: 24px; }
.stat + .stat, .fact + .fact { border-left: 1px solid var(--line); }
.stat strong { display: block; color: var(--navy); font-size: 1.52rem; line-height: 1.08; letter-spacing: -.03em; }
.stat span { display: block; margin-top: 7px; color: var(--muted); font-size: .8rem; }
.fact-grid { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.fact span { display: block; margin-bottom: 7px; color: var(--muted-2); font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.fact strong { display: block; line-height: 1.35; font-size: .93rem; }

/* Cards / grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.card {
  position: relative; overflow: hidden;
  padding: 24px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-xs);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card:hover { transform: translateY(-2px); border-color: #c7d7d0; box-shadow: var(--shadow-sm); }
.card-icon {
  width: 42px; height: 42px; margin-bottom: 28px;
  display: grid; place-items: center; border-radius: 10px;
  background: #eef7f2; color: var(--green);
}
.card-icon svg { width: 21px; height: 21px; }
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); font-size: .9rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 17px; color: var(--green); font-size: .84rem; font-weight: 760; }
.card-link::after { content: "→"; transition: transform .16s ease; }
.card-link:hover::after { transform: translateX(3px); }
.number-card::after {
  content: attr(data-index); position: absolute; right: 14px; top: 6px;
  color: #f0f5f2; font-size: 4.2rem; line-height: 1; font-weight: 850; letter-spacing: -.08em;
}
.number-card > * { position: relative; z-index: 1; }

/* Split / feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-wide { grid-template-columns: .9fr 1.1fr; }
.feature-panel {
  position: relative; overflow: hidden; min-height: 410px; padding: 36px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #f8fbfa, #f7f9fb);
}
.feature-panel .orb { position: absolute; border-radius: 50%; pointer-events: none; }
.feature-panel .orb.one { width: 210px; height: 210px; right: -90px; top: -90px; background: rgba(103,184,78,.08); }
.feature-panel .orb.two { width: 180px; height: 180px; left: -90px; bottom: -80px; background: rgba(9,39,67,.045); }
.feature-list { display: grid; gap: 0; margin: 24px 0 0; }
.feature-item { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; padding: 13px 0; border-bottom: 1px solid rgba(225,233,229,.92); }
.feature-item:last-child { border-bottom: 0; }
.feature-item .num {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 9px; background: #fff;
  color: var(--green); font-size: .7rem; font-weight: 800;
}
.feature-item strong { display: block; font-size: .9rem; }
.feature-item span { display: block; margin-top: 2px; color: var(--muted); font-size: .82rem; }
.check-list { display: grid; gap: 10px; padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: #455c6d; font-size: .94rem; }
.check-list li::before {
  content: "✓"; flex: 0 0 21px; width: 21px; height: 21px; margin-top: 2px;
  display: grid; place-items: center; border-radius: 50%;
  background: #eef7f2; color: var(--green); font-size: .68rem; font-weight: 900;
}

/* Process */
.process { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; margin-top: 42px; }
.process-step { position: relative; padding: 0 12px; text-align: center; }
.process-step::before { content: ""; position: absolute; left: -50%; right: 50%; top: 24px; height: 1px; background: var(--line); }
.process-step:first-child::before { display: none; }
.process-dot {
  position: relative; z-index: 1; width: 49px; height: 49px; margin: 0 auto 14px;
  display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%;
  background: #fff; color: var(--green); font-size: .7rem; font-weight: 850;
}
.process-step strong { display: block; font-size: .85rem; }
.process-step span { display: block; margin-top: 4px; color: var(--muted); font-size: .75rem; line-height: 1.4; }

/* Sector panels */
.sector-panel {
  position: relative; overflow: hidden; min-height: 350px; padding: 32px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff;
}
.sector-panel.food { background: linear-gradient(145deg,#f7fcf9 0%,#fff 68%); }
.sector-panel.industrial { background: linear-gradient(145deg,#f7f9fb 0%,#fff 68%); }
.sector-code {
  display: inline-flex; padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.sector-panel h3 { margin: 60px 0 10px; font-size: 1.72rem; }
.sector-panel p { max-width: 450px; color: var(--muted); }
.sector-mark {
  position: absolute; right: -42px; bottom: -42px; width: 180px; height: 180px;
  border: 1px solid rgba(8,122,89,.09); border-radius: 50%;
}
.sector-mark::before, .sector-mark::after {
  content: ""; position: absolute; inset: 24px; border: 1px solid rgba(8,122,89,.08); border-radius: 50%;
}
.sector-mark::after { inset: 54px; }
.industrial .sector-mark, .industrial .sector-mark::before, .industrial .sector-mark::after { border-color: rgba(9,39,67,.08); }

/* CTA */
.cta-band { padding: 52px 0; }
.cta-box {
  position: relative; overflow: hidden; padding: 44px 46px;
  display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center;
  border-radius: var(--radius-lg); background: var(--navy); color: #fff;
}
.cta-box::after {
  content: ""; position: absolute; right: -80px; bottom: -120px; width: 250px; height: 250px;
  border-radius: 50%; background: rgba(22,147,109,.12);
}
.cta-box h2 { margin: 0 0 10px; color: #fff; font-size: clamp(1.9rem,3vw,3rem); }
.cta-box p { max-width: 680px; margin: 0; color: #c9d5df; }
.cta-box .actions { position: relative; z-index: 1; margin: 0; }
.cta-box .btn-primary { background: #fff; color: var(--navy); box-shadow: none; }
.cta-box .btn-primary:hover { background: #f4f7f8; }

/* Inner pages */
.page-hero {
  overflow: hidden; padding: 68px 0 58px;
  background: linear-gradient(180deg, #fafcfb 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 900px; margin: 13px 0 18px; font-size: clamp(2.8rem,4.8vw,4.7rem); }
.page-hero .lead { max-width: 760px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; color: var(--muted-2); font-size: .75rem; }
.breadcrumbs a:hover { color: var(--green); }

/* Timeline, pills, notices */
.timeline { display: grid; gap: 0; margin-left: 12px; border-left: 1px solid var(--line); }
.timeline-item { position: relative; padding: 0 0 28px 34px; }
.timeline-item::before {
  content: ""; position: absolute; left: -6px; top: 5px; width: 10px; height: 10px;
  border: 2px solid var(--green); border-radius: 50%; background: #fff;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item h3 { margin: 0 0 5px; }
.timeline-item p { margin: 0; color: var(--muted); }
.pill-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.pill { display: inline-flex; padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #526878; font-size: .76rem; }
.notice {
  padding: 16px 18px; border: 1px solid #dce7e2; border-left: 3px solid var(--green); border-radius: 10px;
  background: #f8fbfa; color: #506471; font-size: .86rem;
}
.notice strong { color: var(--navy); }

/* Opportunities */
.filter-bar { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.filter-btn {
  min-height: 38px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: #526878; font-size: .78rem; font-weight: 700; cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.opportunity-card.hidden { display: none; }
.opportunity-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.opportunity-meta span { padding: 5px 7px; border-radius: 999px; background: #f3f7f5; color: #62737f; font-size: .66rem; }

/* Accordions */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button {
  width: 100%; padding: 18px 0; border: 0; background: transparent;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  color: var(--navy); font-weight: 750; text-align: left; cursor: pointer;
}
.accordion-button span:last-child {
  flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; transition: transform .18s ease;
}
.accordion-item.open .accordion-button span:last-child { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .25s ease; }
.accordion-panel p { margin: 0 0 18px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
.contact-cards { display: grid; gap: 10px; margin-top: 24px; }
.contact-card {
  display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center;
  padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.contact-card .icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: #eef7f2; color: var(--green); }
.contact-card .icon svg { width: 18px; height: 18px; }
.contact-card span { display: block; color: var(--muted-2); font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-card strong, .contact-card a { font-size: .87rem; }
.form-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-xs); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 6px; color: #536878; font-size: .75rem; font-weight: 750; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-height: 46px; padding: 11px 12px;
  border: 1px solid var(--line-strong); border-radius: 9px; outline: 0;
  background: #fff; color: var(--navy);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.form-field textarea { min-height: 132px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #70af97; box-shadow: 0 0 0 3px rgba(8,122,89,.08); }
.form-note { margin-top: 10px; color: var(--muted-2); font-size: .74rem; }
.form-status { min-height: 20px; margin: 9px 0 0; color: var(--green); font-size: .8rem; }

/* Footer */
.site-footer { margin-top: 18px; border-top: 1px solid var(--line); background: #fafcfb; }
.footer-main { padding: 50px 0 34px; display: grid; grid-template-columns: 1.35fr .7fr .8fr .8fr; gap: 34px; }
.footer-brand img { width: 172px; height: 68px; margin-bottom: 12px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 380px; color: var(--muted); font-size: .84rem; }
.footer-col h4 { margin: 0 0 11px; color: var(--navy); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; padding: 3px 0; color: var(--muted); font-size: .82rem; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { padding: 17px 0 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: .72rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 14px; }

/* Back to top + reveal */
.back-to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(8px); cursor: pointer;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: .06s; }
.delay-2 { transition-delay: .12s; }
.delay-3 { transition-delay: .18s; }
@keyframes dash { to { stroke-dashoffset: -320; } }

/* Tablet */
@media (max-width: 1060px) {
  :root { --header-h: 72px; }
  .container { width: min(var(--max), calc(100% - 40px)); }
  .header-cta { display: none; }
  .nav-link, .nav-trigger { padding-inline: 8px; font-size: .82rem; }
  .hero-grid, .split, .split-wide, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 66px; }
  .hero-grid { gap: 42px; }
  .trade-canvas { max-width: 720px; min-height: 450px; }
  .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process { grid-template-columns: repeat(3,1fr); row-gap: 28px; }
  .process-step:nth-child(4)::before { display: none; }
  .footer-main { grid-template-columns: 1.3fr repeat(3,.9fr); gap: 24px; }
}

/* Mobile navigation + compact tablet */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-wrap {
    position: fixed; inset: var(--header-h) 0 0;
    display: block; padding: 12px 20px 28px;
    background: rgba(255,255,255,.99); border-top: 1px solid var(--line);
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateX(100%); transition: transform .22s ease;
  }
  .nav-wrap.open { transform: translateX(0); }
  .primary-nav { display: block; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link, .nav-trigger {
    width: 100%; min-height: 54px; padding: 0 4px; border-radius: 0;
    justify-content: space-between; background: transparent !important; font-size: .95rem;
  }
  .dropdown {
    position: static; width: auto; padding: 0 0 8px; border: 0; border-radius: 0; box-shadow: none;
    opacity: 1; visibility: visible; transform: none; display: none;
  }
  .nav-item.open .dropdown { display: block; }
  .nav-item:hover .dropdown { display: none; }
  .nav-item.open:hover .dropdown { display: block; }
  .dropdown a { grid-template-columns: 32px 1fr; padding: 9px 4px; }
  .dropdown-icon { width: 32px; height: 32px; }
  .mobile-cta { display: flex; margin-top: 18px; width: 100%; }
  .grid-3 { grid-template-columns: 1fr; }
  .stat-grid, .fact-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(3), .fact:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(4), .fact:nth-child(4) { border-top: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1.3fr 1fr; }
}

/* Phones */
@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 64px 0; }
  .section-sm { padding: 44px 0; }
  .brand, .brand img { width: 166px; }
  h1 { font-size: clamp(2.55rem, 13.5vw, 3.65rem); line-height: 1; }
  h2 { font-size: clamp(2rem, 9.8vw, 2.75rem); }
  .lead { font-size: 1rem; }
  .hero { padding: 52px 0 40px; }
  .hero-grid { gap: 32px; }
  .hero-copy h1 { margin-bottom: 18px; }
  .actions { width: 100%; gap: 8px; }
  .actions .btn { flex: 1 1 auto; }
  .hero-tags { gap: 6px; }
  .hero-tag { font-size: .72rem; }
  .trade-canvas { min-height: 350px; border-radius: 18px; }
  .trade-route { inset: 48px 18px 30px; }
  .canvas-brand { top: 18px; left: 18px; }
  .canvas-brand img { width: 36px; height: 36px; }
  .fc-1 { top: 78px; right: 12px; }
  .fc-2 { left: 12px; bottom: 20px; }
  .fc-3 { display: none; }
  .float-card { min-width: 144px; padding: 10px 11px; }
  .float-card strong { font-size: .8rem; }
  .core-badge { width: 88px; height: 88px; }
  .core-badge img { width: 58px; height: 58px; }
  .grid-2, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .stat-grid, .fact-grid { grid-template-columns: 1fr; }
  .stat + .stat, .fact + .fact { border-left: 0; border-top: 1px solid var(--line); }
  .stat, .fact { min-height: auto; padding: 19px; }
  .card { padding: 20px; }
  .card-icon { margin-bottom: 22px; }
  .split { gap: 34px; }
  .feature-panel { min-height: auto; padding: 24px; border-radius: 18px; }
  .process { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .process-step { padding-inline: 8px; }
  .process-step:nth-child(3)::before, .process-step:nth-child(5)::before { display: none; }
  .process-step:nth-child(4)::before { display: block; }
  .sector-panel { min-height: 300px; padding: 24px; border-radius: 18px; }
  .sector-panel h3 { margin-top: 42px; }
  .cta-band { padding: 38px 0; }
  .cta-box { grid-template-columns: 1fr; gap: 22px; padding: 30px 24px; border-radius: 18px; }
  .cta-box .actions { margin-top: 0; }
  .page-hero { padding: 48px 0 42px; }
  .page-hero h1 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .form-card { padding: 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding-top: 40px; gap: 26px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom-links { margin-top: 10px; }
}

@media (max-width: 420px) {
  .container { width: min(var(--max), calc(100% - 22px)); }
  .brand, .brand img { width: 154px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero-tag { width: fit-content; }
  .process { grid-template-columns: 1fr; }
  .process-step::before { display: none !important; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .actions .btn { width: 100%; }
}

@media (hover: none) {
  .card:hover, .btn:hover, .header-cta:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
