* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #101312;
  --muted: #5f6865;
  --paper: #ffffff;
  --soft: #faf5f4;
  --line: rgba(16, 19, 18, 0.12);
  --line-strong: rgba(16, 19, 18, 0.22);
  --teal: #e53935;
  --teal-dark: #c62828;
  --coral: #e53935;
  --amber: #d79a1e;
  --night: #111716;
  --night-2: #18201f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 19, 18, 0.12);
  --radius: 8px;
  --header-h: 76px;
  --container: min(1160px, calc(100% - 40px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(16, 19, 18, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(16, 19, 18, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.site-header > .brand {
  grid-column: 1;
  justify-self: start;
  z-index: 1;
}

.brand-icon {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.brand-tagline {
  font-size: 12px;
  font-weight: 400;
  color: #6f7572;
  white-space: nowrap;
}

.site-header .brand-name,
.site-header .brand-tagline {
  color: var(--white);
  transition: color 0.25s ease;
}

.site-header.is-scrolled .brand-name,
.site-header.is-scrolled .brand-tagline {
  color: #000000;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(229, 57, 53, 0.22);
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 17px;
  font-weight: 850;
}

.brand-copy {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.nav-capsule {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  width: auto;
  min-width: 0;
  padding: 6px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 9px 0;
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.18s ease;
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  transform: translateY(1px);
  transition: transform 0.18s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: translateY(1px) rotate(180deg);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-active .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 60;
  min-width: 188px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 36px rgba(16, 19, 18, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -4px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.site-nav .nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.site-nav .nav-dropdown-menu a:hover,
.site-nav .nav-dropdown-menu a.active {
  color: #000000;
  background: #f0f0f0;
}

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.header-link:hover {
  background: var(--soft);
  border-color: rgba(229, 57, 53, 0.42);
}

.header-link.btn-login {
  position: relative;
  min-height: auto;
  margin-right: 8px;
  padding: 8px 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.header-link.btn-login::before,
.header-link.btn-login::after {
  display: none;
}

.header-link.btn-login:hover {
  color: var(--ink);
  background: #f0f0f0;
  border: none;
  box-shadow: none;
}

.header-link.btn-login:focus-visible {
  outline: 2px solid rgba(16, 19, 18, 0.2);
  outline-offset: 2px;
}

.header-link.btn-login:active {
  color: var(--ink);
  background: #e8e8e8;
  border: none;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.lang-switch button {
  width: 34px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  grid-column: 1;
  justify-self: start;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-hero {
  min-height: 660px;
  height: 90svh;
  max-height: 940px;
  color: #fff;
  background-image: url("../img/photos/port-containers.jpg");
  background-size: cover;
  background-position: center 44%;
}

.page-hero {
  min-height: 430px;
  height: 54svh;
  max-height: 560px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.08) 100%),
    url("../img/logistics-routes.svg"),
    url("../img/photos/port-containers.jpg");
  background-size: cover, min(720px, 54vw) auto, cover;
  background-position: center, right 2vw center, center;
}

.page-hero.services-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.08) 100%),
    url("../img/warehouse-qc.svg"),
    url("../img/photos/warehouse-shelves.jpg");
}

.page-hero.solutions-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.08) 100%),
    url("../img/analytics-growth.svg"),
    url("../img/photos/analytics-laptop.jpg");
}

.page-hero.integrations-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.08) 100%),
    url("../img/integration-network.svg"),
    url("../img/photos/data-team.jpg");
}

.page-hero.pricing-hero,
.page-hero.help-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.08) 100%),
    url("../img/quote-desk.svg"),
    url("../img/photos/packing-boxes.jpg");
}

.page-hero.about-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.08) 100%),
    url("../img/team-ops.svg"),
    url("../img/photos/office-team.jpg");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(229, 57, 53, 0.13) 48%, transparent 54%),
    linear-gradient(65deg, transparent 0 58%, rgba(228, 87, 61, 0.1) 63%, transparent 68%);
  background-size: 180% 180%, 200% 200%;
  animation: routeDrift 16s linear infinite;
}

@keyframes routeDrift {
  0% {
    background-position: 0% 50%, 100% 50%;
  }
  100% {
    background-position: 100% 50%, 0% 50%;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 122px 0 82px;
}

.home-hero .hero-inner {
  padding-bottom: 136px;
}

.hero-copy {
  width: min(730px, 100%);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.12;
  font-weight: 800;
  color: #162019;
}

.home-hero h1 {
  max-width: 780px;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.08;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

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

.hero p,
.page-hero p {
  max-width: 600px;
  margin: 14px 0 0;
  color: #3a4240;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.6;
}

.home-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.7vw, 18px);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  background: #fdecea;
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.btn-ghost:hover {
  border-color: rgba(229, 57, 53, 0.46);
  background: rgba(229, 57, 53, 0.08);
}

.hero .btn-light {
  background: #e53935;
  color: var(--white);
}

.hero .btn-light:hover {
  background: #c62828;
}

.home-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.home-hero .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.btn-outline {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--ink);
}

.hero-flow {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.78);
}

.hero-flow-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-flow span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 48px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
}

.section {
  padding: 94px 0;
}

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

.section.alt {
  background: var(--soft);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head.center {
  display: block;
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 850;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.compare-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.06);
}

.compare-panel.strong {
  border-color: rgba(39, 174, 96, 0.28);
  background: linear-gradient(180deg, #ffffff, #eef8f2);
}

.compare-panel h3 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.2;
}

.compare-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  color: #34424c;
  line-height: 1.45;
  font-weight: 600;
}

.compare-panel li > span:first-child {
  width: 22px;
  flex: 0 0 22px;
  color: #e74c3c;
  font-weight: 900;
}

.compare-panel.strong li > span:first-child {
  color: #27ae60;
}

.contrast-section .section-lead {
  max-width: 720px;
  margin: 0 auto;
}

.value-section .section-head.center {
  margin-bottom: 36px;
}

.value-heading {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.value-title-accent {
  color: var(--ink);
}

.value-section .section-lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
}

.value-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 24, 32, 0.06);
}

.value-tabs {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid var(--line);
}

.value-item {
  position: relative;
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 28px 36px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
}

.value-item:last-child {
  border-bottom: 0;
}

.value-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: #b31c31;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-item.active {
  background: #fff;
}

.value-item.active::after {
  opacity: 1;
}

.value-item strong {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--ink);
}

.value-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.value-visual {
  min-width: 0;
  overflow: hidden;
  background: #f4f6f8;
  aspect-ratio: 1000 / 534;
}

.value-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(calc(var(--value-index, 0) * -100%), 0, 0);
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.value-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
}

.value-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  background: var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.proof-item {
  min-height: 140px;
  padding: 32px 24px;
  background: #ffffff;
}

.proof-item strong {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.proof-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.global-section {
  padding: 80px 0;
}

.global-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.global-text .eyebrow {
  margin-bottom: 12px;
}

.global-text h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  color: #162019;
}

.global-text > p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.global-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}

.global-stats li strong {
  display: block;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #162019;
}

.global-stats li span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.global-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.how-section {
  background: #fff;
}

.how-section-title {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  font-weight: 700;
  color: #1b1b1b;
}

.how-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.how-step-card {
  position: relative;
  flex: 1 1 0;
  max-width: 285px;
  min-width: 0;
  min-height: 332px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 32px 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  box-shadow: none;
}

.how-step-card--left {
  background-image: url("../img/how/htsd-item-bg-left.png");
}

.how-step-card--mid {
  background-image: url("../img/how/htsd-item-bg.png");
}

.how-step-card--right {
  background-image: url("../img/how/htsd-item-bg-right.png");
}

.how-step-badge {
  display: inline-flex;
  align-self: flex-start;
  height: 28px;
  padding: 4px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: #333;
}

.how-step-text {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #333;
}

.how-step-art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}

.how-step-art img {
  width: 208px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.how-flow-arrow {
  flex: 0 0 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  color: #333;
  font-size: 20px;
  line-height: 1;
}

.how-flow-arrow::before {
  content: "›";
  display: block;
  transform: translateY(-1px);
}

.how-flow-arrow svg {
  display: none;
}

.how-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.how-connect-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: auto;
  padding: 12px 24px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.how-connect-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.how-connect-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: none;
  transform: none;
}

.services-section .section-head {
  margin-bottom: 32px;
}

.service-growth-title {
  max-width: 720px;
  margin-inline: auto;
}

.service-growth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1160px;
  margin-inline: auto;
}

.service-growth-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-growth-card:hover {
  background: #ff7700;
  border-color: #ff7700;
  box-shadow: 0 10px 28px rgba(255, 119, 0, 0.28);
}

.service-growth-art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f2f2f2;
  transition: background-color 0.2s ease;
}

.service-growth-art img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.service-growth-card:hover .service-growth-art {
  background: rgba(255, 255, 255, 0.22);
}

.service-growth-card:hover .service-growth-art img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.service-growth-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.service-growth-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  transition: color 0.2s ease;
}

.service-growth-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.service-growth-card:hover h3,
.service-growth-card:hover p {
  color: #fff;
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.services-cta .btn-outline {
  min-width: 200px;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#faq .faq-list {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

#faq .faq-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  border-radius: 0;
  overflow: hidden;
  transition: background 0.2s ease;
}

#faq .faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
  border-radius: 12px 12px 0 0;
}

#faq .faq-item:first-child,
#faq .faq-item:last-child {
  border-radius: 12px;
}

.faq-item:last-child {
  border-radius: 0 0 12px 12px;
}

.faq-item[open] {
  background: #fffafa;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #162019;
  cursor: pointer;
  list-style: none;
  user-select: none;
  line-height: 1.45;
  transition: color 0.18s ease;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  color: var(--teal);
  background: rgba(229, 57, 53, 0.08);
  transition: transform 0.25s ease, background 0.18s ease;
}

.faq-item[open] .faq-q::after {
  content: "−";
  transform: rotate(0);
}

.faq-q:hover {
  color: var(--ink);
}

.faq-a {
  padding: 0 24px 20px 24px;
}

.faq-a p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-item[open] .faq-a {
  animation: faqSlideIn 0.3s ease;
}

