:root {
  --bg: #ffffff;
  --ink: #08090b;
  --muted: #5c6470;
  --soft: #f4f6f8;
  --line: #dfe4ea;
  --blue: #0c3676;
  --blue-2: #08265a;
  --blue-soft: #eaf1fb;
  --teal: #04756f;
  --green: #0f6b43;
  --amber: #e3a322;
  --sky: #dff1f4;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(9, 20, 38, 0.09);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #20252c;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links > .mobile-request {
  display: none !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  flex: 0 0 42px;
  margin-left: auto;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  border-color: var(--blue);
  background: linear-gradient(135deg, #0d4fa8, #0a347c);
  color: #fff;
  box-shadow: 0 10px 28px rgba(12, 54, 118, 0.2);
}

.btn.primary:hover {
  background: var(--blue-2);
}

.btn.light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.section {
  padding: 86px 0;
}

.section.tight {
  padding: 58px 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 78% 18%, rgba(227, 163, 34, 0.42), transparent 16%),
    radial-gradient(circle at 72% 72%, rgba(4, 117, 111, 0.52), transparent 24%),
    linear-gradient(90deg, rgba(3, 12, 24, 0.98) 0%, rgba(4, 20, 42, 0.94) 41%, rgba(6, 31, 59, 0.72) 62%, rgba(5, 21, 41, 0.88) 100%),
    var(--hero-image, linear-gradient(135deg, #04111f 0%, #0b2447 44%, #0a5960 72%, #03101f 100%));
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(58vw, 760px);
  height: 66%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(135deg, transparent 0%, black 55%);
  opacity: 0.5;
}

.hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(56vw, 820px);
  background:
    radial-gradient(circle at 22% 48%, rgba(227, 163, 34, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 32%, rgba(70, 220, 210, 0.95) 0 5px, transparent 6px),
    radial-gradient(circle at 70% 62%, rgba(227, 163, 34, 0.8) 0 4px, transparent 5px),
    radial-gradient(circle at 38% 72%, rgba(255, 255, 255, 0.85) 0 3px, transparent 4px),
    linear-gradient(28deg, transparent 0 39%, rgba(227, 163, 34, 0.55) 39.2% 39.7%, transparent 40%),
    linear-gradient(150deg, transparent 0 47%, rgba(70, 220, 210, 0.42) 47.2% 47.7%, transparent 48%),
    linear-gradient(92deg, transparent 0 55%, rgba(255, 255, 255, 0.22) 55.2% 55.5%, transparent 56%);
  opacity: 0.74;
}

.hero {
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  color: #fff;
  text-wrap: balance;
}

.hero .lead {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.78);
}

.hero .btn.light {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.trade-map {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 64% 22%, rgba(227, 163, 34, 0.34), transparent 17%),
    radial-gradient(circle at 34% 68%, rgba(12, 188, 178, 0.32), transparent 22%),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.trade-map::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.trade-map::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -24%;
  width: 86%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.route {
  position: absolute;
  height: 2px;
  transform-origin: left center;
}

.route-a {
  left: 10%;
  top: 42%;
  width: 92%;
  background: linear-gradient(90deg, transparent, rgba(74, 224, 215, 0.9), transparent);
  transform: rotate(-22deg);
}

.route-b {
  left: 2%;
  top: 64%;
  width: 110%;
  background: linear-gradient(90deg, transparent, rgba(227, 163, 34, 0.86), transparent);
  transform: rotate(24deg);
}

.route-c {
  left: 32%;
  top: 10%;
  width: 78%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(88deg);
}

.node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.08), 0 0 30px rgba(74, 224, 215, 0.7);
}

