/* ==========================================================================
   MFA Prep & 3PL Center — Design System
   ========================================================================== */

:root {
  --navy: #0f2447;
  --navy-deep: #091a35;
  --navy-mid: #17366b;
  --orange: #f97316;
  --orange-dark: #ea6c0a;
  --orange-light: #ffb347;

  --bg: #f6f8fc;
  --bg-alt: #eef2f9;
  --surface: #ffffff;

  --text: #10203f;
  --text-muted: #5b6b85;
  --text-soft: #8393ac;

  --border: rgba(15, 36, 71, 0.1);
  --border-soft: rgba(15, 36, 71, 0.06);

  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-bg-strong: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-navy-bg: rgba(15, 36, 71, 0.66);
  --glass-navy-border: rgba(255, 255, 255, 0.16);

  --shadow-sm: 0 4px 18px rgba(16, 32, 63, 0.06);
  --shadow-md: 0 14px 40px rgba(16, 32, 63, 0.1);
  --shadow-lg: 0 24px 70px rgba(16, 32, 63, 0.16);
  --shadow-orange: 0 14px 32px rgba(249, 115, 22, 0.28);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --header-h: 84px;
  --container: 1220px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  line-height: 1.18;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--alt {
  background: var(--bg-alt);
}

/* Background blobs for glass depth ------------------------------------- */

.blob-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}

.blob--orange {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 70%);
}

.blob--navy {
  background: radial-gradient(circle, rgba(15, 36, 71, 0.28), transparent 70%);
}

/* Eyebrow / kicker -------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 15px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(249, 115, 22, 0.09);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow--light {
  border-color: rgba(255, 179, 71, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--orange-light);
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Buttons ----------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 24px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: var(--shadow-orange);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.btn--navy {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
}

.btn--navy:hover {
  background: var(--navy-mid);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
  box-shadow: var(--shadow-sm);
}

.btn--white {
  border: 1px solid var(--orange-light);
  background: #fff;
  color: var(--navy);
}

.btn--white:hover {
  background: #fff7ed;
  box-shadow: var(--shadow-md);
}

.btn--sm {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.82rem;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
}

/* Blur lives on a pseudo-element, not the header itself, so the header
   never becomes a CSS containing block for its fixed-position mobile nav
   (backdrop-filter on an element promotes it to a containing block for
   fixed descendants, which was collapsing the mobile menu to header-height). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(246, 248, 252, 0.7);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled::before {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 36, 71, 0.18);
}

.brand-mark img {
  width: 132%;
  height: 132%;
  object-fit: cover;
}

.brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-name span {
  display: block;
  color: var(--orange-dark);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 6px 0;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a.nav-cta {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}

.main-nav a.nav-cta::after {
  display: none;
}

.main-nav a.nav-cta:hover {
  background: var(--orange-dark);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language switcher -------------------------------------------------------- */

.mfa-language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.mfa-language-label {
  margin-right: 2px;
  color: var(--text-muted);
  font: 700 0.68rem "Inter", Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mfa-language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 26px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mfa-flag-icon {
  display: block;
  width: 25px;
  height: 16px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 36, 71, 0.18);
}

.mfa-language-button:hover,
.mfa-language-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--border);
  background: var(--bg-alt);
  outline: 0;
}

#google_translate_element {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/* Mobile nav toggle --------------------------------------------------------- */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}

.hero-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}

.hero-banner img {
  width: 100%;
  height: auto;
}

