﻿:root {
  --bg: #f4f8f3;
  --bg-2: #e8f2ec;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #163029;
  --muted: #5f726b;
  --line: rgba(22, 48, 41, 0.12);
  --brand: #2f7a57;
  --brand-2: #78b06f;
  --accent: #d9a441;
  --shadow: 0 18px 50px rgba(19, 44, 38, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 122, 87, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(217, 164, 65, 0.16), transparent 24%),
    linear-gradient(180deg, #fbfdf9 0%, var(--bg) 46%, #f9fcf8 100%);
  font-family: "Trebuchet MS", "Lucida Grande", "Verdana", sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: #ffffff;
  border-bottom: 1px solid rgba(22, 48, 41, 0.08);
  isolation: isolate;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(320px, 52vw);
  aspect-ratio: 2043 / 770;
  object-fit: contain;
  flex: 0 0 auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.footer-brand .brand-logo {
  height: 68px;
  max-width: 260px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
}

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

.nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  background: #ffffff;
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(19, 44, 38, 0.12);
}

.pill.primary {
  background: linear-gradient(135deg, var(--brand) 0%, #20543d 100%);
  color: white;
}

.pill.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: var(--line);
}

.hero {
  padding: 36px 0 24px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 244, 0.86)),
    radial-gradient(circle at top right, rgba(120, 176, 111, 0.24), transparent 32%);
  border: 1px solid rgba(22, 48, 41, 0.08);
  box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  opacity: 0.85;
}

.hero-card::before {
  width: 260px;
  height: 260px;
  right: -110px;
  top: -80px;
  background: radial-gradient(circle, rgba(47, 122, 87, 0.19), rgba(47, 122, 87, 0) 72%);
}

.hero-card::after {
  width: 220px;
  height: 220px;
  left: -110px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.16), rgba(217, 164, 65, 0) 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47, 122, 87, 0.08);
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1,
.section-title,
.page-title {
  margin: 16px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  max-width: 12ch;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 48, 41, 0.08);
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.visual-tile {
  min-height: 360px;
  border-radius: 28px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: white;
  box-shadow: 0 20px 35px rgba(22, 48, 41, 0.16);
}

.visual-tile strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.visual-tile span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.tile-blueberry {
  background:
    linear-gradient(180deg, rgba(15, 50, 74, 0.18), rgba(15, 50, 74, 0.68)),
    radial-gradient(circle at 20% 22%, rgba(123, 189, 255, 0.72) 0 9%, transparent 10%),
    radial-gradient(circle at 42% 34%, rgba(123, 189, 255, 0.52) 0 8%, transparent 9%),
    radial-gradient(circle at 60% 24%, rgba(123, 189, 255, 0.72) 0 9%, transparent 10%),
    radial-gradient(circle at 26% 60%, rgba(123, 189, 255, 0.62) 0 8%, transparent 9%),
    radial-gradient(circle at 52% 58%, rgba(123, 189, 255, 0.56) 0 8%, transparent 9%),
    radial-gradient(circle at 76% 44%, rgba(123, 189, 255, 0.7) 0 9%, transparent 10%),
    linear-gradient(135deg, rgba(37, 94, 69, 0.42), rgba(17, 38, 33, 0.12));
}

.tile-greenhouse {
  background:
    linear-gradient(180deg, rgba(17, 72, 51, 0.12), rgba(17, 72, 51, 0.68)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 0 10px,
      rgba(255, 255, 255, 0.05) 10px 28px
    ),
    linear-gradient(160deg, rgba(145, 191, 121, 0.42), rgba(41, 96, 68, 0.92));
  position: relative;
}

.tile-system {
  background:
    linear-gradient(180deg, rgba(28, 48, 38, 0.18), rgba(28, 48, 38, 0.56)),
    linear-gradient(150deg, rgba(120, 176, 111, 0.7), rgba(47, 122, 87, 0.9));
  position: relative;
}

.tile-system::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.tile-system > * {
  position: relative;
  z-index: 1;
}