.node-a { left: 18%; top: 56%; background: #e3a322; }
.node-b { left: 48%; top: 34%; background: #4ae0d7; }
.node-c { left: 76%; top: 58%; background: #e3a322; }
.node-d { left: 66%; top: 22%; background: #fff; }

.route-card,
.mini-rfq {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(4, 15, 30, 0.62);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.route-card {
  left: 28px;
  top: 28px;
  max-width: 290px;
  padding: 20px;
}

.route-card strong,
.mini-rfq-head {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 900;
}

.route-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.mini-rfq {
  right: 28px;
  bottom: 28px;
  width: 270px;
  padding: 18px;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.mini-row span {
  color: rgba(255, 255, 255, 0.58);
}

.mini-row b {
  text-align: right;
}

.signal-strip {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(223, 228, 234, 0.78);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal {
  padding: 24px 26px;
  border-left: 1px solid var(--line);
}

.signal:first-child {
  border-left: 0;
}

.signal span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.signal strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.signal p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
}

.lead {
  max-width: 820px;
  color: #343b45;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.muted {
  color: var(--muted);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(10, 21, 34, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 54, 118, 0.22);
  box-shadow: 0 22px 58px rgba(10, 30, 54, 0.12);
}

.card-body {
  padding: 24px;
}

.image-slot {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(227, 163, 34, 0.86), transparent 18%),
    radial-gradient(circle at 18% 72%, rgba(4, 117, 111, 0.82), transparent 24%),
    linear-gradient(135deg, rgba(8, 9, 11, 0.78), rgba(12, 54, 118, 0.44)),
    linear-gradient(135deg, #d1edf0, #eef4f8);
}

.image-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.13) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.26;
}

.image-slot::after {
  content: attr(data-image);
  position: absolute;
  left: 18px;
  bottom: 16px;
  max-width: calc(100% - 36px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.image-slot.has-bg {
  background-image:
    linear-gradient(135deg, rgba(8, 9, 11, 0.42), rgba(4, 117, 111, 0.16)),
    var(--slot-image);
  background-size: cover;
  background-position: center;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.category-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.category-card:hover::after {
  transform: scaleX(1);
}

.category-card .image-slot {
  min-height: 142px;
}

.category-card h3 {
  margin-bottom: 8px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.service {
  position: relative;
  min-height: 240px;
  padding: 28px 24px;
  border: 1px solid rgba(223, 228, 234, 0.86);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(4, 117, 111, 0.12), transparent 28%),
    #fff;
  box-shadow: 0 8px 28px rgba(10, 21, 34, 0.04);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service:first-child {
  border-left: 1px solid rgba(223, 228, 234, 0.86);
}

.service::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(12, 54, 118, 0.14);
  border-radius: 50%;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(10, 30, 54, 0.1);
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
}

.icon.teal {
  border-color: var(--teal);
  color: var(--teal);
}

.icon.green {
  border-color: var(--green);
  color: var(--green);
}

.process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(10, 21, 34, 0.05);
  overflow: hidden;
}

.step {
  position: relative;
  padding: 30px 20px 28px;
  border-left: 1px solid var(--line);
}

.step span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.step::before {
  display: none;
}

.step:first-child {
  border-left: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.panel.dark {
  border-color: rgba(255,255,255,0.16);
  background:
    linear-gradient(135deg, rgba(8, 28, 61, 0.92), rgba(4, 117, 111, 0.76)),
    linear-gradient(135deg, #0a2147, #04756f);
  color: #fff;
  box-shadow: var(--shadow);
}

.panel.dark .lead,
.panel.dark .check-list li {
  color: rgba(255,255,255,0.86);
}

.panel.dark .check-list li::before {
  border-color: #9ee6cf;
}

.panel.accent {
  border-color: rgba(4, 117, 111, 0.22);
  background:
    radial-gradient(circle at top right, rgba(227, 163, 34, 0.22), transparent 24%),
    linear-gradient(135deg, #eef9f7, #f7fbff);
}

.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 28px;
  color: #2e3540;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.band {
  background:
    radial-gradient(circle at 8% 12%, rgba(4, 117, 111, 0.08), transparent 22%),
    linear-gradient(180deg, #f5f9fb, #ffffff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band {
  background:
    radial-gradient(circle at 18% 72%, rgba(4, 117, 111, 0.55), transparent 22%),
    radial-gradient(circle at 72% 24%, rgba(227, 163, 34, 0.34), transparent 18%),
    linear-gradient(90deg, rgba(8, 24, 54, 0.96), rgba(12, 54, 118, 0.84)),
    linear-gradient(135deg, #0d1c35, #0b5958);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.cta-band .lead,
.cta-band .muted {
  color: rgba(255, 255, 255, 0.78);
}

.form-card {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #2f3742;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: 15px "Segoe UI", Arial, Helvetica, sans-serif;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  padding: 82px 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(227, 163, 34, 0.28), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(4, 117, 111, 0.22), transparent 24%),
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.94) 58%, rgba(255,255,255,0.72) 100%),
    linear-gradient(135deg, #eef6f8, #d8e6ef);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: #fff;
}

.mini-table th,
.mini-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.mini-table th {
  width: 32%;
  background: var(--soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 38px;
  font-size: 28px;
}

.site-footer {
  background:
    radial-gradient(circle at 22% 18%, rgba(4, 117, 111, 0.32), transparent 24%),
    linear-gradient(135deg, #05070b, #071b34);
  color: #fff;
  padding: 42px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 14px;
  filter: invert(1);
}

.site-footer h3 {
  font-size: 15px;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer .company-contact {
  margin-top: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.site-footer .company-contact a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

.toast {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--blue-2);
  font-weight: 800;
}

.toast.show {
  display: block;
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 190px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions,
  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 86px;
    background:
      radial-gradient(circle at 82% 18%, rgba(227, 163, 34, 0.28), transparent 18%),
      radial-gradient(circle at 80% 74%, rgba(4, 117, 111, 0.36), transparent 24%),
      linear-gradient(135deg, rgba(3, 12, 24, 0.98), rgba(5, 28, 56, 0.94)),
      var(--hero-image, linear-gradient(135deg, #04111f, #0a5960));
    background-size: cover;
    background-position: center;
  }

  .hero::before {
    width: 100%;
    opacity: 0.3;
  }

  .hero::after {
    opacity: 0.22;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }

  .trade-map {
    position: relative;
  }

  .signal-strip {
    margin-top: -34px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .signal:first-child {
    border-top: 0;
  }

  .grid.cols-4,
  .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .intro-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service {
    border: 1px solid rgba(223, 228, 234, 0.86);
  }

  .service:first-child {
    border-top: 1px solid rgba(223, 228, 234, 0.86);
  }

  .step:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .container,
  .nav,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 62px 0;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .step,
  .step:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .step:first-child {
    border-top: 0;
  }

  .hero-visual {
    display: none;
  }

  .route-card {
    left: 16px;
    top: 16px;
    right: 16px;
    max-width: none;
  }

  .mini-rfq {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .panel,
  .form-card {
    padding: 22px;
  }

  h1 {
    font-size: 42px;
  }
}

/* Shen Globe premium redesign layer */
:root {
  --sg-ink: #06111f;
  --sg-ink-2: #0b1b2d;
  --sg-paper: #f7f3eb;
  --sg-paper-2: #fbfaf7;
  --sg-brass: #d79a45;
  --sg-brass-2: #b9792c;
  --sg-teal: #006c70;
  --sg-mineral: #0c3f63;
  --sg-line: rgba(16, 29, 45, 0.14);
  --sg-serif: "Segoe UI", Arial, Helvetica, sans-serif;
  --sg-sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

body {
  background: var(--sg-paper-2);
  color: var(--sg-ink);
}

.site-header {
  background: rgba(251, 250, 247, 0.96);
}

.btn.brass,
.btn.primary {
  border-color: var(--sg-brass);
  background: linear-gradient(135deg, #e4ae62, var(--sg-brass-2));
  color: #fff;
  box-shadow: 0 14px 32px rgba(183, 121, 44, 0.22);
}

.btn.brass:hover,
.btn.primary:hover {
  background: linear-gradient(135deg, #efbd78, #a76621);
}

.btn.full {
  width: 100%;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--sg-teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sg-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 48%, rgba(31, 111, 118, 0.42), transparent 18%),
    radial-gradient(circle at 74% 28%, rgba(215, 154, 69, 0.34), transparent 18%),
    linear-gradient(105deg, rgba(4, 11, 20, 0.98), rgba(8, 23, 39, 0.94) 48%, rgba(4, 16, 28, 0.98));
  color: #fff;
}

.sg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.8;
}

.sg-orbit-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(215, 154, 69, 0.26);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.ring-one {
  width: 760px;
  height: 360px;
  left: 35%;
  top: 16%;
}

.ring-two {
  width: 980px;
  height: 480px;
  left: 42%;
  top: 2%;
  border-color: rgba(0, 180, 178, 0.18);
}

.orbit-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
}

.line-one {
  left: 43%;
  top: 45%;
  width: 62%;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, rgba(0, 206, 199, 0.7), transparent);
}

.line-two {
  left: 29%;
  top: 55%;
  width: 82%;
  transform: rotate(21deg);
  background: linear-gradient(90deg, transparent, rgba(215, 154, 69, 0.72), transparent);
}

.orbit-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.08), 0 0 28px rgba(215,154,69,0.7);
}

.node-one { left: 58%; top: 39%; background: var(--sg-brass); }
.node-two { left: 73%; top: 31%; background: #66e0dc; }
.node-three { left: 82%; top: 57%; background: #fff; }

.sg-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
  gap: 70px;
  align-items: center;
  min-height: 720px;
  padding: 70px 0;
}

.sg-hero-copy h1 {
  max-width: 850px;
  margin-bottom: 26px;
  color: #fff;
  font-family: var(--sg-serif);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.98;
}

.sg-hero-copy h1 span {
  display: block;
  color: var(--sg-brass);
  font-style: normal;
}

.sg-hero-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.trade-dossier {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(14, 31, 48, 0.94), rgba(8, 18, 31, 0.94));
  box-shadow: 0 34px 90px rgba(0,0,0,0.34);
}

.trade-dossier::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -54px;
  width: 86px;
  height: calc(100% - 72px);
  border: 1px solid rgba(215,154,69,0.24);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(90deg, rgba(247,243,235,0.14), rgba(247,243,235,0.04));
}

.dossier-label {
  margin-bottom: 14px;
  color: var(--sg-brass);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trade-dossier h2 {
  margin-bottom: 22px;
  color: #fff;
  font-family: var(--sg-serif);
  font-size: 32px;
  font-weight: 400;
}

.trade-dossier label {
  color: rgba(255,255,255,0.78);
}

.trade-dossier input,
.trade-dossier select,
.trade-dossier textarea {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.trade-dossier input::placeholder {
  color: rgba(255,255,255,0.42);
}

.form-grid.single {
  grid-template-columns: 1fr;
}

.dossier-note {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.trust-ribbon {
  background: #06111f;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.trust-ribbon-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  align-items: center;
  gap: 20px;
}

.trust-ribbon p,
.trust-ribbon span {
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.trust-ribbon span {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-weight: 800;
}

.market-lanes {
  background:
    radial-gradient(circle at 18% 54%, rgba(215,154,69,0.1), transparent 16%),
    linear-gradient(180deg, #fbfaf7, #fff);
}

.lanes-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  grid-template-areas:
    "kicker head"
    "orbit lanes";
  gap: 24px 54px;
  align-items: start;
}

.lanes-grid > .section-kicker {
  grid-area: kicker;
  align-self: end;
}

.lanes-head {
  grid-area: head;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr) auto;
  gap: 28px;
  align-items: end;
}

.lanes-head h2,
.operating-desk h2,
.route-section h2,
.audience-card h2,
.discipline-section h2,
.request-section h2 {
  font-family: var(--sg-serif);
  font-weight: 400;
}

.lanes-head p {
  margin: 0;
  color: var(--muted);
}

.lane-orbit {
  grid-area: orbit;
  position: relative;
  min-height: 420px;
}

.lane-orbit::before,
.lane-orbit::after,
.lane-orbit span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.lane-orbit::before {
  left: 42px;
  top: 130px;
  width: 150px;
  height: 150px;
  border: 2px solid var(--sg-brass);
}

.lane-orbit::after {
  left: 106px;
  top: 194px;
  width: 18px;
  height: 18px;
  background: var(--sg-brass);
}

.lane-orbit span {
  left: 120px;
  top: 205px;
  width: 260px;
  height: 2px;
  background: linear-gradient(90deg, var(--sg-brass), transparent);
}

.lane-list {
  grid-area: lanes;
  display: grid;
  gap: 12px;
}

.lane-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: center;
  min-height: 64px;
  padding: 0 26px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(6,17,31,0.98), rgba(0,108,112,0.86)),
    linear-gradient(135deg, #0d2f49, #0c6d70);
  color: #fff;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lane-item::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 34%;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.1)),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: auto, 22px 22px;
}

.lane-item:hover {
  transform: translateX(8px);
  box-shadow: 0 18px 44px rgba(0, 83, 87, 0.2);
}

.lane-item strong,
.lane-item small {
  position: relative;
  z-index: 1;
}

.lane-item small {
  color: rgba(255,255,255,0.72);
}

.operating-desk {
  background: #fff;
}

.desk-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.desk-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--sg-line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0,108,112,0.12), transparent 28%),
    #fbfaf7;
  box-shadow: 0 18px 44px rgba(8, 21, 36, 0.06);
}

.desk-card h3 {
  font-family: var(--sg-serif);
  font-size: 28px;
  font-weight: 400;
}

.route-section {
  background:
    linear-gradient(90deg, rgba(6,17,31,0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf7, #f5f8f8);
  background-size: 80px 80px, auto;
}

.route-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.route-flow {
  position: relative;
  display: grid;
  gap: 28px;
  padding-left: 54px;
}

.route-flow::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--sg-brass), var(--sg-teal));
}

.route-point {
  position: relative;
}

.route-point::before {
  content: "";
  position: absolute;
  left: -46px;
  top: 6px;
  width: 18px;
  height: 18px;
  border: 3px solid #fbfaf7;
  border-radius: 50%;
  background: var(--sg-teal);
  box-shadow: 0 0 0 1px var(--sg-line);
}

.route-point:first-child::before {
  background: var(--sg-brass);
}

.route-point b {
  display: block;
  margin-bottom: 6px;
  font-size: 19px;
}

.route-point span {
  color: var(--muted);
}

.audience-section {
  background: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.audience-card {
  min-height: 360px;
  padding: 42px;
  border: 1px solid var(--sg-line);
  border-radius: 10px;
}

.audience-card.buyers {
  background:
    radial-gradient(circle at 90% 10%, rgba(215,154,69,0.18), transparent 24%),
    linear-gradient(135deg, #06111f, #006c70);
  color: #fff;
}

.audience-card.buyers p,
.audience-card.buyers .text-link {
  color: rgba(255,255,255,0.78);
}

.audience-card.suppliers {
  background:
    radial-gradient(circle at 90% 10%, rgba(215,154,69,0.2), transparent 26%),
    #fbfaf7;
}

.discipline-section {
  background: #06111f;
  color: #fff;
}

.discipline-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.discipline-section .lead {
  color: rgba(255,255,255,0.72);
}

.discipline-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.14);
}

.discipline-items span {
  min-height: 130px;
  display: flex;
  align-items: end;
  padding: 18px;
  border-left: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82);
  font-weight: 800;
}

.discipline-items span:first-child {
  border-left: 0;
}

.request-section {
  background:
    radial-gradient(circle at 20% 80%, rgba(0,108,112,0.12), transparent 18%),
    var(--sg-paper);
}

.request-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.premium-form {
  box-shadow: 0 24px 70px rgba(8, 21, 36, 0.12);
}

.image-slot::after {
  display: none;
}

@media (max-width: 1080px) {
  .sg-hero-grid,
  .lanes-grid,
  .desk-grid,
  .route-grid,
  .discipline-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .lanes-grid {
    grid-template-areas:
      "kicker"
      "head"
      "lanes";
  }

  .lane-orbit {
    display: none;
  }

  .lanes-head {
    grid-template-columns: 1fr;
  }

  .desk-grid {
    gap: 16px;
  }

  .trust-ribbon-inner {
    grid-template-columns: 1fr 1fr;
    padding: 20px 0;
  }

  .trust-ribbon span {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
  }

  .sg-hero,
  .sg-hero-grid {
    min-height: auto;
  }

  .sg-hero-grid {
    padding: 56px 0;
    gap: 34px;
  }

  .sg-hero-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .sg-hero-copy p {
    font-size: 18px;
  }

  .trade-dossier {
    display: none;
  }

  .trade-dossier::after {
    display: none;
  }

  .trust-ribbon-inner {
    grid-template-columns: 1fr;
  }

  .lane-item {
    grid-template-columns: 1fr;
    border-radius: 14px;
    padding: 18px;
  }

  .desk-card,
  .audience-card {
    min-height: auto;
    padding: 26px;
  }

  .route-flow {
    padding-left: 38px;
  }

  .route-point::before {
    left: -38px;
  }

  .discipline-items {
    grid-template-columns: 1fr;
  }

  .discipline-items span,
  .discipline-items span:first-child {
    min-height: 70px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.14);
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(215, 154, 69, 0.24), transparent 16%),
    radial-gradient(circle at 70% 72%, rgba(0, 108, 112, 0.28), transparent 22%),
    linear-gradient(105deg, #06111f, #0b1b2d);
  color: #fff;
  border-bottom: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 920px;
  color: #fff;
  font-family: var(--sg-serif);
  font-weight: 400;
}

.page-hero .lead {
  color: rgba(255,255,255,0.74);
}

/* Final classic design polish */
:root {
  --sg-ink: #07111d;
  --sg-ink-2: #0d1d2d;
  --sg-paper: #f4f0e8;
  --sg-paper-2: #fbfaf7;
  --sg-brass: #c98a39;
  --sg-brass-2: #9f6423;
  --sg-teal: #006a6e;
  --sg-mineral: #0d3b5f;
  --sg-line: rgba(7, 17, 29, 0.14);
  --sg-ui: "Segoe UI", Arial, Helvetica, sans-serif;
  --sg-display: "Segoe UI", Arial, Helvetica, sans-serif;
  --sg-serif: var(--sg-display);
  --sg-sans: var(--sg-ui);
  --shadow: 0 22px 62px rgba(7, 17, 29, 0.11);
  --radius: 8px;
}

html,
body {
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sg-ui);
}

body {
  background: var(--sg-paper-2);
  color: var(--sg-ink);
  font-size: 16px;
}

h1,
h2,
h3,
.sg-hero-copy h1,
.trade-dossier h2,
.lanes-head h2,
.operating-desk h2,
.route-section h2,
.audience-card h2,
.discipline-section h2,
.request-section h2,
.desk-card h3,
.page-hero h1 {
  font-family: var(--sg-display);
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  line-height: 1.03;
}

h2 {
  line-height: 1.1;
}

h3 {
  line-height: 1.22;
}

p,
li,
td,
summary,
.lead,
.muted,
.route-point span,
.lane-item small {
  letter-spacing: 0;
}

.site-header {
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(7, 17, 29, 0.09);
}

.nav {
  min-height: 74px;
}

.brand {
  min-width: 190px;
}

.brand img {
  width: 205px;
}

.nav-links {
  gap: 22px;
  color: rgba(7, 17, 29, 0.76);
  font-size: 14px;
  font-weight: 650;
}

.nav-actions .btn {
  min-height: 52px;
  padding-inline: 30px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sg-teal);
}

.btn {
  min-height: 46px;
  border-radius: 7px;
  font-family: var(--sg-ui);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
}

.btn.primary,
.btn.brass {
  border-color: transparent;
  background: linear-gradient(135deg, #d8a15b 0%, var(--sg-brass) 46%, var(--sg-brass-2) 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(159, 100, 35, 0.23);
}

.btn.primary:hover,
.btn.brass:hover {
  background: linear-gradient(135deg, #e2ae6c 0%, #bd7f35 48%, #8b541b 100%);
}

.section {
  padding: 78px 0;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--sg-brass);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.lead {
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.58;
}

.sg-hero {
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(5, 12, 22, 0.98) 0%, rgba(5, 12, 22, 0.92) 39%, rgba(5, 12, 22, 0.42) 69%, rgba(5, 12, 22, 0.72) 100%),
    url("../images/shen-trade-hero.jpg");
  background-position: center right;
  background-size: cover;
}

.sg-hero::before {
  opacity: 0.26;
}

.sg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 22, 0.1), rgba(5, 12, 22, 0.56)),
    radial-gradient(circle at 48% 54%, rgba(201, 138, 57, 0.12), transparent 20%);
  pointer-events: none;
}

.sg-orbit-field {
  display: none;
}

.sg-hero-grid {
  z-index: 1;
  grid-template-columns: minmax(0, 0.96fr) minmax(350px, 420px);
  gap: 54px;
  min-height: 680px;
  padding: 58px 0;
}

.sg-hero-copy {
  max-width: 760px;
}

.sg-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.3vw, 74px);
  line-height: 1.02;
}

.sg-hero-copy h1 span {
  display: block;
  color: #d8a15b;
  font-style: normal;
}

.sg-hero-copy p {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions,
.actions {
  gap: 12px;
  margin-top: 30px;
}

.btn.light {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.trade-dossier {
  max-width: 420px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(15, 32, 48, 0.92), rgba(7, 17, 29, 0.92)),
    rgba(7, 17, 29, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.trade-dossier::after {
  display: none;
}

.dossier-label {
  color: #d8a15b;
  letter-spacing: 0.08em;
}

.trade-dossier h2 {
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 1.16;
}

.trade-dossier input,
.trade-dossier select,
.trade-dossier textarea {
  min-height: 44px;
  border-radius: 6px;
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
}

.trade-dossier option {
  background: #111d2b;
  color: #fff;
}

.trade-dossier .btn.full,
.premium-form .btn.full,
.form-card .btn.full {
  margin-top: 16px;
}

.trust-ribbon {
  background: #07111d;
}

.trust-ribbon-inner {
  min-height: 70px;
  grid-template-columns: 1.35fr repeat(4, 1fr);
}

.trust-ribbon p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.trust-ribbon span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 650;
}

.market-lanes {
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 138, 57, 0.09), transparent 20%),
    linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
}

.lanes-grid {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 30px 44px;
}

.lanes-head {
  grid-template-columns: minmax(240px, 0.78fr) minmax(300px, 1fr);
  gap: 18px 30px;
  align-items: start;
}

.lanes-head h2 {
  margin-bottom: 0;
}

.lanes-head p {
  line-height: 1.65;
}

.lanes-head .text-link {
  grid-column: 2;
  margin-top: 0;
}

.lane-orbit {
  min-height: 432px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.06), rgba(7, 17, 29, 0.32)),
    url("../images/shen-business-area.jpg");
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(7, 17, 29, 0.14);
  box-shadow: 0 24px 70px rgba(7, 17, 29, 0.12);
  overflow: hidden;
}

.lane-orbit::before,
.lane-orbit::after,
.lane-orbit span {
  display: none;
}

.lane-list {
  gap: 10px;
}

.lane-item {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 248px);
  min-height: 76px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.98), rgba(12, 59, 95, 0.92) 66%, rgba(0, 106, 110, 0.86));
  box-shadow: 0 12px 30px rgba(7, 17, 29, 0.08);
}

