:root {
  --color-deep-teal: #0f5f64;
  --color-deep-teal-900: #002b36;
  --color-deep-teal-800: #0b4f54;
  --color-deep-teal-700: #0e6f75;
  --color-offwhite: #fafaf7;
  --color-paper: #ffffff;
  --color-sand: #e7d7c8;
  --color-sand-soft: #f4ece3;
  --color-sand-faint: #fbf6ef;
  --color-icon-bg: #f5f1eb;
  --color-ink: #0b2530;
  --color-muted: #5c6d72;
  --color-line: rgba(11, 37, 48, 0.1);
  --color-shadow: rgba(11, 37, 48, 0.1);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1160px;
  --header-height: 74px;
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-offwhite);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6, p { overflow-wrap: break-word; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 99;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--color-deep-teal);
}
.skip-link:focus { transform: translateY(0); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--color-deep-teal-900);
}
.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}
.site-footer .brand-logo { height: 30px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 37, 48, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 16px;
}
@media (min-width: 981px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(170px, auto) 1fr minmax(280px, auto);
    align-items: center;
    column-gap: 22px;
  }
  .brand { justify-self: start; }
  .desktop-nav { justify-self: center; }
  .header-actions { justify-self: end; }
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.desktop-nav a {
  position: relative;
  color: var(--color-ink);
  padding: 9px 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--color-deep-teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}
.desktop-nav a:hover { color: var(--color-deep-teal); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions,
.header-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.locale-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 8px;
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--color-muted);
}
.locale-link:hover { color: var(--color-deep-teal); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.site-header .btn:hover { transform: none; }
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(15, 95, 100, 0.32);
  outline-offset: 3px;
}
.btn-primary {
  color: #fff;
  background: var(--color-deep-teal);
  box-shadow: 0 16px 32px rgba(15, 95, 100, 0.22);
}
.btn-primary:hover { background: var(--color-deep-teal-800); }
.btn-secondary,
.btn-ghost {
  color: var(--color-deep-teal-900);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(15, 95, 100, 0.34);
}
.btn-secondary:hover,
.btn-ghost:hover { background: #fff; border-color: rgba(15, 95, 100, 0.55); }
.btn-light {
  color: var(--color-deep-teal-900);
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}
.btn-small { min-height: 42px; padding-inline: 20px; font-size: 0.88rem; }
.header-auth .btn-ghost { min-height: 42px; padding-inline: 16px; font-size: 0.88rem; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: var(--color-deep-teal-900);
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
}
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 43, 54, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(360px, 100vw);
  padding: 20px 18px 24px;
  background: #fff;
  border-left: 1px solid var(--color-line);
  box-shadow: -12px 0 48px rgba(11, 37, 48, 0.22);
  overflow-y: auto;
}
.mobile-menu[hidden],
.mobile-menu-backdrop[hidden] { display: none !important; }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--color-line);
}
.brand-name {
  color: var(--color-deep-teal-900);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.menu-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--color-deep-teal-900);
  background: var(--color-icon-bg);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.mobile-menu a:not(.btn) {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-deep-teal-900);
  background: var(--color-offwhite);
  border: 1px solid var(--color-line);
}
.mobile-menu a:not(.btn):hover,
.mobile-menu a:not(.btn):focus-visible {
  background: var(--color-sand-soft);
}
.mobile-menu-auth {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--color-line);
}
.mobile-menu-auth .btn { width: 100%; }
.mobile-menu-cta { width: 100%; }

.top-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 34%, rgba(231, 215, 200, 0.78) 0%, rgba(231, 215, 200, 0.38) 32%, rgba(231, 215, 200, 0) 58%),
    linear-gradient(90deg, #fffdf9 0%, #fbf8f3 48%, #f0e5d9 100%);
}
.top-banner::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -58px;
  z-index: 0;
  height: 126px;
  background: var(--color-offwhite);
  border-radius: 50% 50% 0 0 / 58% 58% 0 0;
}
.hero { isolation: isolate; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  min-height: 560px;
  padding: 70px 0 104px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.hero .eyebrow {
  color: var(--color-deep-teal);
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.88rem;
  font-weight: 800;
}
.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--color-deep-teal-900);
  font-size: clamp(2.3rem, 3.7vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 800;
}
.hero-lead {
  max-width: 535px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.66;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-art {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 48px rgba(11, 37, 48, 0.14));
}
.hero-art img {
  width: 100%;
  max-width: 660px;
  margin-inline: auto;
}

