:root {
  color-scheme: light;
  --ink: #12213a;
  --muted: #64748b;
  --line: #d8e0ec;
  --soft: #f4f7fb;
  --panel: #ffffff;
  --blue: #2563eb;
  --cyan: #0891b2;
  --green: #13a06f;
  --amber: #b7791f;
  --night: #111827;
  --night-2: #1f2937;
  --shadow: 0 18px 44px rgba(22, 34, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f9fc;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(216, 224, 236, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 32px rgba(22, 34, 55, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--night);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #40516b;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: #eef4ff;
  color: var(--blue);
}

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 186px;
  color: #40516b;
  font-size: 13px;
  font-weight: 750;
}

.language-control select {
  width: 132px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.language-control select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 24px 64px;
  background: var(--night);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.58;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 18, 32, 0.9) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(11, 18, 32, 0.32) 100%),
    linear-gradient(0deg, rgba(247, 249, 252, 1) 0%, rgba(247, 249, 252, 0) 24%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7dd3fc;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
}

.primary-action {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.metric-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.metric-strip div {
  min-height: 128px;
  padding: 24px;
  background: #fff;
}

.metric-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.metric-strip span {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p,
.feature-copy p,
.logistics-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.compact {
  max-width: 760px;
}

.business-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-section {
  padding-top: 54px;
}

.pricing-table-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: auto;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-label-col {
  width: 18%;
}

.pricing-plan-col {
  width: 27.33%;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid var(--line);
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
  word-break: break-word;
  font-size: 15px;
  line-height: 1.5;
}

.pricing-label-header {
  background: #f5f7fb;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  position: sticky;
  left: 0;
  z-index: 4;
  box-shadow: 10px 0 16px -14px rgba(15, 23, 42, 0.35);
}

.pricing-plan-header {
  color: #fff;
  font-weight: 900;
}

.pricing-plan-one {
  background: linear-gradient(180deg, #5b8def 0%, #4f7fe6 100%);
}

.pricing-plan-two {
  background: linear-gradient(180deg, #42cfd1 0%, #2cbec2 100%);
}

.pricing-plan-three {
  background: linear-gradient(180deg, #f6bf17 0%, #efad04 100%);
}

.pricing-price {
  display: block;
  font-size: 26px;
  line-height: 1.1;
}

.pricing-summary-row th,
.pricing-summary-row td {
  background: #fbfcfe;
  font-weight: 650;
}

.pricing-summary-row th {
  background: #f5f7fb;
}

.pricing-label-cell {
  background: #fafcff;
  text-align: left !important;
  font-weight: 800;
  position: sticky;
  left: 0;
  z-index: 3;
  box-shadow: 10px 0 16px -14px rgba(15, 23, 42, 0.28);
}

.pricing-group-row th {
  text-align: left;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.pricing-group-blue th {
  background: #e7f1ff;
}

.pricing-group-green th {
  background: #e7faec;
}

.pricing-group-amber th {
  background: #fdf4db;
}

.pricing-group-violet th {
  background: #f3e9ff;
}

.pricing-group-rose th {
  background: #fdebec;
}

.pricing-table tbody td {
  color: var(--muted);
}

.pricing-table tbody tr:hover td,
.pricing-table tbody tr:hover th {
  background: #f7fbff;
}

.pricing-table tbody tr:nth-child(even):not(.pricing-group-row):not(.pricing-summary-row) td,
.pricing-table tbody tr:nth-child(even):not(.pricing-group-row):not(.pricing-summary-row) th {
  background: #fcfdff;
}

.business-card,
.process-step {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(22, 34, 55, 0.06);
}

.business-card span,
.process-step strong {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.business-card p,
.process-step p,
.showcase-item p {
  color: var(--muted);
}

.feature-band,
.logistics-band,
.contact-section {
  display: grid;
  align-items: center;
  gap: 36px;
  border-radius: 8px;
}

.feature-band {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
}

.dark-band {
  background: var(--night);
  color: #fff;
}

.dark-band .feature-copy p,
.dark-band .check-list,
.dark-band figcaption {
  color: rgba(255, 255, 255, 0.74);
}

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

.check-list li {
  position: relative;
  min-height: 34px;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--green);
}

.feature-visual,
.logistics-visual {
  margin: 0;
}

.feature-visual img,
.logistics-visual img,
.showcase-item img {
  width: 100%;
  border: 1px solid rgba(216, 224, 236, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

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

.showcase-item {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(22, 34, 55, 0.08);
}

.showcase-item.large {
  grid-row: span 2;
}

.showcase-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  box-shadow: none;
}

.process-section {
  padding-top: 30px;
}

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

.process-step {
  min-height: 230px;
}

.process-step:nth-child(2) strong {
  color: var(--cyan);
}

.process-step:nth-child(3) strong {
  color: var(--green);
}

.process-step:nth-child(4) strong {
  color: var(--amber);
}

.logistics-band {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  padding-top: 38px;
}

.logistics-visual img {
  box-shadow: var(--shadow);
}

.contact-section {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 48px;
  padding: 44px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-section h2 {
  max-width: 760px;
}

.contact-section .primary-action {
  white-space: nowrap;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 32px;
  padding: 20px 0 6px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.site-footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue);
}

.privacy-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.privacy-modal.is-open {
  display: flex;
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(4px);
}

.privacy-modal-panel {
  position: relative;
  width: min(780px, 100%);
  max-height: min(820px, calc(100vh - 48px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.3);
}

.privacy-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px 20px;
  border-bottom: 1px solid var(--line);
}

.privacy-modal-header .eyebrow {
  margin-bottom: 8px;
}

.privacy-modal-header h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.privacy-modal-close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.privacy-modal-close:hover,
.privacy-modal-close:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  outline: none;
}

.privacy-modal-close span {
  font-size: 28px;
  line-height: 1;
}

.privacy-modal-content {
  max-height: calc(min(820px, 100vh - 48px) - 112px);
  overflow: auto;
  padding: 26px 30px 34px;
  color: #334155;
  font-size: 15px;
}

.privacy-modal-content h3 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.privacy-modal-content h3:first-child {
  margin-top: 0;
}

.privacy-modal-content p {
  margin-bottom: 12px;
}

.privacy-modal-content ul {
  margin: 8px 0 14px;
  padding-left: 22px;
}

.privacy-modal-content li {
  margin-bottom: 7px;
}

.privacy-modal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.privacy-modal-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    display: none;
  }

  .language-control {
    margin-left: auto;
    min-width: 132px;
  }

  .language-control span {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 120px;
  }

  .hero-image {
    object-position: 58% top;
    opacity: 0.5;
  }

  .hero-copy {
    font-size: 17px;
  }

  .metric-strip,
  .business-grid,
  .process-grid,
  .feature-band,
  .showcase-grid,
  .logistics-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .pricing-table-shell {
    overflow-x: auto;
  }

  .pricing-table {
    min-width: 980px;
  }

  .feature-band {
    padding: 72px 16px;
  }

  .section {
    padding: 70px 0;
  }

  .business-card,
  .process-step {
    min-height: auto;
  }

  .contact-section {
    padding: 30px 22px;
  }

  .contact-section .primary-action {
    width: 100%;
  }

  .site-footer {
    width: calc(100% - 32px);
    margin-bottom: 24px;
  }

  .privacy-modal {
    padding: 12px;
  }

  .privacy-modal-panel {
    max-height: calc(100vh - 24px);
  }

  .privacy-modal-header {
    padding: 22px 20px 16px;
  }

  .privacy-modal-content {
    max-height: calc(100vh - 124px);
    padding: 22px 20px 28px;
  }
}

@media (max-width: 720px) {
  .pricing-section {
    padding-top: 44px;
  }

  .pricing-table-shell {
    border-radius: 8px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 14px;
    font-size: 14px;
  }

  .pricing-label-header {
    font-size: 18px;
  }

  .pricing-price {
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 62px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .language-control {
    min-width: 112px;
  }

  .language-control select {
    width: 112px;
    font-size: 12px;
  }

  .hero {
    min-height: 86vh;
    padding: 112px 16px 52px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

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

  .metric-strip {
    margin-top: -22px;
  }

  .metric-strip div {
    min-height: auto;
    padding: 20px;
  }

  .section-heading p,
  .feature-copy p,
  .logistics-copy p,
  .contact-section p {
    font-size: 16px;
  }

  .pricing-price {
    font-size: 22px;
  }
}