@keyframes faqSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 680px) {
  .faq-list {
    margin-top: 32px;
    max-width: 100%;
  }

  #faq .faq-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-q {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-a {
    padding: 0 18px 16px 18px;
  }

  .faq-a p {
    font-size: 13.5px;
  }

  .faq-q::after {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.service-tile {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 0.18s ease;
}

.service-tile::after,
.detail-card::after,
.integration-cell::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.service-tile:hover {
  background: rgba(229, 57, 53, 0.03);
  transform: none;
}

.service-tile:hover::after,
.detail-card:hover::after,
.integration-cell:hover::after {
  transform: scaleX(1);
}

.tile-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(229, 57, 53, 0.1);
  color: var(--ink);
  font-weight: 850;
}

.service-tile h3,
.detail-card h3,
.solution-row h3,
.price-plan h3,
.help-item h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.service-tile p,
.detail-card p,
.solution-row p,
.price-plan p,
.help-item p {
  margin: 0;
  color: var(--muted);
}

.workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.workflow-step {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.workflow-step:last-child {
  border-right: 0;
}

.workflow-step span {
  color: var(--coral);
  font-weight: 850;
}

.workflow-step h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
}

.ops-surface {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 32px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.ops-panel {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  overflow: hidden;
}

.ops-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.ops-bar strong {
  font-size: 15px;
}

.ops-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(229, 57, 53, 0.16);
  animation: opsPulse 1.8s ease-in-out infinite;
}

@keyframes opsPulse {
  0%, 100% {
    box-shadow: 0 0 0 5px rgba(229, 57, 53, 0.12);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(229, 57, 53, 0);
  }
}

.ops-table {
  display: grid;
}

.ops-row {
  display: grid;
  grid-template-columns: 1fr 0.75fr 0.7fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.ops-row:last-child {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.status.green {
  background: #ffe8e6;
  color: var(--ink);
}

.status.amber {
  background: #fff0c4;
  color: #8a620f;
}

.status.coral {
  background: #ffe8d9;
  color: #9f321f;
}

.ops-side {
  display: grid;
  gap: 0;
}

.ops-kpi {
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.ops-kpi:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ops-kpi:first-child {
  padding-top: 0;
}

.ops-kpi strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.ops-kpi span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.progress-line {
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(16, 19, 18, 0.1);
  overflow: hidden;
}

.progress-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.media-block {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  background: var(--night);
}

.media-block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 52%, rgba(229, 57, 53, 0.26) 53%, transparent 55%),
    linear-gradient(40deg, transparent 0 63%, rgba(228, 87, 61, 0.2) 64%, transparent 66%),
    linear-gradient(180deg, transparent 0%, rgba(17, 23, 22, 0.2) 100%);
  background-size: 220% 220%, 210% 210%, cover;
  animation: mediaTrace 10s linear infinite;
}

@keyframes mediaTrace {
  0% {
    background-position: 0% 50%, 100% 50%, center;
  }
  100% {
    background-position: 100% 50%, 0% 50%, center;
  }
}

.media-block img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-block:hover img {
  transform: scale(1.04);
}

.media-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.media-caption strong {
  display: block;
  font-size: 22px;
}

.media-caption span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.text-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.text-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  color: var(--muted);
}

.text-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 99px;
  background: var(--teal);
}

.platform-strip {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.platform-strip span {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 780;
  text-align: center;
}

.platform-strip span::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.platform-strip span:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.platform-strip span:last-child {
  border-right: 0;
}

.platform-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  aspect-ratio: auto;
  min-height: 220px;
  overflow: visible;
  box-shadow: none;
}

.platform-visual img {
  width: min(280px, 72%);
  height: auto;
  object-fit: contain;
}

.platform-integrations .split {
  gap: clamp(32px, 5vw, 56px);
}

.platform-logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 8px 0 8px 28px;
  border-left: 1px solid var(--line);
  align-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.platform-logo-wall.is-ready {
  opacity: 1;
}

.integration-logo-wall {
  padding: 0;
  border-left: 0;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.platform-logo-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 14px;
  border: 0;
  background: #fff;
  overflow: hidden;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 19, 18, 0.1);
}

.platform-logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (prefers-reduced-motion: reduce) {
  .platform-logo-tile {
    transform: none;
  }

  .platform-logo-wall {
    transition: none;
  }
}

.partners-marquee-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #ffffff;
  overflow: hidden;
}

.partners-marquee {
  display: grid;
  gap: 16px;
}

.partners-row {
  height: 100px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #fff 20%, #fff 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #fff 20%, #fff 80%, transparent 100%);
}

.partners-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
}

.partners-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  height: 100%;
  gap: 40px;
  padding-right: 40px;
  box-sizing: content-box;
}

.partners-logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 100px;
}

.partners-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.enterprise-section {
  padding: 0;
}

.enterprise {
  width: 100%;
  margin: 0;
  padding: clamp(56px, 7vw, 96px) 0;
  border-radius: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 16%, rgba(255, 232, 160, 0.4), transparent 40%),
    radial-gradient(circle at 8% 86%, rgba(255, 190, 140, 0.16), transparent 42%),
    linear-gradient(105deg, #a84a3a 0%, #c47242 22%, #d4893a 48%, #dcb05a 74%, #e8d08a 100%);
}

.enterprise-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: center;
}

.enterprise-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 230, 170, 0.38);
  border-radius: 6px;
  color: #ffe9b0;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.enterprise-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: #ffffff;
}

.enterprise-copy p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

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

.enterprise-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
  line-height: 1.45;
}

.enterprise-list li::before {
  content: "✓";
  color: #ffe9b0;
  font-weight: 900;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.cta-band p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.cta-band .btn-light {
  background: var(--teal);
  color: var(--white);
}

.cta-band .btn-light:hover {
  background: var(--teal-dark);
}

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

.detail-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-card ul,
.price-plan ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
}

.detail-card li,
.price-plan li {
  list-style: none;
  color: var(--muted);
}

.detail-card li::before,
.price-plan li::before {
  content: "+";
  margin-right: 10px;
  color: var(--teal);
  font-weight: 850;
}