.value-strip {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  background: var(--color-offwhite);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(11, 37, 48, 0.055);
}
.value-grid article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 112px;
  padding: 24px 20px;
  border-right: 1px solid var(--color-line);
}
.value-grid article:last-child { border-right: 0; }
.line-icon,
.card-icon,
.cta-icon-wrap {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.line-icon {
  width: 46px;
  height: 46px;
  color: var(--color-deep-teal);
  border: 1px solid rgba(15, 95, 100, 0.16);
  border-radius: 999px;
  background: var(--color-sand-faint);
}
.value-grid h2 {
  margin: 0 0 5px;
  color: var(--color-deep-teal-900);
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 800;
}
.value-grid p { margin: 0; color: var(--color-muted); font-size: 0.88rem; line-height: 1.46; }

.section { padding: 66px 0; }
.section-narrow { max-width: 760px; text-align: center; }
.section h2,
.integration-section h2,
.workflow-section h2,
.faq-section h2,
.cta-section h2 {
  margin: 0;
  color: var(--color-deep-teal-900);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.052em;
}
.section-narrow > p:not(.section-kicker),
.integration-section .section-narrow > p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 18px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(11, 37, 48, 0.045);
}
.card-icon {
  width: 54px;
  height: 54px;
  color: var(--color-deep-teal);
  background: var(--color-sand-faint);
  border: 1px solid rgba(15, 95, 100, 0.13);
  border-radius: 999px;
}
.feature-card h3 {
  grid-column: 2;
  margin: 3px 0 5px;
  color: var(--color-deep-teal-900);
  font-size: 1.05rem;
  line-height: 1.22;
  font-weight: 800;
}
.feature-card p {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}
.feature-card:hover {
  border-color: rgba(15, 95, 100, 0.22);
  box-shadow: 0 18px 42px rgba(11, 37, 48, 0.075);
}


.freight-section {
  padding: 70px 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(15, 95, 100, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(250, 250, 247, 0.96), rgba(244, 236, 227, 0.7));
}
.freight-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(15, 95, 100, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 100%, rgba(231, 215, 200, 0.64), transparent 34%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 58px rgba(11, 37, 48, 0.075);
}
.freight-copy h2 {
  margin: 0;
  color: var(--color-deep-teal-900);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.052em;
}
.freight-copy > p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.66;
}
.freight-copy .freight-note {
  padding: 14px 16px;
  border: 1px solid rgba(15, 95, 100, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}
.freight-items { display: grid; gap: 14px; }
.freight-items article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(11, 37, 48, 0.045);
}
.freight-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--color-deep-teal);
  background: var(--color-sand-faint);
  border: 1px solid rgba(15, 95, 100, 0.13);
  border-radius: 999px;
}
.freight-items h3 {
  margin: 3px 0 6px;
  color: var(--color-deep-teal-900);
  font-size: 1.02rem;
  line-height: 1.22;
  font-weight: 900;
}
.freight-items p { margin: 0; color: var(--color-muted); font-size: 0.93rem; line-height: 1.55; }

.integration-section {
  padding: 74px 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(231, 215, 200, 0.55), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.52), rgba(231,215,200,0.24));
}
.integration-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.integration-logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 18px 14px;
  color: var(--color-deep-teal-900);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
  box-shadow: 0 14px 30px rgba(11, 37, 48, 0.055);
}
.integration-logo::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--color-deep-teal);
  box-shadow: 0 0 0 7px rgba(15, 95, 100, 0.08);
}