.hero-content {
  position: relative;
  margin: 24px 0 0;
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-location i {
  color: var(--orange);
}

.hero-content h1 {
  color: var(--text);
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.hero-experience {
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-experience strong {
  color: var(--text);
}

.hero-channel-label {
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-channel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15, 36, 71, 0.04);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.hero-channel.amazon { border-color: rgba(249, 115, 22, 0.4); color: var(--orange-dark); background: rgba(249, 115, 22, 0.08); }
.hero-channel.shopify { color: #16a34a; }
.hero-channel.tiktok { color: #c026d3; }
.hero-channel.walmart { color: #2563eb; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-buttons .btn {
  flex: 1 1 220px;
}

/* Hero stat strip, sits below the photo card ------------------------------- */

.hero-stats-wrap {
  position: relative;
  z-index: 2;
  margin: 28px 0 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow-md);
}

.hero-stat {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border-soft);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-dark);
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-stat span {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* SPN trust strip ----------------------------------------------------------- */

.trust-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 40px;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-strip i {
  color: var(--orange);
  font-size: 1.1rem;
}

.trust-strip a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger.is-visible > * {
  animation: fadeUp 0.6s var(--ease) both;
}

.reveal-stagger.is-visible > *:nth-child(1) { animation-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { animation-delay: 0.09s; }
.reveal-stagger.is-visible > *:nth-child(3) { animation-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { animation-delay: 0.23s; }
.reveal-stagger.is-visible > *:nth-child(5) { animation-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(6) { animation-delay: 0.37s; }
.reveal-stagger.is-visible > *:nth-child(7) { animation-delay: 0.44s; }
.reveal-stagger.is-visible > *:nth-child(8) { animation-delay: 0.51s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

/* ==========================================================================
   Video / markets section
   ========================================================================== */

.markets-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.market-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.video-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  background:
    linear-gradient(120deg, rgba(9, 26, 53, 0.85), rgba(9, 26, 53, 0.5)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1200&q=85") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.video-play:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

.video-play .play-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ==========================================================================
   Advantage / feature cards
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 26px;
}

.feature-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.feature-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 26, 53, 0.92) 0%, rgba(9, 26, 53, 0.35) 55%, transparent 100%);
}

.feature-photo-card .fp-content {
  position: relative;
  z-index: 1;
  padding: 26px;
  align-self: flex-end;
  margin-top: auto;
  color: #fff;
}

.feature-photo-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.fp-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-photo-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.feature-photo-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.glass-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--glass-bg-strong);
  border: 1px solid var(--border);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.3);
}

.glass-card .gc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.16), rgba(249, 115, 22, 0.06));
  color: var(--orange-dark);
  font-size: 1.1rem;
}

.glass-card h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.glass-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.glass-card.spn-card {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.glass-card.spn-card .gc-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* capability + principle strips --------------------------------------------- */

.pill-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.pill-strip-item {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.pill-strip-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
}

.pill-strip-item span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  padding: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-mid));
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.cta-band p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  background: rgba(246, 248, 252, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.pricing-subnav .container {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
}

.pricing-subnav span.label {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-subnav a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.pricing-subnav a:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.pricing-hero {
  padding: 70px 0 20px;
  text-align: center;
}

.pricing-hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.pricing-hero h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin: 0 auto 14px;
  max-width: 760px;
}

.pricing-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-muted);
}

.pricing-category {
  margin-bottom: 54px;
}

