:root {
  --bg: #0b0f1a;
  --bg-2: #111827;
  --bg-3: #182235;
  --panel: rgba(13, 18, 32, 0.92);
  --panel-2: rgba(17, 24, 42, 0.94);
  --line: rgba(125, 166, 226, 0.16);
  --line-strong: rgba(125, 166, 226, 0.24);
  --text: #f4f7fb;
  --muted: #aab7cc;
  --heading-dark: #182033;
  --text-dark: #57637a;
  --surface-light: #f6f4ef;
  --surface-soft: #efe5d5;
  --surface-muted: #f2f5f8;
  --white: #ffffff;
  --primary: #1696f2;
  --primary-2: #7cccff;
  --warm: #dcc7a0;
  --success: #35ca90;
  --warning: #efb75d;
  --info: #59a9ff;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(4, 10, 24, 0.28);
  --shadow-soft: 0 22px 60px rgba(11, 20, 40, 0.12);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 12% 20%, rgba(22, 150, 242, 0.16), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(124, 204, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #08101c 0%, #0b0f1a 28%, #0b0f1a 100%);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container-xxl {
  max-width: 1320px;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(7, 12, 22, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(8, 13, 24, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.navbar-brand img.brand-logo {
  height: 30px;
  width: auto;
}

.nav-link {
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.8rem 1rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: rgba(255, 255, 255, 0.82);
}

.nav-link i {
  color: #ffffff;
  transition: color 0.18s ease;
}

.nav-link:hover i,
.nav-link:focus i {
  color: rgba(255, 255, 255, 0.82);
}

.partner-login {
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(124, 204, 255, 0.28);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.8rem 1.1rem;
  border-radius: 14px;
  display: inline-block;
  transition: 0.25s ease;
}

.partner-login:hover {
  background: rgba(22, 150, 242, 0.12);
  border-color: rgba(124, 204, 255, 0.5);
  color: #ffffff;
}

.header-actions {
  flex-shrink: 0;
}

.header-login,
.header-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.05rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.header-login {
  color: rgba(255, 255, 255, 0.88);
}

.header-login:hover,
.header-login:focus {
  color: #ffffff;
}

.header-start {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #43b1ff);
  box-shadow: 0 16px 34px rgba(22, 150, 242, 0.24);
}

.header-start:hover,
.header-start:focus {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(22, 150, 242, 0.32);
}

.section-space {
  padding: 104px 0;
}

#contact {
  scroll-margin-top: 118px;
}

.section-light,
.section-soft,
.section-light-muted,
.section-contact {
  position: relative;
}

.section-light {
  background: var(--surface-light);
}

.section-soft {
  background: linear-gradient(180deg, #f4ede0 0%, #efe6d7 100%);
}

.section-light-muted {
  background: var(--surface-muted);
}

.section-contact {
  background: linear-gradient(180deg, #f7f3ec 0%, #f4f0e7 100%);
}

.hero-section {
  padding-top: 70px;
  padding-bottom: 88px;
  isolation: isolate;
}

.hero-section::before {
  content: '';
  position: absolute;
  right: -12%;
  top: -10%;
  width: 72%;
  height: 84%;
  background:
    radial-gradient(circle at 62% 26%, rgba(79, 151, 255, 0.34), transparent 18%),
    radial-gradient(circle at 56% 42%, rgba(70, 125, 255, 0.18), transparent 28%);
  filter: blur(8px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  min-height: 720px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.82;
}

.hero-orb-1 {
  right: -80px;
  top: 10px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(22, 150, 242, 0.24), rgba(22, 150, 242, 0));
}

.hero-orb-2 {
  left: -120px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(220, 199, 160, 0.12), rgba(220, 199, 160, 0));
}

.hero-orb-3 {
  right: 18%;
  bottom: 8%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(124, 204, 255, 0.14), rgba(124, 204, 255, 0));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary-2);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.eyebrow-dark {
  color: #36527a;
}

.eyebrow-dark::before {
  background: linear-gradient(90deg, rgba(22, 150, 242, 0.8), transparent);
}

.hero-title,
.section-title {
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.hero-title {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.3rem);
}

.hero-text,
.section-text {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.section-title-dark {
  color: var(--heading-dark);
}

.section-text-dark {
  color: var(--text-dark);
}

.btn-hero {
  border-radius: 16px;
  padding: 0.8rem 1.45rem;
  font-weight: 700;
  min-width: 150px;
  box-shadow: 0 16px 34px rgba(22, 150, 242, 0.22);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, #43b1ff 100%);
  border: none;
  box-shadow: 0 16px 34px rgba(22, 150, 242, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #0b82d8 0%, #2f9ef3 100%);
  box-shadow: 0 18px 38px rgba(22, 150, 242, 0.28);
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  max-width: 700px;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.55;
}

.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
  color: var(--primary);
  font-size: 0.9rem;
  text-shadow: 0 0 12px rgba(22, 150, 242, 0.3);
  flex: 0 0 auto;
}

.hero-stage {
  position: relative;
  min-height: 680px;
}

.hero-video-shell {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 10%, rgba(72, 123, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(14, 20, 38, 0.94), rgba(8, 13, 24, 0.9));
  border: 1px solid rgba(124, 204, 255, 0.14);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.hero-video-shell::before {
  content: '';
  position: absolute;
  inset: -12% auto auto -12%;
  width: 62%;
  height: 62%;
  background: radial-gradient(circle, rgba(22, 150, 242, 0.24), rgba(22, 150, 242, 0));
  filter: blur(14px);
  animation: ambientPulse 8s ease-in-out infinite;
}

.hero-video-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.06) 46%, transparent 62%);
  transform: translateX(-120%);
  animation: shellSweep 8.6s linear infinite;
  pointer-events: none;
}

@keyframes ambientPulse {
  0%,
  100% { transform: scale(1) translate3d(0, 0, 0); opacity: 0.74; }
  50% { transform: scale(1.08) translate3d(18px, 14px, 0); opacity: 1; }
}

@keyframes shellSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(140%); }
}

.dashboard-window,
.content-card,
.step-card,
.contact-shell,
.showcase-frame,
.growth-panel,
.feature-depth-card,
.screen-card {
  border-radius: var(--radius);
}

.dashboard-window {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.98), rgba(7, 11, 21, 0.98));
  border: 1px solid var(--line);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.floating-panel {
  animation: panelFloat 7s ease-in-out infinite;
}

@keyframes panelFloat {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.window-topbar,
.showcase-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-topbar {
  background: rgba(255, 255, 255, 0.02);
}

.window-status,
.showcase-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 700;
}

.window-status {
  background: rgba(53, 202, 144, 0.12);
  color: #a5eccc;
}

.topbar-dots {
  display: flex;
  gap: 6px;
}

.topbar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.window-title,
.showcase-topbar span:first-child {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
}

.showcase-topbar span:first-child {
  color: var(--heading-dark);
}

.showcase-badge {
  background: rgba(22, 150, 242, 0.12);
  color: #2c84cc;
}

.window-body {
  display: grid;
  grid-template-columns: 208px 1fr;
  min-height: 560px;
}

.dashboard-sidebar {
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-brand {
  font-size: 0.84rem;
  color: #dbe9ff;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.sidebar-link {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 12px;
  margin-bottom: 6px;
  transition: 0.25s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: #ffffff;
  background: rgba(22, 150, 242, 0.14);
}

.dashboard-main {
  padding: 22px;
}

.dashboard-toolbar,
.chart-header,
.orders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-toolbar {
  margin-bottom: 16px;
}

.toolbar-pill,
.pill,
.table-pill,
.status-pill,
.mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 700;
}

.toolbar-pill,
.pill,
.mini-pill.blue {
  background: rgba(22, 150, 242, 0.14);
  color: #c6e7ff;
}

.toolbar-meta,
.muted {
  color: var(--muted);
  font-size: 0.88rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.stat-card,
.chart-card,
.orders-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}

.stat-card {
  padding: 18px;
}

.stat-label,
.stat-meta {
  display: block;
}