.shop-platforms-section {
  padding: 74px 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(231, 215, 200, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(250,250,247,0.96));
}
.shop-platforms-section h2 {
  margin: 0;
  color: var(--color-deep-teal-900);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.052em;
}
.shop-platforms-section .section-narrow > p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}
.shop-platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.shop-platform-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 132px;
  padding: 24px 18px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(11, 37, 48, 0.055);
}
.shop-platform-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
}
.shop-platform-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 40px;
  object-fit: contain;
}
.shop-platform-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}
.shop-platform-card--coming .shop-platform-logo img {
  opacity: 0.72;
  filter: grayscale(0.15);
}
.shop-platform-card--coming p {
  color: var(--color-deep-teal-700);
  font-weight: 600;
}

.workflow-section { padding-bottom: 32px; }
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(11, 37, 48, 0.055);
  overflow: hidden;
}
.workflow-grid article {
  position: relative;
  padding: 28px 30px 30px 86px;
  min-height: 132px;
  border-right: 1px solid var(--color-line);
}
.workflow-grid article:last-child { border-right: 0; }
.workflow-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -13px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--color-deep-teal);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  font-weight: 900;
}
.step-number {
  position: absolute;
  left: 30px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--color-deep-teal-900);
  background: var(--color-sand-faint);
  border: 1px solid rgba(15, 95, 100, 0.13);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
}
.workflow-grid h3 { margin: 0 0 5px; color: var(--color-deep-teal-900); font-size: 1.05rem; }
.workflow-grid p { margin: 0; color: var(--color-muted); font-size: 0.95rem; }

.mini-features { padding: 4px 0 46px; }
.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}
.mini-feature-grid a,
.mini-feature-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 66px;
  padding: 12px 14px;
  border-right: 1px solid var(--color-line);
  color: var(--color-deep-teal-900);
  font-weight: 800;
  text-align: center;
}
.mini-feature-grid a:last-child,
.mini-feature-grid span:last-child { border-right: 0; }
.mini-feature-grid svg { color: var(--color-deep-teal); flex: 0 0 auto; }
.mini-feature-grid a:hover { background: var(--color-sand-soft); }

.faq-section { padding: 72px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.faq-grid > div:first-child p:not(.section-kicker) { color: var(--color-muted); }
.faq-list { display: grid; gap: 12px; }
details {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(11, 37, 48, 0.05);
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding: 18px 20px;
  color: var(--color-deep-teal-900);
  font-weight: 900;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--color-deep-teal); font-size: 1.3rem; }
details[open] summary::after { content: "−"; }
details p { margin: -4px 20px 20px; color: var(--color-muted); }