.section {
  padding: 28px 0 8px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 22px;
}

.section-title,
.page-title {
  font-size: clamp(1.7rem, 3vw, 3rem);
  margin: 0;
}

.section-copy {
  color: var(--muted);
  max-width: 60ch;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(22, 48, 41, 0.08);
  box-shadow: var(--shadow);
}

.card-pad {
  padding: 22px;
}

.app-card {
  min-height: 196px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 247, 0.92));
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 122, 87, 0.1);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.app-card h3,
.feature-card h3,
.case-card h3,
.info-card h3,
.resource-card h3 {
  margin: 2px 0 0;
  font-size: 1.16rem;
}

.app-card p,
.feature-card p,
.case-card p,
.info-card p,
.resource-card p,
.section-subcopy {
  margin: 0;
  color: var(--muted);
}

.product-row {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(22, 48, 41, 0.08);
}

.product-row small {
  color: var(--muted);
  font-weight: 700;
}

.product-row strong {
  color: var(--text);
}

.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.process-step {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 48, 41, 0.08);
}

.step-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(145deg, var(--brand-2), var(--brand));
}

.step-name {
  font-weight: 800;
}

.step-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.case-card {
  overflow: hidden;
}

.case-visual {
  min-height: 170px;
  border-radius: 26px 26px 0 0;
  background:
    linear-gradient(180deg, rgba(15, 36, 29, 0.12), rgba(15, 36, 29, 0.55)),
    linear-gradient(140deg, rgba(120, 176, 111, 0.9), rgba(47, 122, 87, 0.9));
  position: relative;
}

.case-visual.blueberry {
  background:
    linear-gradient(180deg, rgba(15, 36, 29, 0.06), rgba(15, 36, 29, 0.58)),
    radial-gradient(circle at 18% 70%, rgba(68, 115, 68, 0.8) 0 7%, transparent 8%),
    radial-gradient(circle at 30% 58%, rgba(89, 135, 82, 0.75) 0 7%, transparent 8%),
    radial-gradient(circle at 44% 72%, rgba(63, 108, 61, 0.8) 0 8%, transparent 9%),
    radial-gradient(circle at 58% 54%, rgba(89, 135, 82, 0.72) 0 7%, transparent 8%),
    radial-gradient(circle at 72% 68%, rgba(63, 108, 61, 0.8) 0 8%, transparent 9%),
    linear-gradient(150deg, rgba(101, 161, 126, 0.92), rgba(30, 71, 56, 0.9));
}

.case-visual.greenhouse {
  background:
    linear-gradient(180deg, rgba(15, 36, 29, 0.08), rgba(15, 36, 29, 0.56)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 0 12px,
      rgba(255, 255, 255, 0.05) 12px 24px
    ),
    linear-gradient(145deg, rgba(134, 184, 128, 0.92), rgba(30, 78, 58, 0.94));
}

.case-visual.commercial {
  background:
    linear-gradient(180deg, rgba(15, 36, 29, 0.08), rgba(15, 36, 29, 0.56)),
    radial-gradient(circle at 26% 54%, rgba(255, 255, 255, 0.42) 0 2%, transparent 3%),
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.42) 0 2%, transparent 3%),
    radial-gradient(circle at 70% 56%, rgba(255, 255, 255, 0.42) 0 2%, transparent 3%),
    linear-gradient(145deg, rgba(121, 170, 107, 0.9), rgba(35, 81, 59, 0.94));
}