.solution-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.solution-row {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 0.5fr;
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.solution-row h3 {
  margin: 0;
}

.solution-row .tag {
  justify-self: end;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(229, 57, 53, 0.22);
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.integration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 28px;
  align-items: stretch;
}

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

.integration-cell {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.integration-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.integration-cell-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.integration-cell-text strong {
  display: block;
  font-size: 20px;
}

.integration-cell-text span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.event-log {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.event-log h3 {
  margin: 0 0 20px;
}

.event-line {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.event-line span:first-child {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
}

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

.price-plan {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-plan.featured {
  border-color: rgba(229, 57, 53, 0.44);
  background: #fff5f4;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.price-plan.featured p,
.price-plan.featured li {
  color: var(--muted);
}

.price-plan.featured .btn-light {
  background: var(--teal);
  color: var(--white);
}

.price {
  margin: 18px 0 4px;
  font-size: 34px;
  line-height: 1;
  font-weight: 860;
}

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

.price-plan .btn {
  margin-top: auto;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 790;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 40px;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

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

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

.field label {
  color: var(--ink);
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.quote-art {
  min-height: 270px;
  margin-top: 28px;
}

.quote-art img {
  min-height: 270px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.12);
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.form-status.is-success {
  color: var(--teal-dark);
}

.form-status.is-error {
  color: var(--coral);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-top: none;
  margin-top: -1px;
  padding-top: clamp(88px, 12vw, 140px);
  background:
    radial-gradient(ellipse 85% 55% at 12% 8%, rgba(255, 240, 200, 0.55), transparent 52%),
    linear-gradient(168deg,
      #e8d08a 0%,
      #dcb05a 16%,
      #d4893a 36%,
      #c47242 58%,
      #a84a3a 80%,
      #7a3228 100%);
}

/* Large wave + soft hazy fade into footer */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(120px, 14vw, 200px);
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.94) 22%,
    rgba(255, 255, 255, 0.72) 48%,
    rgba(255, 255, 255, 0.38) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0,0h1440v28C1140,148 900,12 720,96 540,180 300,24 0,112V0z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0,0h1440v28C1140,148 900,12 720,96 540,180 300,24 0,112V0z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Misty glow spilling along the wave crest */
.site-footer::after {
  content: "";
  position: absolute;
  top: clamp(16px, 2.5vw, 32px);
  left: -12%;
  width: 124%;
  height: clamp(96px, 12vw, 160px);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 248, 232, 0.52) 38%,
    rgba(255, 228, 190, 0.28) 68%,
    transparent 100%
  );
  filter: blur(26px);
  opacity: 0.95;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0,0h1440v20C1140,132 900,8 720,84 540,160 300,16 0,96V0z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0,0h1440v20C1140,132 900,8 720,84 540,160 300,16 0,96V0z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.footer-main {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(140px, 0.55fr));
  gap: 40px;
  padding: clamp(48px, 5vw, 64px) 0 clamp(72px, 7vw, 100px);
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand .brand-logo,
.footer-brand .brand-icon {
  width: 44px;
  height: 44px;
}

.footer-brand .brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-brand .brand-tagline {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand .brand-name,
.footer-brand .brand-tagline {
  color: #fff;
}

.footer-brand .brand-tagline {
  opacity: 0.8;
}

.footer-brand p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.75;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-col h3 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 236, 190, 0.95);
}

.footer-col a {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-col a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 0 clamp(72px, 8vw, 112px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.footer-payments img {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
}

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

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

@media (max-width: 1080px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }

  .nav-capsule {
    grid-column: auto;
    justify-self: auto;
    flex: 0;
    width: 0;
    min-width: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    gap: 0;
  }

  .menu-toggle {
    grid-column: auto;
    justify-self: auto;
    display: inline-block;
    margin-left: auto;
  }

  .header-actions {
    grid-column: auto;
    justify-self: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 40;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px 20px 26px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .nav-dropdown-toggle {
    color: var(--ink);
  }

  .site-nav a:hover,
  .site-nav a.active,
  .nav-dropdown-toggle:hover,
  .nav-dropdown.is-active .nav-dropdown-toggle,
  .nav-dropdown.is-open .nav-dropdown-toggle {
    color: var(--ink);
    background: #f0f0f0;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown {
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 0 0 0 12px;
    border-radius: 0;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    min-width: 0;
    padding: 0 0 8px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    pointer-events: none;
    transition: max-height 0.24s ease, visibility 0.24s ease;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    visibility: visible;
    max-height: 320px;
    pointer-events: auto;
    transform: none;
    opacity: 1;
  }

  .nav-dropdown-menu a,
  .site-nav .nav-dropdown-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 0;
    border-bottom: 1px solid rgba(16, 19, 18, 0.06);
    padding-left: 12px;
    color: var(--ink);
  }

  .nav-dropdown-menu a:last-child {
    border-bottom: 0;
  }

  .header-link {
    display: none;
  }

  .header-link.btn-login {
    display: inline-flex;
  }

  .section-head,
  .split,
  .split.reverse,
  .ops-surface,
  .integration-grid,
  .quote-layout,
  .enterprise-inner {
    grid-template-columns: 1fr;
  }

  .how-flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding-inline: 6%;
  }

  .how-step-card {
    flex: 1 1 calc(50% - 24px);
    max-width: none;
    min-height: auto;
    padding: 16px 12px 0;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    background-color: #f9f9f9;
    background-image: none !important;
  }

  .how-flow-arrow {
    display: none;
  }

  .service-growth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .service-growth-card {
    min-height: 240px;
    padding: 30px 26px;
  }

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

  .comparison-grid,
  .proof-grid,
  .workflow,
  .platform-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-panel {
    grid-template-columns: 1fr;
  }

  .value-tabs {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-item {
    padding: 22px 24px;
  }

  .value-item::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
  }

  .value-visual {
    aspect-ratio: 16 / 9;
  }

  .partners-row {
    height: 60px;
  }

  .partners-group {
    gap: 16px;
    padding-right: 16px;
  }

  .partners-logo {
    width: 140px;
    height: 60px;
  }

  .partners-marquee {
    gap: 8px;
  }

  .workflow-step:nth-child(2n),
  .platform-strip span:nth-child(2n) {
    border-right: 0;
  }

  .hero-flow-inner {
    width: 100%;
  }

  .hero-flow span {
    min-height: 48px;
    font-size: 11px;
    padding: 0 6px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .global-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .global-visual {
    order: -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 68px;
    --container: min(100% - 28px, 1160px);
  }

  .site-header {
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-tagline {
    display: none;
  }

  .lang-switch button {
    width: 30px;
  }

  .home-hero {
    min-height: 600px;
    height: 88svh;
  }

  .page-hero {
    min-height: 420px;
    height: 58svh;
  }

  .hero-inner {
    padding: 104px 0 78px;
  }

  .home-hero .hero-inner {
    padding-bottom: 132px;
  }

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

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-flow-inner {
    width: 100%;
  }

  .hero-flow span {
    min-height: 42px;
    font-size: 10px;
    padding: 0 5px;
  }

  .section {
    padding: 68px 0;
  }

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

  .global-section {
    padding: 48px 0;
  }

  .global-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
  }

  .global-stats li strong {
    font-size: 22px;
  }

  .how-flow {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    padding-inline: 0;
  }

  .how-step-card {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    min-height: auto;
    padding: 16px 12px 0;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    background-color: #f9f9f9;
    background-image: none !important;
  }

  .how-step-badge {
    height: 24px;
    padding: 2px 10px;
    font-size: 12px;
  }

  .how-step-text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  .how-step-art img {
    width: 80%;
    max-width: 180px;
  }

  .how-cta {
    margin-top: 20px;
  }

  .how-connect-btn {
    width: 100%;
    height: 40px;
    font-size: 14px;
  }

  .service-growth-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .service-growth-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .service-growth-card h3 {
    font-size: 18px;
  }

  .services-cta .btn-outline {
    width: 100%;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .comparison-grid,
  .proof-grid,
  .service-grid,
  .workflow,
  .detail-grid,
  .integration-map,
  .pricing-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .service-tile,
  .workflow-step,
  .detail-card,
  .price-plan {
    min-height: auto;
    padding: 24px;
  }

  .workflow-step,
  .platform-strip span {
    border-right: 0;
  }

  .ops-surface,
  .quote-form {
    padding: 18px;
  }

  .ops-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .split,
  .split.reverse {
    gap: 30px;
  }

  .media-block,
  .media-block img {
    min-height: 320px;
  }

  .platform-strip {
    grid-template-columns: 1fr;
  }

  .platform-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-strip span:last-child {
    border-bottom: 0;
  }

  .platform-visual {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 160px;
    padding: 28px 0 8px;
  }

  .platform-visual img {
    width: min(200px, 56%);
  }

  .platform-logo-wall {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    gap: 10px;
  }

  .platform-logo-tile {
    min-height: 0;
    border-radius: 12px;
    padding: 0;
  }

  .platform-logo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .solution-row .tag {
    justify-self: start;
  }

  .event-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-band {
    padding: 36px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 64px 0 56px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 80px;
  }

  .footer-payments {
    justify-content: flex-start;
  }

  .footer-payments img {
    height: 36px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: #4a554f;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease, color 0.2s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.15);
  background: #fff;
}

.back-to-top:active {
  transform: scale(0.92);
}

/* Premium B2B redesign */
.site-header {
  height: 72px;
  padding: 0 max(28px, calc((100vw - 1180px) / 2));
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(16, 19, 18, 0.06);
}

.site-header.is-scrolled .site-nav,
.site-header.is-scrolled .site-nav a,
.site-header.is-scrolled .nav-dropdown-toggle,
.site-header.is-scrolled .header-link.btn-login {
  color: var(--ink);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.active,
.site-header.is-scrolled .nav-dropdown-toggle:hover,
.site-header.is-scrolled .nav-dropdown.is-active .nav-dropdown-toggle,
.site-header.is-scrolled .nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--ink);
  background: #f0f0f0;
}

.site-header.is-scrolled .header-link.btn-login:hover {
  color: var(--ink);
  background: #f0f0f0;
}

.brand-icon {
  width: 44px;
  height: 44px;
}

.nav-capsule {
  padding: 6px 0;
}

.site-nav {
  gap: 16px;
}

.site-nav a {
  padding: 9px 14px;
  font-size: 13px;
  border-radius: 10px;
  color: var(--white);
}

.site-nav .nav-dropdown-menu a {
  color: #000000;
}

.nav-dropdown-toggle {
  font-size: 13px;
}

@media (max-width: 1080px) {
  .site-nav,
  .site-nav a,
  .nav-dropdown-toggle,
  .site-nav .nav-dropdown-menu a {
    color: var(--ink);
  }

  .site-nav a:hover,
  .site-nav a.active,
  .nav-dropdown-toggle:hover,
  .nav-dropdown.is-active .nav-dropdown-toggle,
  .nav-dropdown.is-open .nav-dropdown-toggle,
  .site-nav .nav-dropdown-menu a:hover,
  .site-nav .nav-dropdown-menu a.active {
    color: var(--ink);
    background: #f0f0f0;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
    left: auto;
  }
}

.header-link {
  border-color: rgba(16, 19, 18, 0.18);
  background: #ffffff;
}

.header-link.btn-login {
  border: none;
  background: transparent;
}

.hero {
  isolation: isolate;
}

.hero::after,
.media-block::after {
  display: none;
}

.home-hero {
  min-height: 780px;
  height: 88svh;
  max-height: 1000px;
  color: #fff;
  background-image: url("../img/photos/port-containers.jpg");
  background-size: cover;
  background-position: center 44%;
}

.page-hero {
  min-height: 440px;
  height: 56svh;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 22%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.0) 100%),
    url("../img/photos/port-containers.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero.services-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 22%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.0) 100%),
    url("../img/photos/warehouse-shelves.jpg");
}

.page-hero.solutions-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 22%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.0) 100%),
    url("../img/photos/analytics-laptop.jpg");
}

.page-hero.integrations-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 22%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.0) 100%),
    url("../img/photos/data-team.jpg");
}

.page-hero.pricing-hero,
.page-hero.help-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 22%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.0) 100%),
    url("../img/photos/packing-boxes.jpg");
}

.page-hero.about-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 22%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.0) 100%),
    url("../img/photos/office-team.jpg");
}

.hero-inner {
  padding-top: 148px;
}

.home-hero .hero-inner {
  padding-bottom: 140px;
}

.hero-copy {
  width: min(690px, 100%);
}

.hero h1,
.page-hero h1 {
  max-width: 720px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.1;
  font-weight: 800;
  color: #162019;
}

.home-hero h1 {
  max-width: 820px;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1.06;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

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

.hero p,
.page-hero p {
  max-width: 580px;
  margin-top: 14px;
  color: #3a4240;
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 1.6;
}

.home-hero p {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.55vw, 19px);
}

.hero-flow {
  padding: 18px max(28px, calc((100vw - 1180px) / 2)) 14px;
}

.hero-flow span {
  min-height: 64px;
  color: var(--ink);
  font-size: 11px;
}

.proof-grid {
  gap: 2px;
  background: var(--line);
}

.proof-item {
  min-height: 120px;
  padding: 24px 20px;
}

.proof-item strong {
  font-size: clamp(28px, 3.5vw, 42px);
}

.section.alt {
  background: #f7f7f7;
}

.service-grid,
.workflow,
.platform-strip {
  background: transparent;
  box-shadow: none;
}

.platform-visual {
  background: transparent;
  box-shadow: none;
}

.service-tile {
  min-height: 232px;
}

.service-tile:hover {
  background: rgba(229, 57, 53, 0.03);
  transform: none;
}

.tile-index {
  background: #fceeee;
}

.ops-surface {
  gap: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ops-panel {
  background: var(--paper);
}

.ops-kpi {
  background: transparent;
}

.media-block {
  background: #f3eeed;
  box-shadow: 0 28px 80px rgba(16, 19, 18, 0.12);
}

.media-block img {
  filter: none;
}

.media-caption {
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.86);
}

.cta-band {
  background: transparent;
  box-shadow: none;
}