.stat-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 1.55rem;
  line-height: 1;
}

.stat-meta {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.chart-card {
  padding: 20px;
  margin-bottom: 16px;
}

.chart-header,
.orders-header {
  margin-bottom: 18px;
}

.chart-area {
  position: relative;
  height: 230px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 24, 42, 0.95), rgba(8, 12, 22, 0.95));
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.line-chart {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.chart-scanner {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  background: linear-gradient(90deg, transparent, rgba(124, 204, 255, 0.16), transparent);
  animation: scan 4.8s linear infinite;
}

@keyframes scan {
  0% { left: -22%; }
  100% { left: 100%; }
}

.orders-card {
  padding: 18px;
}

.order-row {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

.order-row:first-of-type {
  border-top: none;
}

.order-item {
  display: block;
}

.order-flag-mobile {
  display: none;
}

.order-country-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.status-pill.success,
.table-pill.success {
  background: #50cd89;
  color: #FFFFFF;
}

.status-pill.new,
.table-pill.new {
  background: #FFC700;
  color: #FFFFFF;
}

.status-pill.courier,
.table-pill.courier {
  background: #7239ea;
  color: #97e9c1;
}

.status-pill.processing,
.table-pill.processing {
  background: #009ef7;
  color: #FFFFFF;
}


.status-pill.warning,
.table-pill.warning,
.mini-pill.warm {
  background: rgba(239, 183, 93, 0.16);
  color: #c88928;
}

.status-pill.info,
.table-pill.info {
  background: rgba(89, 169, 255, 0.14);
  color: #a9d4ff;
}

.mini-pill.neutral {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 250px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(13, 19, 34, 0.96), rgba(8, 13, 24, 0.96));
  border: 1px solid rgba(124, 204, 255, 0.14);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  animation: cardDrift 7.2s ease-in-out infinite;
}

.floating-card-products {
  left: -18px;
  bottom: 70px;
}

.floating-card-health {
  right: -16px;
  top: 54px;
  animation-delay: 1s;
}

@keyframes cardDrift {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.floating-card-label {
  margin-bottom: 12px;
  color: #e7f2ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mini-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.mini-product-row:first-of-type {
  border-top: none;
}

.health-score {
  margin-bottom: 14px;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.health-list {
  display: grid;
  gap: 10px;
}

.health-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.health-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px rgba(53, 202, 144, 0.6);
  flex: 0 0 auto;
}

.proof-strip {
  padding: 0 0 20px;
  background: linear-gradient(180deg, rgba(11, 15, 26, 0) 0%, rgba(11, 15, 26, 1) 100%);
}

.proof-strip-premium {
  margin-top: -6px;
  padding-bottom: 34px;
}

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

.proof-strip-panel {
  gap: 0;
  border: 1px solid rgba(124, 204, 255, 0.08);
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 20, 35, 0.98), rgba(10, 14, 24, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.proof-strip-item {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.proof-strip-panel .proof-strip-item {
  min-height: 100%;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  box-shadow: none;
}

.proof-strip-panel .proof-strip-item:last-child {
  border-right: 0;
}

.proof-strip-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.proof-strip-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-frame,
.growth-panel,
.feature-depth-card,
.contact-shell,
.step-card-light {
  box-shadow: var(--shadow-soft);
}

.showcase-frame {
  background: var(--white);
  border: 1px solid rgba(24, 32, 51, 0.08);
  overflow: hidden;
}

.section-dark-showcase {
  position: relative;
  overflow: hidden;
}

.section-dark-showcase::after {
  content: '';
  position: absolute;
  left: -18%;
  bottom: -18%;
  width: 46%;
  height: 46%;
  background: radial-gradient(circle, rgba(38, 91, 214, 0.12), rgba(38, 91, 214, 0));
  filter: blur(18px);
  pointer-events: none;
}

.section-dark-showcase .section-title,
.section-dark-showcase .section-text,
.section-dark-showcase .eyebrow,
.section-dark-showcase .feature-list li {
  color: var(--text);
}

.section-dark-showcase .section-text,
.section-dark-showcase .feature-list li {
  color: var(--muted);
}

.showcase-dark,
.growth-showcase {
  background:
    radial-gradient(circle at 72% 18%, rgba(61, 125, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(12, 18, 32, 0.98), rgba(7, 11, 21, 0.98));
  border: 1px solid rgba(124, 204, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.showcase-dark .showcase-topbar span:first-child,
.growth-showcase .showcase-topbar span:first-child {
  color: rgba(255, 255, 255, 0.88);
}

.showcase-light .showcase-topbar span:first-child {
  color: var(--heading-dark);
}

.catalogue-table {
  padding: 18px 22px 24px;
}

.catalogue-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(24, 32, 51, 0.08);
  color: #2f3b52;
}

.catalogue-row.header {
  border-top: none;
  color: #6f7b91;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7fd2ff);
  box-shadow: 0 0 12px rgba(22, 150, 242, 0.28);
}

.feature-list-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
}

.feature-list-checks li::before {
  display: none;
}

.feature-list-checks .proof-icon {
  margin-top: 0.18rem;
  color: var(--primary);
}

.feature-list-checks li span:last-child {
  flex: 1 1 auto;
}

.feature-list-dark li {
  color: #263044;
}

.integration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.92rem 1.18rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.integration-card {
  position: relative;
  min-height: 430px;
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.98), rgba(7, 11, 21, 0.98));
  border: 1px solid var(--line);
  overflow: hidden;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(124, 204, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 330px;
  height: 330px;
}

.orbit-2 {
  width: 470px;
  height: 470px;
}

.integration-center,
.integration-node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.integration-center {
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  font-size: 1.28rem;
  font-weight: 800;
  color: #deeeff;
}

.integration-node {
  width: 128px;
  height: 68px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.node-1 {
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
}

.node-2 {
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
}

.node-3 {
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
}

.node-4 {
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
}

.growth-panel {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f1 100%);
  border: 1px solid rgba(24, 32, 51, 0.08);
  overflow: hidden;
}

.growth-panel.growth-showcase {
  min-height: auto;
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(61, 125, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(12, 18, 32, 0.98), rgba(7, 11, 21, 0.98));
  border: 1px solid rgba(124, 204, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.growth-showcase::after {
  content: '';
  position: absolute;
  inset: auto auto -10% -8%;
  width: 58%;
  height: 46%;
  background: radial-gradient(circle, rgba(22, 150, 242, 0.18), rgba(22, 150, 242, 0));
  filter: blur(10px);
  pointer-events: none;
}

.growth-showcase-image {
  position: relative;
  z-index: 1;
}

.growth-grid {
  position: absolute;
  inset: 22px;
  background-image: linear-gradient(rgba(24, 32, 51, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 32, 51, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  border-radius: 18px;
}

.growth-bars {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  gap: 18px;
}

.growth-bars span {
  width: 14%;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #99dafd 0%, #1696f2 100%);
  box-shadow: 0 12px 28px rgba(22, 150, 242, 0.18);
  animation: pulseBars 4.8s ease-in-out infinite;
}

.growth-bars span:nth-child(2) { animation-delay: 0.15s; }
.growth-bars span:nth-child(3) { animation-delay: 0.3s; }
.growth-bars span:nth-child(4) { animation-delay: 0.45s; }
.growth-bars span:nth-child(5) { animation-delay: 0.6s; }

@keyframes pulseBars {
  0%,
  100% { transform: scaleY(0.96); }
  50% { transform: scaleY(1.03); }
}

.growth-label {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 1;
  color: var(--heading-dark);
  font-weight: 700;
}

.growth-points {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.growth-point {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(24, 32, 51, 0.08);
  border-radius: 20px;
}

.growth-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-dark);
  font-size: 1rem;
}

.growth-point p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.7;
}

.section-heading-wrap {
  max-width: 760px;
  margin: 0 auto 20px;
}

.text-center .eyebrow::before {
  display: none;
}

.step-card {
  padding: 30px;
  height: 100%;
}

.step-card-light {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 32, 51, 0.08);
}

.step-number {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.step-card h3,
.feature-depth-card h3 {
  font-size: 1.32rem;
  margin-bottom: 14px;
  color: var(--heading-dark);
}

.step-card p,
.feature-depth-card p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 0;
}

.screen-stack {
  position: relative;
  min-height: 492px;
}

.screen-card {
  position: absolute;
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.98), rgba(8, 12, 22, 0.98));
  border: 1px solid rgba(124, 204, 255, 0.14);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.screen-card-main {
  inset: 0;
  z-index: 1;
}

.screen-card-secondary {
  width: 260px;
  right: -65px;
  top: 120px;
  z-index: 2;
}

.screen-card-tertiary {
  width: 220px;
  right: -55px;
  bottom: -30px;
  z-index: 3;
}

.screen-card-body {
  padding: 18px;
}

.screen-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.screen-line.long {
  width: 74%;
}

.screen-line.short {
  width: 48%;
}

.screen-order-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 0.8fr;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
}

.screen-order-grid span {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-order-grid span:nth-child(-n+3) {
  border-top: none;
}

.tracking-bars {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.tracking-bars span {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 204, 255, 0.3), rgba(22, 150, 242, 0.9));
}

.screen-dot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px;
}

.screen-dot-grid span {
  height: 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-depth-card {
  height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(24, 32, 51, 0.08);
}

.contact-shell {
  padding: 46px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 32, 51, 0.08);
}

.form-label {
  color: var(--heading-dark);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 32, 51, 0.12);
  color: var(--heading-dark);
  border-radius: 14px;
  padding: 0.95rem 1rem;
}

.form-control:focus {
  background: #ffffff;
  border-color: rgba(22, 150, 242, 0.44);
  box-shadow: 0 0 0 0.25rem rgba(22, 150, 242, 0.12);
  color: var(--heading-dark);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #09101c;
}


.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

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

@media (max-width: 1199.98px) {
  .window-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .floating-card-products {
    left: 14px;
    bottom: 18px;
  }

  .floating-card-health {
    right: 14px;
    top: 18px;
  }
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 78px 0;
  }

  .hero-section {
    padding-top: 38px;
  }

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

  .hero-title {
    max-width: 100%;
  }

  .hero-stage {
    min-height: 620px;
  }

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

  .proof-strip-panel .proof-strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .proof-strip-panel .proof-strip-item:last-child {
    border-bottom: 0;
  }

  .screen-card-main {
    inset: 0;
  }

}