.cta-section { padding: 24px 0 70px; }
.cta-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(28px, 4.4vw, 44px);
  color: #fff;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,0.13), transparent 30%),
    linear-gradient(135deg, var(--color-deep-teal-900), var(--color-deep-teal));
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 43, 54, 0.24);
}
.cta-icon-wrap {
  width: 58px;
  height: 58px;
  color: var(--color-deep-teal-900);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.cta-copy { min-width: 0; }
.cta-card h2 { color: #fff; font-size: clamp(1.65rem, 2.4vw, 2.35rem); margin: 0; }
.cta-card p:not(.section-kicker) { margin: 10px 0 0; max-width: 680px; color: rgba(255,255,255,0.82); }
.section-kicker.light { color: rgba(255,255,255,0.68); margin-bottom: 8px; }

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--color-line);
  background: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-footer nav { display: flex; align-items: center; gap: 24px; font-weight: 750; font-size: 0.92rem; }
.site-footer nav a:hover { color: var(--color-deep-teal); }
.site-footer p { justify-self: end; margin: 0; color: var(--color-muted); font-size: 0.9rem; }

@media (min-width: 981px) and (max-width: 1180px) {
  .desktop-nav { gap: 14px; font-size: 0.84rem; }
  .header-auth .btn-ghost { display: none; }
  .btn-small { padding-inline: 16px; font-size: 0.84rem; }
}

@media (max-width: 980px) {
  :root { --header-height: 68px; }
  .desktop-nav,
  .header-auth { display: none; }
  .menu-button { display: block; }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 48px 0 84px;
    gap: 28px;
  }
  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.85rem); letter-spacing: -0.045em; }
  .hero-art { max-width: 680px; margin-inline: auto; }
  .value-grid { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
  .value-grid article:nth-child(1),
  .value-grid article:nth-child(2) { border-bottom: 1px solid var(--color-line); }
  .value-grid article:nth-child(2n) { border-right: 0; }
  .value-grid article:nth-child(odd) { border-right: 1px solid var(--color-line); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .freight-card { grid-template-columns: 1fr; }
  .integration-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-grid article { border-right: 0; border-bottom: 1px solid var(--color-line); }
  .workflow-grid article:last-child { border-bottom: 0; }
  .workflow-grid article:not(:last-child)::after { display: none; }
  .mini-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-feature-grid a:nth-child(2n),
  .mini-feature-grid span:nth-child(2n) { border-right: 0; }
  .mini-feature-grid a:nth-child(-n+2),
  .mini-feature-grid span:nth-child(-n+2) { border-bottom: 1px solid var(--color-line); }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-icon-wrap { display: none; }
  .cta-card .btn { width: fit-content; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; }
  .site-footer p { justify-self: start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, var(--container)); }
  .brand-logo { height: 30px; }
  .top-banner { background: linear-gradient(180deg, #fffdf9 0%, #f0e5d9 100%); }
  .top-banner::after { bottom: -48px; height: 100px; }
  .hero-grid { padding: 30px 0 70px; }
  .eyebrow { font-size: 0.78rem; margin-bottom: 10px; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.25rem); letter-spacing: -0.06em; }
  .hero-lead { margin-top: 18px; font-size: 1rem; }
  .hero-buttons { display: grid; gap: 10px; margin-top: 26px; }
  .hero-buttons .btn { width: 100%; }
  .hero-art { margin-top: 0; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article {
    min-height: 86px;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--color-line);
    padding: 18px;
  }
  .value-grid article:last-child { border-bottom: 0; }
  .line-icon { width: 42px; height: 42px; }
  .section, .freight-section, .integration-section, .shop-platforms-section, .faq-section { padding: 50px 0; }
  .section h2,
  .integration-section h2,
  .shop-platforms-section h2,
  .workflow-section h2,
  .faq-section h2 { font-size: clamp(1.8rem, 8vw, 2.55rem); }
  .feature-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
  .feature-card { min-height: unset; padding: 18px; gap: 14px; }
  .card-icon { width: 48px; height: 48px; }
  .freight-card { padding: 22px; border-radius: 20px; }
  .freight-copy h2 { font-size: clamp(1.8rem, 8vw, 2.55rem); }
  .freight-items article { padding: 16px; gap: 12px; }
  .freight-icon { width: 44px; height: 44px; }
  .integration-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .integration-logo { min-height: 68px; font-size: 0.9rem; }
  .shop-platforms-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .shop-platform-card { min-height: 112px; padding: 18px 14px 16px; }
  .workflow-grid { margin-top: 24px; }
  .workflow-grid article { padding: 20px 20px 20px 72px; min-height: 100px; }
  .step-number { top: 20px; left: 20px; }
  .mini-feature-grid { grid-template-columns: 1fr; }
  .mini-feature-grid a,
  .mini-feature-grid span { justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--color-line); }
  .mini-feature-grid a:last-child,
  .mini-feature-grid span:last-child { border-bottom: 0; }
  summary { min-height: 58px; padding: 16px; }
  details p { margin: -2px 16px 16px; }
  .cta-section { padding: 12px 0 52px; }
  .cta-card { padding: 24px; border-radius: 18px; text-align: left; }
  .cta-card .btn { width: 100%; }
  .site-footer nav { flex-wrap: wrap; gap: 14px 18px; }
}

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