.reveal {
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

@media (max-width: 1080px) {
  .site-header {
    height: var(--header-h);
  }

  .home-hero,
  .page-hero,
  .page-hero.services-hero,
  .page-hero.solutions-hero,
  .page-hero.integrations-hero,
  .page-hero.pricing-hero,
  .page-hero.help-hero,
  .page-hero.about-hero {
    background-position: center right;
  }
}

/* Growth — How HLW fuels growth */
.growth-section {
  padding: clamp(64px, 8vw, 108px) 0 clamp(48px, 6vw, 72px);
  background: var(--paper);
}

.growth-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.growth-copy h2 {
  margin: 0 0 18px;
  max-width: 14ch;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.growth-copy p {
  margin: 0 0 28px;
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.7;
}

.growth-cta {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.growth-cta:hover {
  background: var(--teal-dark);
}

.growth-media {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  min-height: 420px;
}

.growth-media-main,
.growth-media-tile {
  overflow: hidden;
  border-radius: 22px;
  background: #f0eeec;
}

.growth-media-main {
  min-height: 420px;
}

.growth-media-main img,
.growth-media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.growth-media-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 420px;
}

.growth-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 24px;
  align-items: center;
  width: 100%;
  padding: 28px clamp(20px, 4vw, 48px);
  border-radius: 999px;
  background: var(--white);
  box-shadow:
    0 18px 50px rgba(16, 19, 18, 0.08),
    0 2px 8px rgba(16, 19, 18, 0.04);
}

.growth-stat {
  display: grid;
  gap: 6px;
  text-align: center;
}

.growth-stat strong {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--teal);
}

.growth-stat span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .growth-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 36px;
  }

  .growth-copy h2 {
    max-width: none;
  }

  .growth-media,
  .growth-media-main,
  .growth-media-stack {
    min-height: 360px;
  }

  .growth-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 28px;
    padding: 24px 20px;
    gap: 22px 16px;
  }
}

@media (max-width: 640px) {
  .growth-media {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .growth-media-main {
    min-height: 300px;
  }

  .growth-media-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    min-height: 160px;
  }

  .growth-media-tile {
    min-height: 160px;
  }

  .growth-stats {
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
  }
}

/* Customer Stories page */
.cs-page {
  padding-top: var(--header-h);
  background: #f7f8fa;
}

/* Keep header always visible on customer stories (light page, no dark hero) */
.page-customer-stories .site-header,
.page-customer-stories .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 19, 18, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(16, 19, 18, 0.06);
}

.page-customer-stories .site-header .brand-name,
.page-customer-stories .site-header .brand-tagline,
.page-customer-stories .site-header .site-nav,
.page-customer-stories .site-header .site-nav a,
.page-customer-stories .site-header .nav-dropdown-toggle,
.page-customer-stories .site-header .header-link.btn-login {
  color: var(--ink);
}

.page-customer-stories .site-header .brand-tagline {
  color: #6f7572;
}

.page-customer-stories .site-header .site-nav a:hover,
.page-customer-stories .site-header .site-nav a.active,
.page-customer-stories .site-header .nav-dropdown-toggle:hover,
.page-customer-stories .site-header .nav-dropdown.is-active .nav-dropdown-toggle,
.page-customer-stories .site-header .nav-dropdown.is-open .nav-dropdown-toggle,
.page-customer-stories .site-header .header-link.btn-login:hover {
  color: var(--ink);
  background: #f0f0f0;
}

.cs-hero {
  background: #f7f8fa;
}

.cs-hero .growth-copy h1 {
  margin: 0 0 18px;
  max-width: 14ch;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.cs-stories {
  padding: 24px 0 32px;
}

.cs-stories-title {
  margin: 0 auto 48px;
  max-width: 18ch;
  text-align: center;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cs-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin: 0 0 28px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
  background: var(--white);
}

.cs-story-alt {
  background: #f1f3f5;
}

.cs-story-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1;
  background: #e8eaed;
}

.cs-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-media-tag {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.cs-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eceff1;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.cs-tag-primary {
  background: rgba(229, 57, 53, 0.12);
  color: var(--teal);
}

.cs-story-body h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cs-story-body > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 19, 18, 0.1);
}

.cs-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.cs-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.cs-story-body blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}

.cs-story-body blockquote p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 760;
  line-height: 1.35;
}

.cs-story-body cite {
  color: var(--teal);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.cs-industries {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--white);
}

.cs-industries-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.cs-industries-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cs-industries-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.cs-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cs-industry-grid article {
  padding: 22px 20px;
  border: 1px solid rgba(16, 19, 18, 0.08);
  border-radius: 18px;
  background: #fafbfc;
}

.cs-industry-grid h4 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.cs-industry-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cs-cta {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--white);
  color: #fff;
}

.cs-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(48px, 6vw, 64px) clamp(24px, 5vw, 64px);
  border-radius: 25px;
  background: linear-gradient(105deg, #a84a3a 0%, #c47242 32%, #d4893a 68%, #dcb05a 100%);
}

.cs-cta-card h2 {
  margin: 0 0 16px;
  max-width: 18ch;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
}

.cs-cta-card p {
  margin: 0 0 28px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.7;
}

.cs-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cs-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.cs-cta-btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(120, 40, 32, 0.55);
  color: #fff;
}

.cs-cta-btn-primary:hover {
  background: rgba(100, 32, 26, 0.72);
  color: #fff;
}

.cs-cta-btn-accent {
  border: 1px solid transparent;
  background: #f5c518;
  color: #1a1a1a;
}

.cs-cta-btn-accent:hover {
  background: #ffd23a;
  color: #1a1a1a;
}

@media (max-width: 980px) {
  .cs-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .cs-cta-card h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .cs-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cs-industry-grid {
    grid-template-columns: 1fr;
  }

  .cs-story {
    padding: 20px;
    border-radius: 20px;
  }
}

/* Reviews — Why Entrepreneurs Choose HLW */
.reviews-section {
  padding: 100px 0 88px;
  background: #f7f7f7;
}

.reviews-inner {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
}

.reviews-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  text-align: center;
}

.reviews-megaphone {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.reviews-megaphone svg {
  width: 100%;
  height: 100%;
}

.reviews-title {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #000;
}

.reviews-brand {
  color: #b31c31;
}

.reviews-grid {
  column-count: 4;
  column-gap: 20px;
  width: 100%;
}

.review-card {
  break-inside: avoid;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 16px;
  background: #fff;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #ccc;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}

.review-name {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #101312;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: #b31c31;
  stroke: #b31c31;
  stroke-width: 4;
  stroke-linejoin: round;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--avatar-bg, #b31c31);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-text {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #222;
}

.review-date {
  display: block;
  font-size: 13px;
  color: #999;
}

@media (max-width: 1200px) {
  .reviews-grid {
    column-count: 3;
  }
}

@media (max-width: 880px) {
  .reviews-section {
    padding: 72px 0 64px;
  }

  .reviews-grid {
    column-count: 2;
  }

  .reviews-head {
    margin-bottom: 40px;
  }

  .reviews-megaphone {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 560px) {
  .reviews-inner {
    width: calc(100% - 28px);
  }

  .reviews-grid {
    column-count: 1;
  }

  .review-text {
    font-size: 16px;
  }

  .reviews-megaphone {
    display: none;
  }
}

/* ===== Get Started (CJ-style bottom CTA) ===== */
.home-get-start-wrap {
  background: #fff;
}

.home-get-start-box {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0;
}

.get-started-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.get-started-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  padding: 56px 100px;
  color: #fff;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.get-started-content-left {
  display: flex;
  flex-direction: column;
  width: 420px;
}

.get-started-title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  color: #fff;
  text-align: left;
  padding-bottom: 24px;
}

.get-started-btn {
  width: max-content;
  background: #ff7000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.get-started-btn:hover {
  background: #e56a00;
  color: #fff;
}

.get-started-btn .arrow {
  display: inline-flex;
  width: 14px;
  height: 14px;
  margin-left: 4px;
}

.get-started-btn .arrow svg {
  width: 100%;
  height: 100%;
}

.get-started-content-right {
  min-width: 400px;
}

.get-started-content-right-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 0 0;
}

.get-started-content-right-item-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #ff7700;
}

.get-started-content-right-item-icon svg {
  width: 100%;
  height: 100%;
}

.get-started-content-right-item-title {
  margin-left: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-align: left;
}

@media (min-width: 701px) and (max-width: 1200px) {
  .home-get-start-box {
    padding: 72px 0;
  }

  .get-started-container {
    padding: 0;
  }

  .get-started-content {
    padding: 70px 8%;
    background-size: cover;
    border-radius: 16px;
    justify-content: space-between;
    align-items: center;
  }

  .get-started-content-left {
    width: 260px;
    margin-right: 24px;
  }

  .get-started-title {
    font-size: 24px;
    line-height: 34px;
    padding-bottom: 16px;
  }

  .get-started-btn {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .get-started-content-right {
    min-width: max-content;
  }

  .get-started-content-right-item {
    padding: 8px 0;
  }

  .get-started-content-right-item-icon {
    width: 14px;
    height: 14px;
  }

  .get-started-content-right-item-title {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 700px) {
  .home-get-start-box {
    width: calc(100% - 28px);
    padding: 48px 0 56px;
  }

  .get-started-content {
    background-size: cover;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 16px 32px;
    border-radius: 16px;
  }

  .get-started-content-left {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .get-started-title {
    text-align: center;
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 16px;
  }

  .get-started-btn {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
  }

  .get-started-content-right {
    min-width: 0;
    width: 100%;
  }

  .get-started-content-right-item {
    align-items: flex-start;
    padding: 8px 0;
  }

  .get-started-content-right-item-icon {
    width: 14px;
    height: 14px;
    margin-top: 2px;
  }

  .get-started-content-right-item-title {
    font-size: 14px;
    line-height: 24px;
    margin-left: 4px;
    max-width: 280px;
  }
}

@media (max-width: 680px) {
  .home-hero {
    min-height: 660px;
    height: auto;
    background-image: url("../img/photos/port-containers.jpg");
    background-position: center;
  }

  .page-hero,
  .page-hero.services-hero,
  .page-hero.solutions-hero,
  .page-hero.integrations-hero,
  .page-hero.pricing-hero,
  .page-hero.help-hero,
  .page-hero.about-hero {
    min-height: 430px;
    height: auto;
    background-position: center;
  }

  .hero-inner,
  .home-hero .hero-inner {
    padding-top: 112px;
  }

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

  .home-hero h1 {
    font-size: clamp(34px, 10.5vw, 52px);
  }

  .global-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ========== Affiliate teaser (homepage) + Affiliate page ========== */
.aff-teaser-section,
.aff-hero {
  padding: clamp(64px, 8vw, 108px) 0;
  background: var(--paper);
  overflow: hidden;
}

.affliatBanner,
.aff-hero.affliatBanner {
  background: #f6f6f6;
}

.aff-teaser-inner,
.aff-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.aff-teaser-copy h2,
.aff-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.aff-teaser-copy h2 span,
.aff-hero-copy h1 span {
  color: var(--teal);
}

.aff-teaser-copy p,
.aff-hero-copy p {
  margin: 0 0 28px;
  max-width: 46ch;
  color: #666;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.75;
}

.aff-teaser-cta,
.aff-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.28);
}

.aff-teaser-cta:hover,
.aff-cta:hover {
  background: var(--teal-dark);
}

.aff-teaser-media,
.aff-hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.aff-teaser-rings {
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 42%, rgba(0, 0, 0, 0.04) 43%, transparent 44%),
    radial-gradient(circle, transparent 58%, rgba(0, 0, 0, 0.035) 59%, transparent 60%),
    radial-gradient(circle, transparent 74%, rgba(0, 0, 0, 0.03) 75%, transparent 76%);
  pointer-events: none;
  z-index: 0;
}

.aff-teaser-media img,
.aff-hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

.aff-page {
  padding-top: var(--header-h);
  background: var(--paper);
}

.page-affiliate .site-header,
.page-affiliate .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 19, 18, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(16, 19, 18, 0.06);
}