@media (max-width: 767.98px) {
  .section-space {
    padding: 60px 0;
  }

  .btn-hero {
    min-width: 0;
    min-height: 42px;
    padding: 0.62rem 1rem;
    font-size: 0.86rem;
    border-radius: 12px;
  }

  .hero-cta-main {
    width: 100%;
  }

  .hero-cta-button {
    width: 100%;
  }

  .navbar-collapse {
    padding-top: 10px;
  }

  .header-actions {
    display: grid !important;
    width: 100%;
    gap: 10px !important;
    margin-top: 14px !important;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-login,
  .header-start {
    width: 100%;
    min-height: 42px;
    padding: 0.78rem 1rem;
    border-radius: 12px;
  }

  .header-login {
    background: #333333;
    color: #ffffff;
  }

  .header-login:hover,
  .header-login:focus {
    background: #3e3e3e;
    color: #ffffff;
  }

  .header-start {
    background: #1696f2;
    box-shadow: 0 12px 28px rgba(22, 150, 242, 0.22);
  }

  .hero-proof-grid,
  .stats-grid,
  .catalogue-row,
  .order-row,
  .screen-order-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-video-shell {
    padding: 18px;
  }

  .dashboard-main {
    padding: 16px;
  }

  .dashboard-toolbar,
  .chart-header,
  .orders-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .orders-card .order-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
  }

  .orders-card .order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
  }

  .orders-card .order-country-flag {
    display: none;
  }

  .orders-card .order-flag-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    flex: 0 0 auto;
  }

  .orders-card .status-pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .catalogue-row {
    gap: 6px;
  }

  .growth-panel,
  .contact-shell {
    padding: 28px;
  }

  .screen-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .screen-card {
    position: static;
    width: 100%;
  }

  .integration-card {
    min-height: 500px;
  }

  .integration-node {
    width: 110px;
    height: 58px;
    font-size: 0.82rem;
  }
}

.integration-switcher {
  align-items: stretch;
}

.integration-chip:hover,
.integration-chip:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(124, 204, 255, 0.26);
  color: #ffffff;
}

.integration-chip.active {
  background: linear-gradient(135deg, rgba(22, 150, 242, 0.24), rgba(22, 150, 242, 0.1));
  border-color: rgba(124, 204, 255, 0.54);
  box-shadow: 0 14px 26px rgba(22, 150, 242, 0.14);
}

.integration-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.integration-preview {
  display: block;
  width: 100%;
  height: auto;
}

.integration-caption {
  padding: 14px 4px 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

/* Requested refinement overrides */
.partner-login {
  color: #ffffff;
  border: 1px solid rgba(124, 204, 255, 0.46);
  background: linear-gradient(135deg, rgba(22, 150, 242, 0.22), rgba(22, 150, 242, 0.1));
  padding: 0.84rem 1.18rem;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px rgba(22, 150, 242, 0.16);
}

.partner-login:hover {
  background: linear-gradient(135deg, rgba(22, 150, 242, 0.34), rgba(22, 150, 242, 0.16));
  border-color: rgba(124, 204, 255, 0.66);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-video-shell {
  border-radius: 26px;
}

.stat-card,
.chart-card,
.orders-card {
  border-radius: 16px;
}

.floating-card {
  border-radius: 18px;
}

.proof-strip-item {
  border-radius: 18px;
}

.integration-switcher {
  align-items: stretch;
}

.integration-chip {
  justify-content: center;
  padding: 0.88rem 1.12rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.22s ease;
}

.integration-chip:hover,
.integration-chip:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(124, 204, 255, 0.26);
  color: #ffffff;
}

.integration-chip.active {
  background: linear-gradient(135deg, rgba(22, 150, 242, 0.24), rgba(22, 150, 242, 0.1));
  border-color: rgba(124, 204, 255, 0.54);
  box-shadow: 0 14px 26px rgba(22, 150, 242, 0.14);
}

.integration-card {
  padding: 18px;
}

.integration-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.integration-preview {
  display: block;
  width: 100%;
  height: auto;
}

.integration-caption {
  padding: 14px 4px 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1040;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(124, 204, 255, 0.42);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(13, 19, 34, 0.92), rgba(8, 13, 24, 0.94));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

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

.scroll-top:hover,
.scroll-top:focus {
  border-color: rgba(124, 204, 255, 0.68);
  background: linear-gradient(180deg, rgba(18, 31, 53, 0.96), rgba(10, 18, 31, 0.96));
}

.scroll-top-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid #d9efff;
  border-left: 3px solid #d9efff;
  transform: translate(-50%, -36%) rotate(45deg);
}

@media (max-width: 767.98px) {
  .scroll-top {
    right: 16px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .site-header.scrolled .navbar-brand img.brand-logo {
    height: 42px;
  }
}

.mockup-frame {
  overflow: hidden;
}

.section-mockup-image {
  display: block;
  width: 100%;
  height: auto;
}

.screen-stack-images .screen-card {
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.98), rgba(8, 12, 22, 0.98));
}

.screen-stack-images .screen-card .section-mockup-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

/* Proof strip icons and workflow showcase */
.proof-strip-item {
  position: relative;
  padding-top: 22px;
}

.proof-strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 1px solid rgba(124, 204, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 24%, rgba(88, 165, 255, 0.3), rgba(24, 37, 63, 0.9) 48%, rgba(10, 16, 28, 0.96));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.proof-strip-icon-svg {
  width: 22px;
  height: 22px;
  stroke: #7cc7ff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.workflow-showcase {
  margin-top: 2.75rem;
}

@media (max-width: 767.98px) {
  .proof-strip-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }
}