.lane-item::after {
  display: none;
}

.lane-item:hover {
  transform: translateX(4px);
  box-shadow: 0 18px 42px rgba(0, 84, 87, 0.18);
}

.lane-item strong {
  font-size: 17px;
  font-weight: 720;
}

.lane-item small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.operating-desk {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.desk-grid {
  grid-template-columns: minmax(260px, 1.08fr) repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.desk-card,
.card,
.panel,
.service {
  border-radius: 8px;
}

.desk-card {
  position: relative;
  min-height: 218px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 243, 236, 0.96)),
    #fbfaf7;
  box-shadow: 0 18px 44px rgba(7, 17, 29, 0.07);
  overflow: hidden;
}

.desk-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sg-brass), var(--sg-teal));
}

.desk-card h3 {
  font-size: 24px;
  line-height: 1.18;
}

.route-section {
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf7, #f4f8f8);
  background-size: 88px 88px, auto;
}

.route-grid,
.request-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
}

.route-flow {
  gap: 24px;
}

.route-point b {
  font-size: 18px;
  font-weight: 720;
}

.audience-card {
  min-height: 330px;
  border-radius: 8px;
}

.audience-card h2 {
  font-size: clamp(30px, 3.5vw, 44px);
}

.discipline-section {
  position: relative;
  overflow: hidden;
  background: #07111d;
}