.page-affiliate .site-header .brand-name,
.page-affiliate .site-header .brand-tagline,
.page-affiliate .site-header .site-nav,
.page-affiliate .site-header .site-nav a,
.page-affiliate .site-header .nav-dropdown-toggle,
.page-affiliate .site-header .header-link.btn-login {
  color: var(--ink);
}

.page-affiliate .site-header .brand-tagline {
  color: #6f7572;
}

.aff-section-head {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.aff-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}

.aff-section-head p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.aff-why,
.aff-who,
.aff-commission,
.aff-steps,
.aff-faq {
  padding: clamp(56px, 7vw, 96px) 0;
}

.aff-who,
.aff-commission {
  background: #f6f8fc;
}

.aff-why {
  background: var(--paper);
}

.aff-why-list {
  display: grid;
  gap: clamp(48px, 6vw, 80px);
}

.aff-why-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.aff-why-row-reverse .aff-why-media {
  order: 2;
}

.aff-why-row-reverse .aff-why-copy {
  order: 1;
}

.aff-why-media img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 0 auto;
}

.aff-why-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  text-align: left;
}

.aff-why-copy p {
  margin: 0;
  max-width: 42ch;
  color: #555;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.8;
  text-align: left;
}

.aff-why-copy p span {
  color: var(--teal);
  font-weight: 700;
}

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

.aff-who-card {
  padding: 28px 20px;
  border: 1px solid rgba(16, 19, 18, 0.08);
  border-radius: 16px;
  background: var(--white);
  text-align: left;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.aff-who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 19, 18, 0.08);
}

.aff-who-card img {
  width: 72px;
  height: 72px;
  margin: 0 0 16px;
  display: block;
}

.aff-who-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
  text-align: left;
}

.aff-who-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
}

.aff-community {
  padding: clamp(40px, 6vw, 72px) 0;
}

.aff-community-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
  background: linear-gradient(120deg, #1a1a1a 0%, #2c2c2c 55%, #3a1f1f 100%);
  color: #fff;
  overflow: hidden;
}

.aff-community-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
}

.aff-community-media {
  position: relative;
  min-height: 220px;
}

.aff-community-bg {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0.85;
}

.aff-community-fg {
  position: absolute;
  right: 8%;
  bottom: -18px;
  width: min(42%, 220px);
  height: auto;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.aff-perks {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--paper);
}

.aff-perks .aff-section-head p {
  max-width: 52ch;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.aff-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}

.aff-perk-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(16, 19, 18, 0.08);
  background: var(--white);
  text-align: left;
  cursor: default;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.aff-perk-card:hover,
.aff-perk-card:focus-visible,
.aff-perk-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(229, 57, 53, 0.28);
  box-shadow: 0 18px 40px rgba(16, 19, 18, 0.1);
  outline: none;
}

.aff-perk-card-featured {
  border-color: rgba(229, 57, 53, 0.2);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.08);
}

.aff-perk-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: clamp(300px, 28vw, 420px);
  background: #f6f8fc;
}

.aff-perk-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.aff-perk-card:hover .aff-perk-media img,
.aff-perk-card:focus-visible .aff-perk-media img,
.aff-perk-card.is-active .aff-perk-media img {
  transform: scale(1.04);
}

.aff-perk-index {
  position: absolute;
  top: 18px;
  left: 18px;
  min-width: 40px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(16, 19, 18, 0.08);
}

.aff-perk-body {
  display: grid;
  gap: 14px;
  flex: 1;
  padding: 32px 28px 36px;
}

.aff-perk-icon {
  width: 52px;
  height: 52px;
  display: block;
}

.aff-perk-body h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--ink);
}

.aff-perk-body p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.aff-perk-body h3 span,
.aff-perk-body p span {
  color: var(--teal);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .aff-perk-card,
  .aff-perk-media img {
    transition: none;
  }

  .aff-perk-card:hover,
  .aff-perk-card:focus-visible,
  .aff-perk-card.is-active {
    transform: none;
  }

  .aff-perk-card:hover .aff-perk-media img,
  .aff-perk-card:focus-visible .aff-perk-media img,
  .aff-perk-card.is-active .aff-perk-media img {
    transform: none;
  }
}

.aff-commission .aff-section-head {
  max-width: 860px;
}

.aff-commission-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(16px, 3vw, 40px);
}

.aff-commission-lead {
  color: var(--teal) !important;
  font-weight: 600;
  font-size: 17px !important;
  line-height: 1.7;
}

.aff-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-bottom: 0;
  align-items: stretch;
  width: 100%;
}

.aff-example-card {
  min-width: 0;
  padding: clamp(24px, 2.4vw, 36px);
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  text-align: left;
  overflow: visible;
}

.aff-example-row {
  display: grid;
  gap: 6px;
  margin-bottom: 36px;
  text-align: left;
}

.aff-example-row:last-child {
  margin-bottom: 0;
}

.aff-example-row span {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.aff-example-invite span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.aff-example-row p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
}

.aff-example-row p em {
  font-style: normal;
  color: var(--teal);
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 28px);
  margin-left: 4px;
  white-space: nowrap;
}

.aff-example-invite p em {
  font-size: clamp(18px, 1.5vw, 24px);
  margin-left: 0;
}

.aff-calc {
  padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 96px);
  background:
    radial-gradient(ellipse at 20% 100%, rgba(255, 255, 255, 0.05), transparent 42%),
    linear-gradient(180deg, #2c2e35 0%, #26282f 100%);
}

.aff-calc-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.aff-calc-aside {
  color: #fff;
}

.aff-calc-aside h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
}

.aff-calc-aside > p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.aff-calc-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.aff-calc-benefit {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.aff-calc-benefit img {
  width: 96px;
  height: 96px;
  display: block;
}

.aff-calc-benefit strong {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.aff-calc-ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.aff-calc-ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: aff-ticker 28s linear infinite;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  white-space: nowrap;
}

@keyframes aff-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.aff-calc-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.aff-calc-card h3 {
  margin: 0 0 22px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  text-align: left;
}

.aff-calc-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.aff-calc-field > span {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

.aff-calc-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.aff-calc-field-row input[type="number"] {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid #d9dce3;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  outline: none;
}

.aff-calc-field-row input[type="number"]:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12);
}

.aff-calc-field-row em {
  font-style: normal;
  color: #777;
  font-size: 14px;
  white-space: nowrap;
}

.aff-calc-slider-wrap {
  position: relative;
  padding-top: 34px;
}

.aff-calc-bubble {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  min-width: 42px;
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  pointer-events: none;
}

.aff-calc-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: var(--teal);
  transform: translateX(-50%) rotate(45deg);
}

.aff-calc-slider-wrap input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal) var(--aff-progress, 0%), #e6e8ee var(--aff-progress, 0%));
  outline: none;
  cursor: pointer;
}

.aff-calc-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.45);
  cursor: pointer;
}

.aff-calc-slider-wrap input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.45);
  cursor: pointer;
}

.aff-calc-slider-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #888;
  font-size: 12px;
}

.aff-calc-result > p {
  margin: 8px 0 12px;
  color: #555;
  font-size: 14px;
  font-weight: 600;
}

.aff-calc-bars {
  display: grid;
  gap: 10px;
}

.aff-calc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #3a3d46;
  color: #fff;
  font-size: 15px;
}

.aff-calc-bar strong {
  font-weight: 800;
  white-space: nowrap;
}

.aff-steps {
  background: #f6f8fc;
}

.aff-steps .aff-section-head {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.aff-steps .aff-section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
}

.aff-steps .aff-section-head p {
  font-size: 16px;
  line-height: 1.75;
  color: #5f5f5f;
}

.aff-steps-panel {
  width: 100%;
}

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

.aff-step-item {
  padding: 0 12px;
  text-align: center;
}

.aff-step-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 20px;
}

.aff-step-icon img {
  width: 100px;
  height: 100px;
  display: block;
}