/* Header stability and white wordmark overrides */
.site-shell {
  overflow: visible;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(7, 12, 22, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

main {
  padding-top: 104px;
}

.site-header .navbar {
  padding-top: 0.9rem !important;
  padding-bottom: 0.9rem !important;
  transition: none;
}

.site-header.scrolled {
  background: rgba(8, 13, 24, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.site-header.scrolled .navbar {
  padding-top: 0.66rem !important;
  padding-bottom: 0.66rem !important;
}

.site-header .navbar-brand,
.site-header .partner-login,
.site-header .header-login,
.site-header .header-start,
.site-header .nav-link {
  transition: transform 0.18s ease, opacity 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-header.scrolled .navbar-brand {
  transform: scale(0.94);
  transform-origin: left center;
}

.site-header.scrolled .partner-login {
  transform: scale(0.96);
  box-shadow: 0 10px 22px rgba(22, 150, 242, 0.12);
}

.site-header.scrolled .header-login,
.site-header.scrolled .header-start {
  transform: scale(0.96);
}

.site-header.scrolled .nav-link {
  opacity: 0.92;
  font-size: 0.92rem;
}

html {
  scroll-padding-top: 118px;
}

@media (max-width: 767.98px) {
  main {
    padding-top: 92px;
  }
}

/* Bootstrap icon pass and dark contact/footer adjustments */
.proof-strip-icon {
  font-size: 1.2rem;
  color: #7cc7ff;
}

.proof-strip-icon-svg {
  display: none;
}

.feature-depth-card {
  position: relative;
}

.feature-depth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 1px solid rgba(22, 150, 242, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(22, 150, 242, 0.08), rgba(22, 150, 242, 0.03));
  color: #1696f2;
  font-size: 1.2rem;
}

.section-contact {
  background: linear-gradient(180deg, #131c2d 0%, #101827 100%);
}

.section-contact .contact-shell {
  background: rgba(16, 24, 39, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.section-contact .eyebrow-dark,
.section-contact .section-title-dark,
.section-contact .section-text-dark,
.section-contact .form-label {
  color: #f8fafc;
}

.section-contact .section-text-dark {
  color: rgba(248, 250, 252, 0.74);
}

.section-contact .form-control {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.section-contact .form-control::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.section-contact .form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.site-footer {
  background: #09101c;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.80rem;
}

.footer-brand-inline {
  overflow: hidden;
}

.contact-form-shell {
  position: relative;
  padding: 28px 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-copy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border: 1px solid rgba(124, 204, 255, 0.2);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(22, 150, 242, 0.14), rgba(22, 150, 242, 0.05));
  color: #9cddff;
  font-size: 1.7rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

/* Original logo restoration and hero/title sizing refinements */
.navbar-brand,
.footer-brand {
  overflow: hidden;
}

.navbar-brand img.brand-logo,
.footer-logo {
  filter: none !important;
  display: block;
  width: auto;
  clip-path: none;
  transform-origin: left center;
}

.navbar-brand img.brand-logo {
  height: 48px;
  margin: 0;
}

.site-header.scrolled .navbar-brand img.brand-logo {
  height: 40px;
}

.footer-logo {
  height: 42px;
  margin: 0;
}

.hero-grid {
  min-height: 640px;
  align-items: flex-start !important;
}

.hero-section {
  padding-top: 44px;
  padding-bottom: 72px;
}

.hero-title {
  max-width: 20ch;
  font-size: clamp(2.1rem, 3.8vw, 3.55rem);
  line-height: 1.05;
}

#hero-title-sub {
  max-width: 20ch;
  margin: 22px 0 20px 0;
  color: #6cbcff;
  font-size: clamp(1.45rem, 2.55vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero-stage {
  min-height: 590px;
}

.hero-video-shell {
  padding: 22px 20px 20px;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 3.05rem);
  line-height: 1.05;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 28px;
  }

  .hero-stage {
    min-height: 520px;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand img.brand-logo {
    height: 42px;
    margin: 0;
  }

  .site-header.scrolled .navbar-brand img.brand-logo {
    height: 36px;
  }

  .footer-logo {
    height: 34px;
    margin: 0;
  }

  .contact-form-shell {
    padding: 22px 20px 20px;
  }

  .contact-copy-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    font-size: 1.45rem;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  #hero-title-sub {
    max-width: 100%;
    margin-top: 16px;
    font-size: 1.6rem;
    line-height: 0.98;
  }

  .section-title {
    font-size: 1.95rem;
  }

  .hero-stage {
    min-height: auto;
  }
}

/* Full dark section pass */
.section-light,
.section-soft,
.section-light-muted {
  background:
    radial-gradient(circle at 84% 12%, rgba(22, 150, 242, 0.08), transparent 20%),
    linear-gradient(180deg, #0d1322 0%, #0a101c 100%);
}

.section-title-dark,
.section-text-dark,
.eyebrow-dark,
.feature-list-dark li,
.growth-point strong,
.growth-point p,
.feature-depth-card h3,
.feature-depth-card p,
.step-card h3,
.step-card p,
.form-label {
  color: var(--text);
}

.section-text-dark,
.feature-list-dark li,
.growth-point p,
.feature-depth-card p,
.step-card p {
  color: var(--muted);
}

.eyebrow-dark {
  color: var(--primary-2);
}

.eyebrow-dark::before {
  background: linear-gradient(90deg, rgba(22, 150, 242, 0.8), transparent);
}

.showcase-frame,
.feature-depth-card,
.growth-point,
.step-card-light,
.contact-shell {
  background: linear-gradient(180deg, rgba(18, 25, 41, 0.96), rgba(12, 17, 29, 0.96));
  border: 1px solid rgba(124, 204, 255, 0.12);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.showcase-light .showcase-topbar span:first-child,
.section-light .showcase-topbar span:first-child,
.section-soft .showcase-topbar span:first-child,
.section-light-muted .showcase-topbar span:first-child {
  color: rgba(255, 255, 255, 0.88);
}

.catalogue-row {
  color: rgba(255, 255, 255, 0.84);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.catalogue-row.header {
  color: #90a3bf;
}

.section-light .catalogue-table,
.section-soft .catalogue-table,
.section-light-muted .catalogue-table {
  background: transparent;
}

.feature-depth-icon {
  border-color: rgba(22, 150, 242, 0.18);
  background: linear-gradient(180deg, rgba(22, 150, 242, 0.12), rgba(22, 150, 242, 0.05));
}

.growth-point {
  background: rgba(17, 24, 39, 0.78);
}

.contact-shell {
  background: rgba(16, 24, 39, 0.72);
}

/* Scroll reveal motion */
.reveal-in {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal-in.reveal-left {
  transform: translate3d(-38px, 0, 0);
}

.reveal-in.reveal-right {
  transform: translate3d(38px, 0, 0);
}

.reveal-in.reveal-up-soft {
  transform: translate3d(0, 22px, 0);
}

.reveal-in.reveal-scale {
  transform: translate3d(0, 22px, 0) scale(0.965);
}

.reveal-in.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-in,
  .reveal-in.reveal-left,
  .reveal-in.reveal-right,
  .reveal-in.reveal-up-soft,
  .reveal-in.reveal-scale,
  .reveal-in.reveal-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Restore split light sections with pale blue surfaces */
.section-light {
  background: linear-gradient(180deg, #eef6ff 0%, #e9f2ff 100%);
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background: linear-gradient(180deg, #e7f1ff 0%, #e2edff 100%);
}

.section-light-muted {
  background: linear-gradient(180deg, #f1f7ff 0%, #ebf3ff 100%);
}

.section-light .section-title-dark,
.section-soft .section-title-dark,
.section-light-muted .section-title-dark,
.section-light .growth-point strong,
.section-soft .growth-point strong,
.section-light-muted .growth-point strong,
.section-light .feature-depth-card h3,
.section-soft .feature-depth-card h3,
.section-light-muted .feature-depth-card h3 {
  color: var(--heading-dark);
}

.section-light .section-text-dark,
.section-soft .section-text-dark,
.section-light-muted .section-text-dark,
.section-light .feature-list-dark li,
.section-soft .feature-list-dark li,
.section-light-muted .feature-list-dark li,
.section-light .growth-point p,
.section-soft .growth-point p,
.section-light-muted .growth-point p,
.section-light .feature-depth-card p,
.section-soft .feature-depth-card p,
.section-light-muted .feature-depth-card p {
  color: var(--text-dark);
}

.section-light .eyebrow-dark,
.section-soft .eyebrow-dark,
.section-light-muted .eyebrow-dark {
  color: var(--primary);
}

.section-light .showcase-frame,
.section-light .feature-depth-card,
.section-soft .growth-point,
.section-light-muted .step-card-light,
.section-light .step-card-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
  border: 1px solid rgba(125, 166, 226, 0.18);
  box-shadow: 0 22px 54px rgba(16, 32, 64, 0.12);
}

.section-light .catalogue-row,
.section-soft .catalogue-row,
.section-light-muted .catalogue-row {
  color: #29354b;
  border-top-color: rgba(125, 166, 226, 0.16);
}

.section-light .catalogue-row.header,
.section-soft .catalogue-row.header,
.section-light-muted .catalogue-row.header {
  color: #71809a;
}

.section-light .feature-depth-icon,
.section-soft .feature-depth-icon,
.section-light-muted .feature-depth-icon {
  border-color: rgba(22, 150, 242, 0.14);
  background: linear-gradient(180deg, rgba(22, 150, 242, 0.08), rgba(22, 150, 242, 0.03));
}

.section-onboarding {
  overflow: hidden;
  background: #ffffff;
}

.section-onboarding .eyebrow-dark {
  color: var(--primary);
}

.section-onboarding .section-title-dark {
  color: var(--heading-dark);
}

.section-onboarding .section-text-dark {
  color: var(--text-dark);
}

.onboarding-layout {
  align-items: center;
}

.onboarding-media-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.82fr);
  align-items: end;
  gap: 14px;
}

.onboarding-media-card {
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(24, 32, 51, 0.08);
  box-shadow: 0 24px 56px rgba(20, 29, 48, 0.12);
}

.onboarding-media-card-primary {
  min-height: 430px;
}

.onboarding-media-card-secondary {
  min-height: 350px;
  transform: translateY(24px);
}

.onboarding-media-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.onboarding-steps {
  display: grid;
}

.onboarding-step {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(24, 32, 51, 0.16);
  text-align: left;
  cursor: default;
}

.onboarding-step:first-child {
  padding-top: 0;
}

.onboarding-step:last-child {
  border-bottom: 0;
}

.onboarding-step-number {
  color: #1bcf8e;
  font-size: 1.72rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.onboarding-step-copy strong {
  display: block;
  color: var(--heading-dark);
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.onboarding-step-copy small {
  display: block;
  margin-top: 10px;
  color: var(--text-dark);
  font-size: 0.96rem;
  line-height: 1.7;
}

.onboarding-cta-wrap {
  padding-left: 82px;
}

@media (max-width: 991.98px) {
  .onboarding-media-stack {
    grid-template-columns: 1fr 0.88fr;
  }

  .onboarding-step-copy strong {
    font-size: 2.2rem;
  }

  .onboarding-cta-wrap {
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .onboarding-media-stack {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .onboarding-media-card-primary {
    min-height: 320px;
  }

  .onboarding-media-card-secondary {
    min-height: 280px;
    transform: none;
  }

  .onboarding-step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .onboarding-step-number {
    font-size: 1.7rem;
  }

  .onboarding-step-copy strong {
    font-size: 1.75rem;
  }

  .onboarding-step-copy small {
    font-size: 0.96rem;
  }

  .onboarding-cta-wrap {
    padding-left: 0;
  }
}

/* Merchant story section */
.merchant-story-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(22, 150, 242, 0.12), transparent 28%),
    linear-gradient(180deg, #020b0c 0%, #061012 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.merchant-story-intro {
  margin-bottom: 58px;
}

.merchant-story-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 3.95rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.merchant-story-copy {
  color: rgba(226, 236, 247, 0.76);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.45;
  margin: 10px 0 0 0;
}

.merchant-story-grid {
  row-gap: 42px;
}

.merchant-story-card {
  padding: 18px 18px 24px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(18, 25, 41, 0.72), rgba(12, 17, 29, 0.72));
  border: 1px solid rgba(124, 204, 255, 0.12);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.merchant-story-image {
  display: block;
  width: 100%;
  border-radius: 14px;
  margin-bottom: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.merchant-story-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.merchant-story-card p {
  color: rgba(226, 236, 247, 0.66);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
  flex-grow: 1;
}

.section-contact {
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
}

.section-contact.section-space {
  padding-top: 78px;
  padding-bottom: 82px;
}

.section-contact .contact-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(124, 204, 255, 0.24), transparent 24%),
    radial-gradient(circle at 86% 88%, rgba(7, 40, 78, 0.22), transparent 28%),
    linear-gradient(135deg, #1696f2 0%, #1087e2 28%, #0c6dc2 58%, #0d5cab 100%);
  border: 1px solid rgba(88, 171, 255, 0.34);
  box-shadow: 0 34px 90px rgba(10, 40, 84, 0.2);
  padding: 42px 46px;
}

.section-contact .contact-shell::before {
  content: '';
  position: absolute;
  left: -9%;
  top: 6%;
  width: 44%;
  height: 88%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 58% 52%, rgba(255, 255, 255, 0.1), transparent 34%);
  filter: blur(18px);
  pointer-events: none;
}

.section-contact .contact-shell::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -18%;
  width: 42%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.section-contact .contact-form-shell::before {
  content: none;
}

.section-contact .contact-shell > .row {
  position: relative;
  z-index: 1;
}

.section-contact .contact-copy-column {
  position: relative;
  z-index: 1;
  padding-top:0;
  margin-top:-20px;
}

.section-contact .eyebrow-dark {
  color: rgba(255, 255, 255, 0.78);
}

.section-contact .eyebrow-dark::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), transparent);
}

.section-contact .section-title-dark,
.section-contact .form-label {
  color: #ffffff;
}

.section-contact .section-text-dark {
  color: rgba(240, 247, 255, 0.82);
}

.section-contact .contact-form-shell {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(125, 166, 226, 0.24);
  box-shadow: 0 24px 58px rgba(12, 36, 72, 0.16);
  backdrop-filter: blur(10px);
  padding: 30px 30px 26px;
}

.section-contact .contact-form {
  position: relative;
  z-index: 1;
}

.section-contact .contact-form-shell .form-label {
  color: var(--heading-dark);
}

.section-contact .form-required {
  color: #e45454;
  font-weight: 700;
}

.section-contact .form-control {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(24, 32, 51, 0.12);
  color: var(--heading-dark);
}

.section-contact .form-control:focus {
  background: #ffffff;
  color: var(--heading-dark);
}

.section-contact .alert {
  border: 0;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(16, 32, 64, 0.08);
}

.section-contact .alert-success {
  background: rgba(53, 202, 144, 0.14);
  color: #176948;
}

.section-contact .alert-danger {
  background: rgba(233, 84, 84, 0.12);
  color: #8e2431;
}

.section-contact .contact-copy-icon {
  width: 120px;
  height: 89px;
  margin-top: -2px;
  margin-bottom: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  box-shadow: none;
  opacity: 0.97;
}

.section-contact .contact-copy-icon img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin-top:25px;
  filter: brightness(0) invert(1) saturate(0) opacity(0.92);
}

.contact-trust-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  line-height: 1.55;
}

.contact-trust-list .proof-icon {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

.section-contact .btn-hero {
  min-width: 168px;
  background: #08101c;
  box-shadow: 0 18px 38px rgba(4, 10, 24, 0.22);
}

.section-contact .btn-hero:hover,
.section-contact .btn-hero:focus {
  background: var(--primary);
  box-shadow: 0 20px 42px rgba(22, 150, 242, 0.28);
}

.section-contact .g-recaptcha {
  display: inline-block;
}

@media (max-width: 767.98px) {
  #contact {
    scroll-margin-top: 96px;
  }

  .hide-mobile {
    display: none !important;
  }

  .integration-switcher-desktop {
    display: none;
  }

  .integration-switcher-mobile {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
  }

  .integration-switcher-mobile .integration-chip,
  .integration-switcher-mobile .integration-chip:hover,
  .integration-switcher-mobile .integration-chip:focus-visible,
  .integration-switcher-mobile .integration-chip.active {
    padding: 0.7rem 0.45rem;
    border: 1px solid rgba(124, 204, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    justify-content: center;
  }

  .integration-switcher-mobile .integration-chip.active,
  .integration-switcher-mobile .integration-chip:hover,
  .integration-switcher-mobile .integration-chip:focus-visible {
    background: rgba(22, 150, 242, 0.18);
    border-color: rgba(124, 204, 255, 0.34);
    color: #ffffff;
  }

  .integration-card {
    padding: 14px;
    min-height: auto;
  }

  .integration-visual {
    min-height: auto;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
  }

  .integration-preview {
    width: 100%;
    height: auto;
  }

  .section-contact .contact-copy-icon {
    width: 74px;
    height: auto;
    margin-top: 6px;
    margin-bottom: 10px;
    overflow: visible;
  }

  .section-contact .contact-copy-column {
    margin-top: 0;
    padding-top: 14px;
  }

  .section-contact.section-space {
    padding-top: 34px;
    padding-bottom: 52px;
  }

  .section-contact .contact-shell {
    padding: 22px 18px;
  }

  .section-contact .contact-form-shell {
    padding: 20px 18px 18px;
  }

  .contact-trust-list {
    gap: 12px;
  }
}

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

/* Reseller growth section */
.reseller-growth-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(22, 150, 242, 0.14), transparent 30%),
    linear-gradient(180deg, #020b0c 0%, #061012 100%);
}

.reseller-growth-section .section-title-dark {
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 3.95rem);
}

.reseller-growth-section .section-text-dark {
  color: rgba(226, 236, 247, 0.74);
}

.reseller-growth-intro {
  max-width: 920px;
  margin-bottom: 54px;
}

.reseller-growth-visual {
  position: relative;
  min-height: 560px;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 18, 20, 0.9) 0%, rgba(3, 18, 20, 0.52) 45%, rgba(3, 18, 20, 0.12) 100%),
    url('../img/reseller-world-section-bg.jpg') center / cover no-repeat;
  border: 1px solid rgba(22, 150, 242, 0.16);
  box-shadow: 0 28px 70px rgba(16, 32, 64, 0.18);
}

.reseller-sales-stack {
  position: absolute;
  left: 34px;
  top: 42px;
  width: 250px;
  display: grid;
  gap: 16px;
  z-index: 3;
}

.reseller-sales-card {
  padding: 20px;
  border-radius: 12px;
  background: rgba(8, 18, 32, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  opacity: 0.58;
  transform: scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}

.reseller-sales-card.active,
.reseller-growth-visual.is-platform .reseller-sales-platform {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(53, 202, 144, 0.42);
  background: rgba(9, 32, 35, 0.92);
}

.reseller-growth-visual.is-platform .reseller-sales-own {
  opacity: 0.52;
  transform: scale(0.96);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 18, 32, 0.74);
}

.reseller-sales-card span,
.reseller-sales-card small {
  display: block;
  color: rgba(226, 236, 247, 0.7);
}

.reseller-sales-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.reseller-brand-stage {
  position: absolute;
  left: 320px;
  top: 116px;
  width: 310px;
  height: 280px;
  z-index: 4;
}

.reseller-brand-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 34px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--heading-dark);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reseller-brand-card strong {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.reseller-brand-card span {
  color: var(--text-dark);
}

.reseller-brand-platform {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
}

.reseller-growth-visual.is-platform .reseller-brand-own {
  opacity: 0;
  transform: translateY(-28px) scale(0.96);
}

.reseller-growth-visual.is-platform .reseller-brand-platform {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dummy-brand-mark {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.35rem;
  background: linear-gradient(135deg, #1696f2, #35ca90);
}

.brand-plus {
  font-size: 1.25rem;
  color: var(--primary) !important;
  line-height: 1;
}

.reseller-giftified-logo {
  width: 128px;
  height: auto;
  background: #07101c;
  border-radius: 8px;
  padding: 8px 10px;
}

.reseller-world {
  position: absolute;
  right: 5%;
  top: 14%;
  width: 55%;
  height: 66%;
}

.europe-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gift-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35ca90;
  box-shadow: 0 0 0 4px rgba(53, 202, 144, 0.12), 0 0 14px rgba(53, 202, 144, 0.8);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.gift-dot span {
  position: absolute;
  left: 12px;
  top: -9px;
  white-space: nowrap;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #102033;
  font-size: 0.66rem;
  font-weight: 700;
  opacity: 1;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gift-dot:hover span {
  opacity: 1;
  transform: translateY(0);
}

.gift-dot-own {
  opacity: 1;
  transform: scale(1);
}

.reseller-growth-visual.is-platform .gift-dot-platform {
  opacity: 1;
  transform: scale(1);
}

.reseller-growth-visual.is-platform .gift-dot-own {
  opacity: 0;
  transform: scale(0.6);
}

.gift-dot-1 { left: 8%; top: 34%; }
.gift-dot-2 { left: 14%; top: 41%; }
.gift-dot-3 { left: 20%; top: 49%; }
.gift-dot-4 { left: 43%; top: 32%; }
.gift-dot-5 { left: 49%; top: 37%; }
.gift-dot-6 { left: 55%; top: 42%; }
.gift-dot-7 { left: 61%; top: 48%; }
.gift-dot-8 { left: 52%; top: 53%; }
.gift-dot-9 { left: 75%; top: 43%; }
.gift-dot-10 { left: 88%; top: 76%; }
.gift-dot-11 { left: 7%; top: 31%; }
.gift-dot-12 { left: 12%; top: 37%; }
.gift-dot-13 { left: 19%; top: 46%; }
.gift-dot-14 { left: 39%; top: 31%; }
.gift-dot-15 { left: 44%; top: 36%; }
.gift-dot-16 { left: 50%; top: 32%; }
.gift-dot-17 { left: 55%; top: 39%; }
.gift-dot-18 { left: 60%; top: 45%; }
.gift-dot-19 { left: 48%; top: 46%; }
.gift-dot-20 { left: 54%; top: 54%; }
.gift-dot-21 { left: 59%; top: 58%; }
.gift-dot-22 { left: 36%; top: 40%; }
.gift-dot-23 { left: 67%; top: 36%; }
.gift-dot-24 { left: 72%; top: 43%; }
.gift-dot-25 { left: 77%; top: 50%; }
.gift-dot-26 { left: 82%; top: 57%; }
.gift-dot-27 { left: 91%; top: 76%; }
.gift-dot-28 { left: 87%; top: 80%; }
.gift-dot-29 { left: 70%; top: 62%; }
.gift-dot-30 { left: 76%; top: 55%; }
.gift-dot-31 { left: 44%; top: 65%; }
.gift-dot-32 { left: 50%; top: 70%; }

/* Bulk orders section */
.bulk-orders-block {
  background:
    radial-gradient(circle at 76% 0%, rgba(22, 150, 242, 0.12), transparent 30%),
    linear-gradient(180deg, #020b0c 0%, #061012 100%);
}

.bulk-orders-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 72px;
}

.bulk-orders-intro {
  max-width: 940px;
  margin-bottom: 54px;
}

.bulk-orders-title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 3.95rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.bulk-orders-copy {
  margin: 0;
  color: rgba(226, 236, 247, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.5;
}

.bulk-orders-card {
  height: 100%;
  padding: 36px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(8, 34, 36, 0.95), rgba(5, 24, 27, 0.95));
  border: 1px solid rgba(124, 204, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.bulk-card-visual {
  position: relative;
  min-height: 330px;
  margin-bottom: 34px;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 78%, rgba(22, 150, 242, 0.18), transparent 28%),
    linear-gradient(180deg, #06181c 0%, #031114 100%);
}

.bulk-cart-panel {
  position: absolute;
  left: 11%;
  right: 9%;
  top: 14%;
  padding: 18px;
  border-radius: 14px;
  background: #f7fbff;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.22);
}

.bulk-cart-head,
.bulk-cart-columns,
.bulk-cart-row {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr 0.75fr;
  align-items: center;
  gap: 12px;
}

.bulk-cart-head {
  margin-bottom: 16px;
  color: #101827;
  font-weight: 700;
}

.bulk-cart-head strong {
  grid-column: 4;
  color: var(--primary);
  text-align: right;
}

.bulk-total-value {
  display: inline-block;
  min-width: 50px;
  animation: bulkTotalPulse 4.8s ease-in-out infinite;
}

.bulk-cart-columns {
  padding: 9px 12px;
  border-radius: 9px;
  background: #edf4fb;
  color: #748196;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bulk-cart-row {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #263449;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  opacity: 0;
  transform: translateY(12px);
  animation: bulkRowIn 4.8s ease-in-out infinite;
}

.bulk-cart-row strong {
  color: #101827;
  text-align: right;
}

.bulk-cart-row-2 {
  animation-delay: 0.28s;
}

.bulk-cart-row-3 {
  animation-delay: 0.56s;
}

.bulk-cart-row-4 {
  animation-delay: 0.84s;
}

.bulk-total-card {
  position: absolute;
  right: 5%;
  top: 4%;
  min-width: 148px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ffffff;
  color: #101827;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: bulkFloat 4.8s ease-in-out infinite;
}

.bulk-total-card span {
  display: block;
  color: #6f7f95;
  font-size: 0.76rem;
  font-weight: 700;
}

.bulk-total-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
}

.bulk-recipient-stack {
  position: absolute;
  left: 8%;
  top: 14%;
  width: 34%;
}

.bulk-recipient-card {
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  color: #102033;
  background: #f7fbff;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-18px);
  animation: bulkRecipientIn 4.6s ease-in-out infinite;
}

.bulk-recipient-card:nth-child(2) {
  animation-delay: 0.28s;
}

.bulk-recipient-card:nth-child(3) {
  animation-delay: 0.56s;
}

.bulk-dispatch-panel {
  position: absolute;
  right: 9%;
  top: 14%;
  width: 48%;
  height: 62%;
  border: 1px solid rgba(124, 204, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 42%, rgba(22, 150, 242, 0.25), transparent 20%),
    radial-gradient(circle at 68% 58%, rgba(74, 210, 142, 0.18), transparent 22%),
    rgba(9, 16, 30, 0.82);
}

.bulk-dispatch-panel h4 {
  margin: 18px 20px;
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.bulk-map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ad28e;
  box-shadow: 0 0 0 0 rgba(74, 210, 142, 0.46);
  opacity: 0;
  animation: bulkMapPulse 4.6s ease-in-out infinite;
}

.bulk-map-dot span {
  position: absolute;
  left: 12px;
  top: -7px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #062015;
  background: #dff8eb;
  font-size: 0.68rem;
  font-weight: 800;
}

.bulk-map-dot-1 {
  left: 20%;
  top: 42%;
  animation-delay: 0.7s;
}

.bulk-map-dot-2 {
  left: 42%;
  top: 35%;
  animation-delay: 0.95s;
}

.bulk-map-dot-3 {
  left: 49%;
  top: 54%;
  animation-delay: 1.2s;
}

.bulk-map-dot-4 {
  left: 65%;
  top: 35%;
  animation-delay: 1.45s;
}

.bulk-map-dot-5 {
  left: 28%;
  top: 65%;
  animation-delay: 1.7s;
}

.bulk-dispatch-tag {
  position: absolute;
  left:7.5%;
  bottom: 0%;
  padding: 12px 18px;
  border-radius: 12px;
  color: #8bd8ff;
  background: rgba(4, 12, 24, 0.9);
  font-weight: 800;
  font-size: 0.9rem;
}

@keyframes bulkRowIn {
  0%,
  10% {
    opacity: 0;
    transform: translateY(12px);
  }

  24%,
  78% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes bulkTotalPulse {
  0%,
  18% {
    transform: translateY(0);
  }

  32%,
  74% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bulkFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes bulkRecipientIn {
  0%,
  12% {
    opacity: 0;
    transform: translateX(-18px);
  }

  28%,
  78% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(12px);
  }
}

@keyframes bulkMapPulse {
  0%,
  28% {
    opacity: 0;
    transform: scale(0.6);
    box-shadow: 0 0 0 0 rgba(74, 210, 142, 0.46);
  }

  42%,
  78% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(74, 210, 142, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bulk-total-value,
  .bulk-cart-row,
  .bulk-total-card,
  .bulk-recipient-card,
  .bulk-map-dot {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.bulk-orders-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.bulk-orders-card p {
  margin: 0;
  color: rgba(226, 236, 247, 0.68);
  font-size: 1.05rem;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .merchant-story-intro {
    margin-bottom: 40px;
  }

  .bulk-orders-section {
    padding-top: 52px;
  }

  .reseller-growth-visual {
    min-height: 740px;
    background:
      linear-gradient(180deg, rgba(3, 18, 20, 0.92) 0%, rgba(3, 18, 20, 0.72) 48%, rgba(3, 18, 20, 0.48) 100%);
  }

  .reseller-sales-stack,
  .reseller-brand-stage,
  .reseller-world {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
  }

  .reseller-sales-stack {
    padding: 24px;
  }

  .reseller-brand-stage {
    margin: 0 24px;
  }

  .reseller-world {
    height: 340px;
    margin: 26px 24px 0;
    border-radius: 14px;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(3, 18, 20, 0.18) 0%, rgba(3, 18, 20, 0.08) 36%, rgba(3, 18, 20, 0.02) 100%),
      url('../img/reseller-world-section-bg.jpg') right center / cover no-repeat;
    border: 1px solid rgba(22, 150, 242, 0.12);
  }

  .europe-map {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .merchant-story-title {
    font-size: 2.05rem;
  }

  .bulk-orders-title {
    font-size: 2.05rem;
  }

  .reseller-growth-section .section-title-dark {
    font-size: 2.05rem;
  }

  .merchant-story-copy {
    font-size: 1rem;
  }

  .bulk-orders-card {
    padding: 22px;
  }

  .reseller-growth-intro {
    margin-bottom: 32px;
  }

  .reseller-brand-stage {
    height: 250px;
  }

  .reseller-sales-card strong {
    font-size: 1.5rem;
  }

  .reseller-world {
    height: 360px;
    margin: 22px 18px 0;
    background:
      linear-gradient(90deg, rgba(3, 18, 20, 0.16) 0%, rgba(3, 18, 20, 0.08) 34%, rgba(3, 18, 20, 0.02) 100%),
      url('../img/reseller-world-section-bg.jpg') right center / cover no-repeat;
  }

  .gift-dot {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 3px rgba(53, 202, 144, 0.1), 0 0 10px rgba(53, 202, 144, 0.6);
  }

  .gift-dot span {
    left: 10px;
    top: -8px;
    padding: 2px 5px;
    font-size: 0.6rem;
  }

  .gift-dot-1 { left: 16%; top: 33%; }
  .gift-dot-2 { left: 23%; top: 40%; }
  .gift-dot-3 { left: 30%; top: 47%; }
  .gift-dot-4 { left: 49%; top: 31%; }
  .gift-dot-5 { left: 56%; top: 37%; }
  .gift-dot-6 { left: 61%; top: 43%; }
  .gift-dot-7 { left: 67%; top: 48%; }
  .gift-dot-8 { left: 58%; top: 54%; }
  .gift-dot-9 { left: 78%; top: 44%; }
  .gift-dot-10 { left: 89%; top: 80%; }
  .gift-dot-11 { left: 15%; top: 30%; }
  .gift-dot-12 { left: 21%; top: 36%; }
  .gift-dot-13 { left: 28%; top: 45%; }
  .gift-dot-14 { left: 46%; top: 30%; }
  .gift-dot-15 { left: 52%; top: 35%; }
  .gift-dot-16 { left: 57%; top: 31%; }
  .gift-dot-17 { left: 62%; top: 38%; }
  .gift-dot-18 { left: 67%; top: 44%; }
  .gift-dot-19 { left: 55%; top: 46%; }
  .gift-dot-20 { left: 60%; top: 54%; }
  .gift-dot-21 { left: 65%; top: 58%; }
  .gift-dot-22 { left: 43%; top: 39%; }
  .gift-dot-23 { left: 73%; top: 35%; }
  .gift-dot-24 { left: 78%; top: 42%; }
  .gift-dot-25 { left: 82%; top: 49%; }
  .gift-dot-26 { left: 86%; top: 56%; }
  .gift-dot-27 { left: 92%; top: 78%; }
  .gift-dot-28 { left: 88%; top: 82%; }
  .gift-dot-29 { left: 74%; top: 62%; }
  .gift-dot-30 { left: 80%; top: 55%; }
  .gift-dot-31 { left: 49%; top: 66%; }
  .gift-dot-32 { left: 56%; top: 70%; }

  .merchant-story-image {
    margin-bottom: 18px;
  }

  .bulk-card-visual {
    min-height: 454px;
    margin-bottom: 22px;
  }

  .bulk-cart-panel {
    left: 6%;
    right: 6%;
    top: 13%;
    padding: 14px;
  }

  .bulk-cart-columns,
  .bulk-cart-row {
    grid-template-columns: 1fr 0.8fr;
  }

  .bulk-cart-columns span:nth-child(3),
  .bulk-cart-columns span:nth-child(4),
  .bulk-cart-row span:nth-child(3),
  .bulk-cart-row strong {
    display: none;
  }

  .bulk-total-card {
    right: 6%;
    top: 4%;
  }

  .bulk-recipient-stack,
  .bulk-dispatch-panel {
    left: 6%;
    right: 6%;
    width: auto;
  }

  .bulk-recipient-stack {
    top: 8%;
  }

  .bulk-dispatch-panel {
    top: 55%;
    height: 30%;
  }

  .bulk-dispatch-tag {
    left: 8%;
    bottom: 3%;
    max-width: calc(100% - 16%);
    font-size: 0.82rem;
  }

  .onboarding-media-card-primary,
  .onboarding-media-card-secondary,
  .integration-card {
    min-height: auto;
  }
}

.pricing-section {
  border-top: 1px solid rgba(125, 166, 226, 0.18);
  border-bottom: 1px solid rgba(125, 166, 226, 0.18);
}

.pricing-intro {
  max-width: 840px;
  margin: 0 auto 42px;
}

.pricing-currency-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  padding: 6px;
  background: #edf4fb;
  border: 1px solid rgba(24, 32, 51, 0.12);
  border-radius: 999px;
}

.pricing-currency-button {
  min-width: 76px;
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #617089;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.pricing-currency-button.active,
.pricing-currency-button[aria-pressed="true"] {
  background: #ffffff;
  color: var(--heading-dark);
  box-shadow: 0 8px 20px rgba(16, 32, 64, 0.08);
}

.pricing-section .section-title-dark {
  color: var(--heading-dark);
}

.pricing-section .section-text-dark {
  color: var(--heading-dark);
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 255, 0.99));
  border: 1px solid rgba(24, 32, 51, 0.14);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(16, 32, 64, 0.06);
}

.pricing-card-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-tier {
  margin: -28px -24px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #1696f2 0%, #43b1ff 100%);
  color: #ffffff;
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  border-radius: 18px 18px 0 0;
}

.pricing-tier i {
  color: #ffffff;
  font-size: 1.28rem;
}

.pricing-rate {
  margin-top: 18px;
  color: var(--heading-dark);
  font-size: 2.55rem;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.pricing-unit {
  margin-top: 8px;
  color: #617089;
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-threshold {
  margin: 18px 0 22px;
  color: var(--heading-dark);
  font-size: 0.98rem;
  line-height: 1.65;
  min-height: 35px;
}

.pricing-highlights,
.pricing-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-highlights {
  display: grid;
  gap: 12px;
}

.pricing-highlights li,
.pricing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #58667f;
  line-height: 1.55;
}

.pricing-highlights li i,
.pricing-feature-list li::before {
  color: var(--primary);
  flex: 0 0 auto;
}

.pricing-highlights li i {
  margin-top: 2px;
}

.pricing-clause {
  margin: auto 0 0;
  padding-top: 30px;
  color: #7d889d;
  font-size: 0.86rem;
  line-height: 1.5;
}

.pricing-toggle {
  margin-top: 20px;
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(24, 32, 51, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--heading-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  text-align: center;
}

.pricing-toggle i {
  color: var(--primary);
  transition: transform 0.2s ease;
}

.pricing-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.pricing-collapse {
  padding-top: 4px;
}

.pricing-features-wrap {
  margin-top: 28px;
  text-align: center;
}

.pricing-toggle-shared {
  min-width: 280px;
  margin: 0 auto;
}

.pricing-feature-list {
  display: grid;
  gap: 10px;
}

.pricing-feature-list li::before {
  content: '\F26E';
  font-family: bootstrap-icons;
  font-size: 0.9rem;
  margin-top: 2px;
}

.pricing-table-wrap {
  margin-top: 22px;
  border: 1px solid rgba(24, 32, 51, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 255, 0.99));
  box-shadow: 0 16px 36px rgba(16, 32, 64, 0.06);
  overflow: hidden;
}

.pricing-feature-table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-feature-table thead th {
  padding: 18px 16px;
  background: linear-gradient(135deg, #1696f2 0%, #43b1ff 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid rgba(24, 32, 51, 0.14);
}

.pricing-feature-table thead th:first-child,
.pricing-feature-table tbody th {
  text-align: left;
  font-weight: 500;
  font-size:95%;
}

.pricing-feature-table thead th:first-child {
  font-size: 1rem;
  border-top-left-radius: 18px;
}

.pricing-feature-table thead th:last-child {
  border-top-right-radius: 18px;
}

.pricing-feature-table tbody th,
.pricing-feature-table tbody td {
  padding: 16px;
  color: var(--heading-dark);
  border-bottom: 1px solid rgba(125, 166, 226, 0.14);
}

.pricing-feature-table tbody tr:last-child th,
.pricing-feature-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-feature-table tbody td {
  text-align: center;
  color: #6b7891;
  font-size: 0.94rem;
  font-weight: 500;
}

.pricing-feature-table tbody td i {
  color: var(--primary);
  font-size: 1rem;
}

.pricing-empty {
  color: rgba(107, 120, 145, 0.32);
}

.pricing-feature-group + .pricing-feature-group {
  margin-top: 20px;
}

.pricing-feature-group-title {
  margin: 22px 0 0;
  padding: 14px 18px;
  background: linear-gradient(135deg, #1696f2 0%, #43b1ff 100%);
  color: #ffffff;
  text-align:left;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 18px 18px 0 0;
}

.pricing-feature-group-title + .pricing-table-wrap {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 0;
}

.pricing-feature-table-single thead th,
.pricing-feature-table-single tbody th {
  text-align: left;
}

@media (max-width: 1199.98px) {
  .pricing-threshold {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .pricing-intro {
    margin-bottom: 28px;
  }

  .pricing-card-body {
    padding: 24px 18px 20px;
  }

  .pricing-tier {
    margin: -24px -18px 16px;
    padding: 12px 16px;
    font-size: 1.42rem;
    border-radius: 18px 18px 0 0;
  }

  .pricing-rate {
    font-size: 2.2rem;
  }

  .pricing-toggle-shared {
    min-width: 0;
    width: 100%;
  }
}