.discipline-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(48vw, 680px);
  background:
    linear-gradient(90deg, #07111d 0%, rgba(7, 17, 29, 0.7) 28%, rgba(7, 17, 29, 0.2) 100%),
    url("../images/shen-trade-documentation.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.74;
}

.discipline-grid {
  position: relative;
  z-index: 1;
}

.discipline-items {
  background: rgba(7, 17, 29, 0.44);
  backdrop-filter: blur(8px);
  justify-self: end;
  width: 100%;
}

.discipline-items span {
  min-height: 118px;
  align-items: center;
  font-weight: 650;
}

.request-section {
  background:
    radial-gradient(circle at 17% 78%, rgba(0, 106, 110, 0.12), transparent 20%),
    linear-gradient(180deg, #f4f0e8 0%, #fbfaf7 100%);
}

.request-section .cta-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(240px, 0.42fr);
  align-items: center;
}

.request-section .cta-grid > div:last-child {
  justify-self: end;
  min-width: 240px;
  padding: 22px;
  border: 1px solid rgba(7, 17, 29, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 58px rgba(7, 17, 29, 0.08);
}

.request-section .cta-grid > div:last-child .btn {
  width: 100%;
}

.form-card,
.premium-form {
  border: 1px solid rgba(7, 17, 29, 0.1);
  box-shadow: 0 24px 70px rgba(7, 17, 29, 0.1);
}

label {
  font-size: 13px;
  font-weight: 720;
}

input,
select,
textarea {
  border-radius: 6px;
  font-family: var(--sg-ui);
}

.page-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 22, 0.98) 0%, rgba(5, 12, 22, 0.9) 46%, rgba(5, 12, 22, 0.46) 100%),
    var(--page-hero-image, url("../images/shen-trade-hero.jpg"));
  background-position: center right;
  background-size: cover;
}