.aff-step-item:not(:last-child) .aff-step-icon::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -25px;
  width: 50px;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg width='40' height='19' viewBox='0 0 40 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38.9617 10.2243H1.03832C0.467915 10.2243 0 9.76085 0 9.18598C0 8.61557 0.463458 8.14766 1.03832 8.14766H38.9617C39.5321 8.14766 40 8.61111 40 9.18598C39.9955 9.75639 39.5321 10.2243 38.9617 10.2243Z' fill='%232D2D2D'/%3E%3Cpath d='M31.7915 18.3746C31.5241 18.3746 31.2612 18.2721 31.0562 18.0715C30.6507 17.666 30.6507 17.0109 31.0562 16.6054L37.5312 10.1303C38.0526 9.60896 38.0526 8.76225 37.5312 8.24532L31.0607 1.77028C30.6551 1.36475 30.6551 0.70967 31.0607 0.304144C31.4662 -0.101381 32.1213 -0.101381 32.5268 0.304144L39.0018 6.77919C40.3298 8.10717 40.3298 10.2685 39.0018 11.5965L32.5268 18.0671C32.3218 18.2721 32.0589 18.3746 31.7915 18.3746Z' fill='%232D2D2D'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

.aff-step-copy h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.67;
  color: #343a46;
}

.aff-step-copy p {
  margin: 0 auto;
  max-width: 34ch;
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1.75;
}

.aff-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.aff-faq-item {
  border: 1px solid rgba(16, 19, 18, 0.08);
  border-radius: 14px;
  background: var(--white);
  padding: 4px 18px;
}

.aff-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
  color: var(--ink);
}

.aff-faq-item summary::-webkit-details-marker {
  display: none;
}

.aff-faq-item p {
  margin: 0 0 16px;
  color: #666;
  line-height: 1.7;
}

.aff-final-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 1080px) {
  .aff-teaser-inner,
  .aff-hero-inner,
  .aff-community-card,
  .aff-why-row,
  .aff-example-grid,
  .aff-perks-grid,
  .aff-calc-panel,
  .aff-steps-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .aff-perk-card-featured {
    order: -1;
  }

  .aff-step-item:not(:last-child) .aff-step-icon::after {
    display: none;
  }

  .aff-step-copy p {
    max-width: none;
  }

  .aff-example-row p,
  .aff-example-row p em {
    white-space: normal;
  }

  .aff-example-row p em {
    font-size: 24px;
  }

  .aff-calc-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .aff-why-row-reverse .aff-why-media,
  .aff-why-row-reverse .aff-why-copy {
    order: unset;
  }

  .aff-why-copy h3,
  .aff-why-copy p {
    max-width: none;
  }

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

  .aff-community-fg {
    position: static;
    width: min(60%, 220px);
    margin-top: -40px;
    margin-left: auto;
    margin-right: 8%;
    display: block;
  }
}

@media (max-width: 680px) {
  .aff-who-grid,
  .aff-calc-benefits {
    grid-template-columns: 1fr;
  }

  .aff-teaser-copy h2,
  .aff-hero-copy h1 {
    font-size: 28px;
  }
}

/* HURRYSUPPLIER Signal Grid theme — foundation */
:root {
  --ink: #0b1c2c;
  --muted: #607080;
  --paper: #f6f9fc;
  --soft: #eaf1f6;
  --line: rgba(12, 45, 64, 0.12);
  --line-strong: rgba(12, 45, 64, 0.24);
  --teal: #00aa9d;
  --teal-dark: #007f78;
  --coral: #e4524f;
  --amber: #ff9d42;
  --night: #061826;
  --night-2: #0b2a3b;
  --white: #ffffff;
  --shadow: 0 24px 64px rgba(4, 27, 43, 0.12);
  --radius: 24px;
  --header-h: 82px;
  --container: min(1200px, calc(100% - 48px));
}

::selection {
  color: #03161f;
  background: #73f0df;
}