.case-body,
.panel-body {
  padding: 20px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.stat {
  flex: 1 1 120px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(47, 122, 87, 0.07);
}

.stat strong {
  display: block;
  font-size: 1.02rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  padding: 24px 0 80px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(47, 122, 87, 0.98), rgba(32, 84, 61, 0.98));
  color: white;
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.cta-card::before {
  width: 260px;
  height: 260px;
  right: -110px;
  top: -90px;
}

.cta-card::after {
  width: 200px;
  height: 200px;
  left: -90px;
  bottom: -90px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 34px;
}

.cta-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin: 0 0 8px;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 58ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-actions .pill.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer {
  padding: 24px 0 42px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(22, 48, 41, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  font-weight: 700;
}

.page-hero {
  padding: 38px 0 8px;
}

.page-shell {
  padding: 10px 0 54px;
}

.page-hero .page-title {
  max-width: 12ch;
}

.page-hero .lead {
  font-size: 1.05rem;
}

.feature-card,
.info-card,
.resource-card {
  padding: 22px;
}

.feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.feature-list li::before {
  content: "\2022";
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

.solution-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 48, 41, 0.08);
  border-radius: 26px;
  padding: 24px;
  display: grid;
  gap: 14px;
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-list li {
  flex: 1 1 160px;
  min-width: 0;
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(47, 122, 87, 0.07);
  border: 1px solid rgba(47, 122, 87, 0.08);
  font-weight: 700;
}

.flow-list li strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 48, 41, 0.08);
}

.table th,
.table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(22, 48, 41, 0.08);
}

.table th {
  background: rgba(47, 122, 87, 0.08);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.table tr:last-child td {
  border-bottom: none;
}

.form-card {
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(22, 48, 41, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(47, 122, 87, 0.4);
  box-shadow: 0 0 0 4px rgba(47, 122, 87, 0.08);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 48, 41, 0.08);
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(251, 253, 249, 0.98);
    border: 1px solid rgba(22, 48, 41, 0.08);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .field-grid,
  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .cta-inner {
    padding: 22px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 0;
  }

  .visual-tile {
    min-height: 200px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    height: 44px;
    max-width: 210px;
  }
}
/* Premium foreign-trade page polish */
:root {
  --premium-ink: #111827;
  --premium-muted: #64748b;
  --premium-green: #047857;
  --premium-line: rgba(15, 23, 42, 0.08);
}

body {
  color: var(--premium-ink);
  background: #f7faf8;
  text-rendering: geometricPrecision;
}

.site-header {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.nav a,
.header-cta a {
  font-weight: 650;
}

.page-hero {
  background: linear-gradient(180deg, #f7faf8 0%, #eef6f1 100%);
}

.eyebrow,
.tag {
  border-radius: 999px;
  border: 1px solid rgba(4, 120, 87, 0.16);
  background: #dff8ec;
  color: var(--premium-green);
  letter-spacing: 0.08em;
}

.page-title {
  letter-spacing: 0;
  color: var(--premium-ink);
}

.lead,
.muted,
.info-card p {
  color: var(--premium-muted);
}

.card,
.info-card {
  border-radius: 8px;
  border: 1px solid var(--premium-line);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.pill {
  border-radius: 8px;
}

.pill.primary {
  background: linear-gradient(135deg, #0b8f66, #047857);
  box-shadow: 0 14px 30px rgba(4, 120, 87, 0.22);
}

/* Premium foreign-trade page polish v2 */
:root {
  --premium-deep: #0f241d;
  --premium-soft: #f6f9f7;
  --premium-panel: #ffffff;
  --premium-gold: #c6902c;
}

body {
  background: var(--premium-soft);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

.page-shell {
  background: linear-gradient(180deg, #f8fbf9 0%, #f3f8f5 46%, #ffffff 100%);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0 clamp(56px, 6.5vw, 88px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 247, 242, 0.92) 52%, rgba(232, 240, 235, 0.94) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 36, 29, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 36, 29, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 82%);
  opacity: 0.42;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--premium-green), var(--premium-gold), transparent 72%);
  opacity: 0.8;
}

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

.page-title {
  max-width: 960px;
  margin-top: 22px;
  font-size: clamp(2.4rem, 5.2vw, 4.7rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.page-hero .lead {
  max-width: 780px;
  margin-top: 24px;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.82;
}

.section {
  padding: clamp(64px, 7vw, 96px) 0;
}

.section-heading {
  margin-bottom: 30px;
}

.grid-2,
.grid-3,
.grid-4 {
  gap: 22px;
  align-items: stretch;
}

.card,
.info-card,
.feature-card,
.resource-card,
.solution-panel,
.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.075);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 251, 0.96));
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.075);
}

.card::before,
.info-card::before,
.feature-card::before,
.resource-card::before,
.solution-panel::before,
.case-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--premium-green), rgba(198, 144, 44, 0.85), transparent 76%);
  opacity: 0.82;
}