.page-hero::before {
  opacity: 0.22;
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.05;
}

.page-hero .lead {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero .btn:not(.primary):not(.brass) {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.image-slot {
  min-height: 320px;
  border-radius: 8px;
  border: 1px solid rgba(7, 17, 29, 0.12);
  background:
    linear-gradient(135deg, rgba(7, 17, 29, 0.1), rgba(7, 17, 29, 0.26)),
    url("../images/shen-business-area.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 70px rgba(7, 17, 29, 0.11);
}

.image-slot.has-bg {
  background-image:
    linear-gradient(135deg, rgba(7, 17, 29, 0.08), rgba(7, 17, 29, 0.28)),
    var(--slot-image, url("../images/shen-business-area.jpg"));
  background-position: center;
  background-size: cover;
}

.image-slot::before {
  background:
    linear-gradient(180deg, transparent, rgba(7, 17, 29, 0.22));
  opacity: 1;
}

.image-slot::after {
  display: none;
}

.card {
  box-shadow: 0 12px 34px rgba(7, 17, 29, 0.06);
}

.check-list li::before {
  border-color: var(--sg-brass);
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(5, 12, 22, 0.95), rgba(5, 12, 22, 0.76)),
    url("../images/shen-hero-orbit.png");
  background-position: center right;
  background-size: cover;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 106, 110, 0.22), transparent 24%),
    linear-gradient(135deg, #050b13, #07111d 62%, #0d2d42);
}

@media (max-width: 1080px) {
  .sg-hero-grid,
  .lanes-grid,
  .desk-grid,
  .route-grid,
  .discipline-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .sg-hero-grid {
    min-height: auto;
  }

  .lanes-head,
  .lanes-head .text-link {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .lane-orbit {
    display: none;
  }

  .desk-card {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .brand img {
    width: 184px;
  }

  .nav-links {
    top: 74px;
  }

  .nav-links > .mobile-request {
    display: flex !important;
    margin-top: 8px;
    min-height: 50px;
    padding-inline: 22px;
    color: #fff;
  }

  .trust-ribbon-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px 0;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 58px 0;
  }

  .sg-hero {
    min-height: auto;
    background-position: 61% center;
  }

  .sg-hero-grid {
    padding: 52px 0 58px;
  }

  .sg-hero-copy h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.04;
  }

  .sg-hero-copy p {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions,
  .actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .actions .btn {
    flex: 1 1 180px;
  }

  .trust-ribbon-inner {
    grid-template-columns: 1fr;
  }

  .trust-ribbon span {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .lanes-grid {
    gap: 20px;
  }

  .lane-item {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .discipline-section::after {
    width: 100%;
    opacity: 0.28;
  }

  .discipline-items {
    grid-template-columns: 1fr;
  }

  .discipline-items span {
    min-height: 66px;
  }

  .page-hero {
    min-height: 260px;
    padding: 52px 0;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .request-section .cta-grid {
    grid-template-columns: 1fr;
  }

  .request-section .cta-grid > div:last-child {
    justify-self: stretch;
    min-width: 0;
    width: 100%;
  }

  .image-slot {
    min-height: 250px;
  }
}