body {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(8, 55, 73, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 55, 73, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  color: var(--ink);
}

.site-header,
.site-header.is-scrolled,
.page-customer-stories .site-header,
.page-customer-stories .site-header.is-scrolled,
.page-affiliate .site-header,
.page-affiliate .site-header.is-scrolled {
  top: 14px;
  right: 18px;
  left: 18px;
  height: 68px;
  padding: 0 clamp(16px, 2.2vw, 30px);
  border: 1px solid rgba(92, 231, 214, 0.2);
  border-radius: 22px;
  background: rgba(5, 25, 39, 0.9);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(2, 18, 30, 0.2);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.site-header .brand-name,
.site-header.is-scrolled .brand-name,
.page-customer-stories .site-header .brand-name,
.page-affiliate .site-header .brand-name {
  color: #ffffff;
  font-weight: 820;
  letter-spacing: 0.035em;
}

.site-header .brand-tagline,
.site-header.is-scrolled .brand-tagline,
.page-customer-stories .site-header .brand-tagline,
.page-affiliate .site-header .brand-tagline {
  color: #76eadb;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header .brand-icon {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 8px 14px rgba(0, 170, 157, 0.2));
}

.nav-capsule {
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.site-nav {
  gap: 2px;
  padding: 0;
}

.site-nav a,
.nav-dropdown-toggle,
.site-header.is-scrolled .site-nav,
.site-header.is-scrolled .site-nav a,
.site-header.is-scrolled .nav-dropdown-toggle,
.site-header.is-scrolled .header-link.btn-login,
.page-customer-stories .site-header .site-nav,
.page-customer-stories .site-header .site-nav a,
.page-customer-stories .site-header .nav-dropdown-toggle,
.page-customer-stories .site-header .header-link.btn-login,
.page-affiliate .site-header .site-nav,
.page-affiliate .site-header .site-nav a,
.page-affiliate .site-header .nav-dropdown-toggle,
.page-affiliate .site-header .header-link.btn-login {
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a,
.nav-dropdown-toggle {
  padding: 8px 13px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-active .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle,
.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.active,
.site-header.is-scrolled .nav-dropdown-toggle:hover,
.site-header.is-scrolled .nav-dropdown.is-active .nav-dropdown-toggle,
.site-header.is-scrolled .nav-dropdown.is-open .nav-dropdown-toggle,
.page-customer-stories .site-header .site-nav a:hover,
.page-customer-stories .site-header .site-nav a.active,
.page-affiliate .site-header .site-nav a:hover,
.page-affiliate .site-header .site-nav a.active {
  color: #03191f;
  background: #6fe8d9;
}

.nav-dropdown-menu {
  border-color: rgba(91, 226, 210, 0.22);
  border-radius: 18px;
  background: rgba(6, 28, 42, 0.98);
  box-shadow: 0 22px 52px rgba(2, 17, 27, 0.28);
}

.site-nav .nav-dropdown-menu a {
  color: rgba(255, 255, 255, 0.86);
  border-radius: 12px;
}

.site-nav .nav-dropdown-menu a:hover,
.site-nav .nav-dropdown-menu a.active {
  color: #03191f;
  background: #6fe8d9;
}

.header-link.btn-login,
.site-header.is-scrolled .header-link.btn-login {
  color: rgba(255, 255, 255, 0.9);
}

.header-link.btn-login:hover,
.site-header.is-scrolled .header-link.btn-login:hover {
  color: #041820;
  background: #6fe8d9;
}

.lang-switch {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch button {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
}

.lang-switch button.active {
  color: #041820;
  background: #6fe8d9;
}

.hero {
  isolation: isolate;
  color: #ffffff;
  background-color: var(--night);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(3, 18, 29, 0.95) 0%, rgba(4, 30, 43, 0.82) 44%, rgba(4, 29, 43, 0.34) 74%, rgba(4, 29, 43, 0.18) 100%),
    radial-gradient(circle at 78% 32%, rgba(49, 217, 203, 0.2), transparent 30%);
}

.hero::after {
  display: block;
  z-index: 1;
  opacity: 0.4;
  animation: none;
  background:
    linear-gradient(rgba(111, 232, 217, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 232, 217, 0.14) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 75%);
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.home-hero {
  min-height: 760px;
  background-position: center 48%;
}

.page-hero {
  min-height: 500px;
  height: 62svh;
  max-height: 660px;
  background-position: center;
}

.hero-inner {
  z-index: 2;
  padding-top: 144px;
}

.hero-copy {
  width: min(720px, 100%);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(124, 235, 222, 0.2);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(5, 31, 45, 0.78), rgba(8, 50, 61, 0.48));
  box-shadow: 0 30px 90px rgba(1, 15, 25, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero h1,
.page-hero h1,
.home-hero h1 {
  color: #ffffff;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.hero p,
.page-hero p,
.home-hero p {
  color: rgba(231, 246, 248, 0.84);
}

.hero-flow {
  border-top: 1px solid rgba(111, 232, 217, 0.2);
  background: rgba(3, 22, 34, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-flow span {
  color: rgba(230, 249, 247, 0.76);
  border-right: 1px solid rgba(111, 232, 217, 0.14);
}

.hero-flow span:last-child {
  border-right: 0;
}

.btn {
  min-height: 52px;
  padding-inline: 24px;
  border-radius: 999px;
}

.btn-primary,
.hero .btn-light,
.cta-band .btn-light {
  border-color: transparent;
  color: #031a21;
  background: linear-gradient(135deg, #78efde, #25caba);
  box-shadow: 0 12px 26px rgba(0, 170, 157, 0.24);
}

.btn-primary:hover,
.hero .btn-light:hover,
.cta-band .btn-light:hover {
  color: #031a21;
  background: linear-gradient(135deg, #91f7e8, #3ad8c8);
  box-shadow: 0 16px 34px rgba(0, 170, 157, 0.3);
}

.btn-ghost,
.home-hero .btn-ghost {
  border-color: rgba(159, 241, 230, 0.32);
  color: #e9fbf8;
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover,
.home-hero .btn-ghost:hover {
  border-color: rgba(159, 241, 230, 0.58);
  color: #ffffff;
  background: rgba(111, 232, 217, 0.12);
}

.section {
  position: relative;
}

.section.alt {
  background:
    radial-gradient(circle at 12% 18%, rgba(49, 217, 203, 0.08), transparent 24%),
    #eaf1f6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border: 1px solid rgba(0, 170, 157, 0.2);
  border-radius: 999px;
  color: #007e76;
  background: rgba(0, 170, 157, 0.08);
  letter-spacing: 0.08em;
}

.section-title {
  color: var(--ink);
  font-weight: 820;
  letter-spacing: -0.035em;
}

.service-grid {
  gap: 18px;
  border: 0;
  background: transparent;
}

.service-tile,
.detail-card {
  border: 1px solid rgba(10, 68, 86, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(4, 31, 46, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-tile:hover,
.detail-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(4, 31, 46, 0.14);
}

.tile-index {
  border-radius: 999px;
  color: #007e76;
  background: rgba(0, 170, 157, 0.11);
  box-shadow: inset 0 0 0 1px rgba(0, 170, 157, 0.12);
}

.cta-band {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(111, 232, 217, 0.18);
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 14%, rgba(49, 217, 203, 0.22), transparent 32%),
    linear-gradient(135deg, #061826, #0b3041);
  box-shadow: 0 28px 72px rgba(3, 24, 38, 0.18);
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band p {
  color: rgba(230, 246, 247, 0.74);
}

.site-footer {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(111, 232, 217, 0.18);
  background:
    radial-gradient(circle at 15% 8%, rgba(49, 217, 203, 0.16), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(36, 119, 160, 0.16), transparent 30%),
    linear-gradient(145deg, #04141f 0%, #082536 56%, #071b2a 100%);
}

.site-footer::before {
  top: 0;
  height: 100%;
  opacity: 0.28;
  background:
    linear-gradient(rgba(111, 232, 217, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 232, 217, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 78%);
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.site-footer::after {
  display: none;
}

.footer-main {
  padding-top: 48px;
}

.footer-col h3 {
  color: #72eadb;
}

.footer-col a:hover {
  color: #72eadb;
}

@media (max-width: 1080px) {
  .site-header,
  .site-header.is-scrolled,
  .page-customer-stories .site-header,
  .page-customer-stories .site-header.is-scrolled,
  .page-affiliate .site-header,
  .page-affiliate .site-header.is-scrolled {
    top: 8px;
    right: 8px;
    left: 8px;
    height: 64px;
    padding: 0 14px;
  }

  .nav-capsule {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .site-nav {
    top: 78px;
    right: 8px;
    left: 8px;
    padding: 16px;
    border: 1px solid rgba(111, 232, 217, 0.18);
    border-radius: 20px;
    color: #ffffff;
    background: rgba(5, 25, 39, 0.98);
    box-shadow: 0 22px 52px rgba(2, 17, 27, 0.28);
  }

  .site-nav a,
  .nav-dropdown-toggle,
  .site-nav .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .site-nav a:hover,
  .site-nav a.active,
  .nav-dropdown-toggle:hover,
  .nav-dropdown.is-active .nav-dropdown-toggle,
  .nav-dropdown.is-open .nav-dropdown-toggle,
  .site-nav .nav-dropdown-menu a:hover,
  .site-nav .nav-dropdown-menu a.active {
    color: #041820;
    background: #6fe8d9;
  }

  .nav-dropdown-menu {
    background: transparent;
    box-shadow: none;
  }

  .menu-toggle {
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1200px);
  }

  .site-header > .brand .brand-name {
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .hero-copy {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .page-hero {
    min-height: 500px;
  }

  .service-grid {
    gap: 14px;
  }

  .cta-band {
    border-radius: 24px;
  }
}

/* HURRYSUPPLIER Signal Grid theme — component harmonization */
:focus-visible {
  outline: 3px solid rgba(111, 232, 217, 0.82);
  outline-offset: 3px;
}

.proof-grid,
.workflow,
.solution-list,
.platform-strip {
  gap: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.proof-item,
.workflow-step,
.compare-panel,
.value-panel,
.how-step-card,
.service-growth-card,
.ops-panel,
.ops-kpi,
.platform-logo-tile,
.solution-row,
.integration-cell,
.event-log,
.price-plan,
.quote-form,
.faq-item,
.review-card,
.growth-stats,
.cs-story,
.cs-industry-grid article,
.aff-who-card,
.aff-perk-card,
.aff-example-card,
.aff-calc-card,
.aff-faq-item {
  border: 1px solid rgba(8, 73, 89, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(4, 31, 46, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.proof-item {
  min-height: 150px;
  border-radius: 22px;
}

.proof-item strong,
.growth-stat strong,
.global-stats li strong {
  color: var(--teal-dark);
}

.comparison-grid {
  gap: 20px;
}

.compare-panel {
  border-radius: 26px;
}

.compare-panel.strong {
  border-color: rgba(0, 170, 157, 0.28);
  background:
    radial-gradient(circle at 100% 0, rgba(111, 232, 217, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(226, 247, 244, 0.86));
}

.compare-panel li > span:first-child {
  color: #d64f4a;
}

.compare-panel.strong li > span:first-child {
  color: var(--teal-dark);
}

.value-panel {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 76px rgba(4, 31, 46, 0.12);
}

.value-tabs {
  border-color: rgba(8, 73, 89, 0.1);
  background: rgba(246, 251, 252, 0.76);
}

.value-item {
  border-color: rgba(8, 73, 89, 0.09);
}

.value-item::after {
  right: auto;
  left: 0;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, #77efdf, #00aa9d);
}

.value-item.active {
  background: linear-gradient(90deg, rgba(111, 232, 217, 0.13), rgba(255, 255, 255, 0.88));
}

.value-visual {
  background: #dce9ee;
}

.global-visual img,
.media-block,
.media-block img {
  border-radius: 26px;
}

.media-block {
  box-shadow: 0 24px 60px rgba(4, 31, 46, 0.18);
}

.media-block::after {
  background:
    linear-gradient(120deg, transparent 0 52%, rgba(66, 226, 208, 0.28) 53%, transparent 55%),
    linear-gradient(40deg, transparent 0 63%, rgba(51, 144, 185, 0.22) 64%, transparent 66%),
    linear-gradient(180deg, transparent 0%, rgba(4, 28, 42, 0.3) 100%);
}

.media-caption {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 18px;
}

.how-section,
.growth-section,
.reviews-section,
.home-get-start-wrap {
  background:
    linear-gradient(rgba(7, 68, 84, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 68, 84, 0.035) 1px, transparent 1px),
    #f6f9fc;
  background-size: 42px 42px;
}

.how-flow {
  gap: 14px;
}

.how-step-card,
.how-step-card--left,
.how-step-card--mid,
.how-step-card--right {
  max-width: none;
  min-height: 340px;
  padding: 30px 30px 0;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.84);
  background-image: none;
  overflow: hidden;
}

.how-step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #6fe8d9, #00aa9d, #248fba);
}

.how-step-badge {
  height: 30px;
  padding-inline: 13px;
  color: #dffbf7;
  background: #082b3b;
}

.how-step-text {
  color: var(--ink);
}

.how-flow-arrow {
  color: var(--teal-dark);
  font-size: 26px;
}

.how-connect-btn,
.btn-outline {
  border-color: rgba(0, 127, 120, 0.34);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.76);
}

.how-connect-btn:hover,
.btn-outline:hover {
  border-color: var(--teal);
  color: #042831;
  background: rgba(111, 232, 217, 0.18);
}

.service-growth-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.service-growth-card:hover {
  border-color: rgba(0, 170, 157, 0.32);
  background:
    radial-gradient(circle at 88% 12%, rgba(111, 232, 217, 0.24), transparent 34%),
    #f1fbfa;
  box-shadow: 0 24px 54px rgba(4, 77, 86, 0.14);
}

.service-growth-art {
  background: linear-gradient(145deg, #e2f8f5, #d9eaf1);
  box-shadow: inset 0 0 0 1px rgba(0, 170, 157, 0.1);
}

.service-growth-card:hover .service-growth-art {
  background: linear-gradient(145deg, #c8f5ef, #d8eef5);
}

.service-growth-card:hover .service-growth-art img {
  filter: none;
}

.service-growth-card:hover h3 {
  color: var(--ink);
}

.service-growth-card:hover p {
  color: var(--muted);
}

.faq-list {
  gap: 14px;
}

.faq-item,
#faq .faq-item,
.faq-item:first-child,
.faq-item:last-child,
#faq .faq-item:first-child,
#faq .faq-item:last-child {
  border: 1px solid rgba(8, 73, 89, 0.11);
  border-radius: 18px;
}

.faq-item[open] {
  border-color: rgba(0, 170, 157, 0.24);
  background: rgba(238, 251, 249, 0.92);
}

.faq-q::after {
  color: var(--teal-dark);
  background: rgba(0, 170, 157, 0.1);
}

.workflow-step {
  border-radius: 22px;
}

.workflow-step span {
  color: var(--teal-dark);
}

.ops-surface {
  gap: 24px;
}

.ops-panel {
  border-radius: 24px;
  overflow: hidden;
}

.ops-bar,
.ops-row {
  border-color: rgba(8, 73, 89, 0.1);
}

.ops-dot {
  background: #30d6c4;
  box-shadow: 0 0 0 6px rgba(48, 214, 196, 0.16);
}

@keyframes opsPulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(48, 214, 196, 0.16); }
  50% { box-shadow: 0 0 0 12px rgba(48, 214, 196, 0); }
}

.ops-side {
  gap: 14px;
}

.ops-kpi,
.ops-kpi:first-child,
.ops-kpi:last-child {
  padding: 22px;
  border: 1px solid rgba(8, 73, 89, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.status.green {
  color: #075f59;
  background: rgba(48, 214, 196, 0.16);
}

.progress-line {
  background: rgba(7, 55, 70, 0.1);
}

.progress-line i {
  background: linear-gradient(90deg, #00aa9d, #5eead8, #4aa8d2);
}

.platform-strip span {
  min-height: 88px;
  border: 1px solid rgba(8, 73, 89, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.platform-visual {
  border: 1px solid rgba(8, 73, 89, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
}

.platform-logo-wall {
  border-left-color: rgba(8, 73, 89, 0.11);
}

.platform-logo-tile {
  border-radius: 18px;
}

.partners-marquee-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(49, 217, 203, 0.08), transparent 26%),
    #eaf1f6;
}

.enterprise {
  border: 1px solid rgba(111, 232, 217, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 16%, rgba(49, 217, 203, 0.24), transparent 34%),
    linear-gradient(135deg, #061826, #0b3041);
  box-shadow: 0 28px 72px rgba(3, 24, 38, 0.2);
}

.enterprise-kicker {
  color: #75eadc;
}

.enterprise-list li {
  border-color: rgba(111, 232, 217, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.enterprise-list li::before {
  background: #6fe8d9;
}

.solution-row {
  padding: 24px;
  border-radius: 20px;
}

.tag {
  border-color: rgba(0, 170, 157, 0.22);
  color: var(--teal-dark);
  background: rgba(0, 170, 157, 0.09);
}

.integration-cell,
.event-log {
  border-radius: 22px;
}

.price-plan {
  border-radius: 24px;
}

.price-plan.featured {
  border-color: rgba(0, 170, 157, 0.28);
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 10%, rgba(111, 232, 217, 0.24), transparent 34%),
    linear-gradient(160deg, #f8fffe, #e6f7f5);
}

.price-plan.featured h3,
.price-plan.featured p,
.price-plan.featured li {
  color: inherit;
}

.price-plan.featured .btn-light {
  border-color: transparent;
  color: #031a21;
  background: linear-gradient(135deg, #78efde, #25caba);
}

.quote-form {
  border-radius: 26px;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.aff-calc-field-row input[type="number"] {
  border-color: rgba(8, 73, 89, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.aff-calc-field-row input[type="number"]:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 170, 157, 0.12);
}

.growth-stats {
  border-radius: 24px;
}

.growth-stat {
  border-color: rgba(8, 73, 89, 0.1);
}

.cs-page,
.cs-hero,
.cs-stories,
.cs-industries {
  background:
    linear-gradient(rgba(7, 68, 84, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 68, 84, 0.03) 1px, transparent 1px),
    #f6f9fc;
  background-size: 44px 44px;
}

.cs-story {
  border-radius: 28px;
  overflow: hidden;
}

.cs-industry-grid article {
  border-radius: 20px;
}

.cs-cta-card {
  border: 1px solid rgba(111, 232, 217, 0.18);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(49, 217, 203, 0.24), transparent 32%),
    linear-gradient(135deg, #061826, #0b3041);
  box-shadow: 0 28px 70px rgba(3, 24, 38, 0.2);
}

.cs-cta-card h2 {
  color: #fff;
}

.cs-cta-card p {
  color: rgba(230, 246, 247, 0.74);
}

.review-card {
  border-radius: 22px;
}

.review-card:hover {
  border-color: rgba(0, 170, 157, 0.24);
  box-shadow: 0 24px 52px rgba(4, 68, 82, 0.13);
}

.reviews-brand,
.review-stars {
  color: var(--teal-dark);
}

.home-get-start-wrap {
  padding-inline: 0;
}

.get-started-container {
  border-radius: 30px;
  box-shadow: 0 28px 72px rgba(3, 24, 38, 0.18);
}

.get-started-content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(111, 232, 217, 0.18);
  border-radius: 30px;
}

.get-started-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(111, 232, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 232, 217, 0.08) 1px, transparent 1px),
    linear-gradient(100deg, rgba(4, 20, 31, 0.97) 0%, rgba(7, 45, 59, 0.91) 58%, rgba(0, 127, 120, 0.72) 100%);
  background-size: 44px 44px, 44px 44px, cover;
}

.get-started-btn {
  border-radius: 999px;
  color: #031a21;
  background: linear-gradient(135deg, #78efde, #25caba);
  box-shadow: 0 12px 28px rgba(0, 170, 157, 0.24);
}

.get-started-btn:hover {
  color: #031a21;
  background: linear-gradient(135deg, #91f7e8, #3ad8c8);
}

.get-started-content-right-item-icon {
  color: #72eadb;
}

.aff-teaser-section,
.aff-hero,
.affliatBanner,
.aff-hero.affliatBanner,
.aff-why,
.aff-who,
.aff-commission,
.aff-steps,
.aff-faq,
.aff-perks {
  background:
    linear-gradient(rgba(7, 68, 84, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 68, 84, 0.03) 1px, transparent 1px),
    #f6f9fc;
  background-size: 44px 44px;
}

.aff-who,
.aff-commission,
.aff-steps {
  background-color: #eaf1f6;
}

.aff-teaser-cta,
.aff-cta {
  border-radius: 999px;
  color: #031a21;
  background: linear-gradient(135deg, #78efde, #25caba);
  box-shadow: 0 12px 28px rgba(0, 170, 157, 0.22);
}

.aff-teaser-cta:hover,
.aff-cta:hover {
  color: #031a21;
  background: linear-gradient(135deg, #91f7e8, #3ad8c8);
}

.aff-teaser-rings {
  background:
    radial-gradient(circle, transparent 42%, rgba(0, 170, 157, 0.1) 43%, transparent 44%),
    radial-gradient(circle, transparent 58%, rgba(36, 143, 186, 0.08) 59%, transparent 60%),
    radial-gradient(circle, transparent 74%, rgba(0, 170, 157, 0.06) 75%, transparent 76%);
}

.aff-who-card,
.aff-example-card,
.aff-faq-item {
  border-radius: 20px;
}

.aff-community-card {
  border: 1px solid rgba(111, 232, 217, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 16%, rgba(49, 217, 203, 0.22), transparent 34%),
    linear-gradient(135deg, #061826, #0b3041);
  box-shadow: 0 28px 72px rgba(3, 24, 38, 0.2);
}

.aff-perk-card {
  border-radius: 24px;
}

.aff-perk-card:hover,
.aff-perk-card:focus-visible,
.aff-perk-card.is-active,
.aff-perk-card-featured {
  border-color: rgba(0, 170, 157, 0.3);
  box-shadow: 0 22px 50px rgba(4, 68, 82, 0.13);
}

.aff-calc {
  background:
    linear-gradient(rgba(111, 232, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 232, 217, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 18% 100%, rgba(49, 217, 203, 0.18), transparent 38%),
    linear-gradient(145deg, #04141f, #0a2d3d);
  background-size: 48px 48px, 48px 48px, cover, cover;
}

.aff-calc-card {
  border-radius: 24px;
}

.aff-calc-slider-wrap input[type="range"]::-webkit-slider-thumb {
  box-shadow: 0 2px 10px rgba(0, 170, 157, 0.38);
}

.aff-calc-slider-wrap input[type="range"]::-moz-range-thumb {
  box-shadow: 0 2px 10px rgba(0, 170, 157, 0.38);
}

.aff-calc-bar {
  border: 1px solid rgba(111, 232, 217, 0.14);
  border-radius: 12px;
  background: #092838;
}

.aff-faq-item[open] {
  border-color: rgba(0, 170, 157, 0.24);
  background: rgba(238, 251, 249, 0.92);
}

@media (max-width: 1080px) {
  .proof-grid,
  .workflow,
  .platform-strip {
    gap: 12px;
  }

  .how-flow {
    gap: 12px;
  }

  .how-step-card,
  .how-step-card--left,
  .how-step-card--mid,
  .how-step-card--right {
    border-radius: 20px;
    background-image: none;
  }

  .how-flow-arrow {
    display: none;
  }
}

@media (max-width: 680px) {
  .proof-item,
  .workflow-step,
  .compare-panel,
  .value-panel,
  .how-step-card,
  .service-growth-card,
  .ops-panel,
  .ops-kpi,
  .platform-visual,
  .solution-row,
  .integration-cell,
  .event-log,
  .price-plan,
  .quote-form,
  .faq-item,
  .review-card,
  .growth-stats,
  .cs-story,
  .cs-industry-grid article,
  .aff-who-card,
  .aff-perk-card,
  .aff-example-card,
  .aff-calc-card,
  .aff-faq-item {
    border-radius: 18px;
  }

  .enterprise,
  .cs-cta-card,
  .aff-community-card,
  .get-started-content,
  .get-started-container {
    border-radius: 22px;
  }

  .value-item,
  .solution-row,
  .ops-kpi {
    padding: 20px;
  }
}

/* HURRYSUPPLIER Signal Grid theme — final contrast and mobile pass */
.workflow-step:last-child,
.platform-strip span:last-child {
  border: 1px solid rgba(8, 73, 89, 0.1);
}

.cs-tag-primary {
  color: var(--teal-dark);
  background: rgba(0, 170, 157, 0.11);
}

.cs-metrics strong,
.cs-story-body cite,
.aff-teaser-copy h2 span,
.aff-hero-copy h1 span,
.aff-why-copy p span,
.aff-perk-index,
.aff-perk-body h3 span,
.aff-perk-body p span,
.aff-example-row p em {
  color: var(--teal-dark);
}

.aff-commission-lead {
  color: var(--teal-dark) !important;
}

.enterprise-list li::before {
  color: #6fe8d9;
  background: transparent;
}

.cs-cta-btn-primary {
  border-color: rgba(111, 232, 217, 0.26);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.cs-cta-btn-primary:hover {
  color: #ffffff;
  background: rgba(111, 232, 217, 0.14);
}

.cs-cta-btn-accent,
.cs-cta-btn-accent:hover {
  border-color: transparent;
  color: #031a21;
  background: linear-gradient(135deg, #78efde, #25caba);
}

.review-stars svg {
  fill: var(--teal-dark);
  stroke: var(--teal-dark);
}

.reviews-megaphone img {
  filter: hue-rotate(118deg) saturate(0.8);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 170, 157, 0.12);
}

.back-to-top:hover {
  box-shadow: 0 8px 22px rgba(0, 127, 120, 0.18);
}

@media (max-width: 680px) {
  .site-header,
  .site-header.is-scrolled,
  .page-customer-stories .site-header,
  .page-customer-stories .site-header.is-scrolled,
  .page-affiliate .site-header,
  .page-affiliate .site-header.is-scrolled {
    gap: 6px;
  }

  .site-header > .brand {
    gap: 8px;
  }

  .site-header > .brand .brand-icon {
    width: 36px;
    height: 36px;
  }

  .site-header > .brand .brand-name {
    font-size: 12px;
  }

  .header-link.btn-login,
  .site-header.is-scrolled .header-link.btn-login,
  .page-customer-stories .site-header .header-link.btn-login,
  .page-affiliate .site-header .header-link.btn-login {
    display: none;
  }

  .lang-switch {
    padding: 2px;
  }

  .lang-switch button {
    width: 27px;
    height: 28px;
    font-size: 12px;
  }

  .how-step-card,
  .how-step-card--left,
  .how-step-card--mid,
  .how-step-card--right {
    min-height: auto;
    padding: 20px 18px 0;
  }
}