.pricing-category-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.pc-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-category-head .pc-kicker {
  display: block;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.pricing-category-head h3 {
  font-size: 1.3rem;
}

.spec-card {
  border-radius: var(--radius-md);
  background: var(--glass-bg-strong);
  border: 1px solid var(--border);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.2s ease;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:hover {
  background: rgba(249, 115, 22, 0.05);
}

.spec-row-main strong {
  display: block;
  font-size: 0.96rem;
  color: var(--text);
  margin-bottom: 3px;
}

.spec-row-main span {
  display: block;
  color: var(--text-muted);
  font-size: 0.83rem;
  max-width: 560px;
}

.spec-price {
  flex-shrink: 0;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  background: rgba(15, 36, 71, 0.06);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.86rem;
  white-space: nowrap;
}

.spec-row.is-popular .spec-price {
  background: rgba(249, 115, 22, 0.14);
  color: var(--orange-dark);
}

.popular-tag {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  vertical-align: middle;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-mini-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pricing-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-mini-card .tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-mini-card h4 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.pricing-mini-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.pricing-mini-card .price {
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}

.pricing-mini-card .note {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.78rem;
}

/* Fulfillment tier cards ---------------------------------------------------- */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tier-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tier-card.is-popular {
  border-color: var(--orange);
  background: linear-gradient(165deg, #fff, #fff8f1);
  box-shadow: var(--shadow-md);
}

.tier-ribbon {
  position: absolute;
  top: -14px;
  left: 28px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-orange);
}

.tier-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.tier-price strong {
  font-family: "Poppins", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
}

.tier-price span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.tier-card .profile-label {
  margin: 20px 0 10px;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tier-list {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.tier-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.tier-list li i {
  margin-top: 3px;
  color: var(--orange);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.tier-note {
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-soft);
  font-size: 0.8rem;
}

/* Conditions list ------------------------------------------------------------ */

.conditions-card {
  padding: 30px 32px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.conditions-card h4 {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.conditions-list {
  display: grid;
  gap: 11px;
}

.conditions-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.conditions-list li i {
  margin-top: 4px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.pricing-quote-cta {
  margin-top: 40px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-quote-cta .pq-text {
  max-width: 560px;
}

.pricing-quote-cta .eyebrow {
  border-color: rgba(255, 179, 71, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--orange-light);
}

.pricing-quote-cta h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-quote-cta p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.pricing-quote-cta .pq-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.checklist-card {
  margin-top: 24px;
  padding: 26px 28px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.checklist-grid li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.checklist-grid li i {
  margin-top: 4px;
  color: var(--orange);
  font-size: 0.7rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-hero {
  padding: 60px 0 10px;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  max-width: 720px;
  margin: 0 auto 16px;
}

.contact-hero h1 span {
  color: var(--orange);
}

.contact-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 26px;
  align-items: start;
}

.contact-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--navy-mid), var(--navy-deep));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-panel h2 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-panel > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 26px;
}

.contact-items {
  display: grid;
  gap: 13px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.25s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
}

.contact-item .icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-item .label {
  margin-bottom: 4px;
  color: var(--orange-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-item .value {
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-item .value a {
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-item .value a:hover {
  color: var(--orange-light);
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.action-button.primary {
  background: var(--orange);
  color: #fff;
}

.action-button.primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.action-button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.action-button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.action-button.whatsapp {
  grid-column: 1 / -1;
  background: #25d366;
  color: #fff;
}

.action-button.whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.receiving-note {
  margin-top: 18px;
  padding: 15px 16px;
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  line-height: 1.6;
}

.form-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.form-header {
  padding: 28px 32px 20px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.form-header h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-wrap {
  min-height: 480px;
  padding: 26px 32px 32px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.service-strip .service {
  min-height: 84px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.service-strip .service i {
  color: var(--orange);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .feature-grid,
  .advantage-grid,
  .card-grid-3,
  .tier-grid,
  .pill-strip,
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .glass-card.spn-card {
    grid-column: span 2;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }

  .nav-open .main-nav {
    transform: translateX(0);
  }

  .main-nav a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border-soft);
    font-size: 1rem;
  }

  .main-nav a.nav-cta {
    margin-top: 10px;
    text-align: center;
    border-bottom: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mfa-language-switcher {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero-content {
    margin-top: 24px;
    padding: 32px 24px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat {
    border-bottom: 1px solid var(--border-soft);
  }

  .trust-strip {
    flex-wrap: wrap;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .pricing-quote-cta {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .pricing-quote-cta .pq-actions {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 64px 0;
  }

  .feature-grid,
  .advantage-grid,
  .card-grid-3,
  .tier-grid,
  .pill-strip,
  .checklist-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .glass-card.spn-card {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }

  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .action-button.whatsapp {
    grid-column: auto;
  }

  .cta-band {
    padding: 36px 24px;
  }

  .pricing-quote-cta {
    padding: 30px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}