.card:hover,
.info-card:hover,
.feature-card:hover,
.resource-card:hover,
.solution-panel:hover,
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.12);
}

.info-card,
.feature-card,
.resource-card,
.solution-panel {
  min-height: 250px;
  padding: clamp(26px, 3vw, 34px);
}

.info-card h3,
.feature-card h3,
.resource-card h3,
.case-card h3 {
  color: var(--premium-ink);
  letter-spacing: 0;
}

.info-card p,
.feature-card p,
.resource-card p,
.case-card p,
.section-copy {
  color: var(--premium-muted);
  line-height: 1.78;
}

.tag,
.eyebrow {
  min-height: 30px;
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.1);
  border-color: rgba(4, 120, 87, 0.18);
  color: #046c50;
}

.feature-list,
.flow-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.feature-list li,
.flow-list li {
  position: relative;
  padding: 10px 12px 10px 32px;
  border-radius: 8px;
  background: rgba(4, 120, 87, 0.055);
  color: #244238;
  line-height: 1.45;
}

.feature-list li::before,
.flow-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--premium-gold);
  box-shadow: 0 0 0 4px rgba(198, 144, 44, 0.16);
}

.solution-panel .section-title {
  margin-top: 18px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.case-card {
  padding: 0;
}

.case-visual {
  min-height: 220px;
  border-radius: 8px 8px 0 0;
}

.case-body {
  padding: 26px;
}

.stats {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.stat {
  padding-left: 14px;
  border-left: 3px solid rgba(4, 120, 87, 0.32);
}

.stat strong {
  display: block;
  color: var(--premium-ink);
  margin-bottom: 4px;
}

.stat span {
  color: var(--premium-muted);
  line-height: 1.6;
}

.site-footer {
  background: #0e241c;
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .muted,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: #ffffff;
}

@media (max-width: 780px) {
  .page-hero {
    padding: 58px 0 48px;
  }

  .page-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .page-hero .lead {
    font-size: 1rem;
  }

  .section {
    padding: 52px 0;
  }

  .info-card,
  .feature-card,
  .resource-card,
  .solution-panel {
    min-height: auto;
    padding: 24px;
  }

  .case-visual {
    min-height: 190px;
  }

  .nav {
    border-radius: 8px;
  }
}

/* Premium foreign-trade page polish v3 */
.page-hero .page-title {
  max-width: 980px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 850;
}

.page-hero {
  padding: clamp(64px, 6.5vw, 92px) 0 clamp(50px, 5.5vw, 72px);
}

.page-hero .lead {
  max-width: 820px;
}

.section-title {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

@media (max-width: 780px) {
  .page-hero .page-title {
    max-width: 100%;
    font-size: clamp(2rem, 8.6vw, 2.75rem);
  }
}

/* Mobile navigation refinement */
.nav-toggle {
  position: relative;
  font-size: 0;
  border-radius: 8px;
}

.nav-toggle::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--premium-ink);
  box-shadow: 0 -7px 0 var(--premium-ink), 0 7px 0 var(--premium-ink);
}

.nav-toggle[aria-expanded="true"]::before {
  background: var(--premium-green);
  box-shadow: 0 -7px 0 var(--premium-green), 0 7px 0 var(--premium-green);
}

/* Unified navigation background */
.site-header,
.site-header .nav,
.site-header .nav a,
.nav-toggle {
  background: #ffffff !important;
}

.site-header .nav a:hover,
.site-header .nav a[aria-current="page"] {
  background: #ffffff !important;
}
