/* ================================================================
   Henry Corporation — Design System (ROEH-inspired)
   Black · Coral · White · Editorial Serif
   ================================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --coral:      #E8464A;
  --coral-dark: #C13234;
  --coral-light:#F06366;
  --black:      #111111;
  --black-pure: #000000;
  --white:      #FFFFFF;
  --off-white:  #F8F8F6;
  --gray-light: #EBEBEB;
  --gray:       #6e6e6e;
  --gray-dark:  #444444;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 80px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Utility ─────────────────────────────────────────────── */
.coral { color: var(--coral); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }
@media (max-width: 480px) { .container { padding: 0 20px; } }

.section { padding: 80px 0; }
.section-alt  { background: var(--off-white); }
.section-dark { background: var(--black-pure); color: var(--white); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.8;
  max-width: 640px;
  margin-top: 20px;
}

/* ── Reveal Animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }

.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }
.reveal-d5 { transition-delay: 0.50s; }
.reveal-d6 { transition-delay: 0.60s; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn-ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn-ghost-dark {
  border-color: var(--black);
  color: var(--black);
}
.btn-ghost-dark:hover {
  background: var(--black);
  color: var(--white);
}
.btn-solid-coral {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: background 0.25s;
  white-space: nowrap;
}
.btn-solid-coral:hover { background: var(--coral-dark); }

.link-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 2px;
}
.link-text::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}
.link-text:hover::after { width: 100%; }

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, box-shadow 0.35s;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-light);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.site-header.scrolled .nav-logo-text { color: var(--black); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.site-header.scrolled .nav-links a { color: var(--gray-dark); }
.site-header.scrolled .nav-links a:hover { color: var(--coral); }

.nav-hamburger {
  width: 44px; height: 44px;
  background: var(--black-pure);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Nav ──────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black-pure);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 48px;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-out);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(2rem, 7vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--coral); }
.mobile-nav-contact {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-contact a {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--black-pure);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../hero-map.jpg') center/cover no-repeat;
  will-change: transform;
}
/* Background video — covers the hero, sits beneath the gradient overlays.
   hero-map.jpg (set above + as poster) shows while it loads or if it fails. */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.3)  35%,
      rgba(0,0,0,0.7)  70%,
      rgba(0,0,0,0.95) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% 45%, rgba(232,70,74,0.06) 0%, transparent 70%);
}
/* Respect users who prefer reduced motion — hide the video, keep the still map. */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { display: none; }
}

/* Large headline — slides in from right */
.hero-headline-wrap {
  position: relative;
  padding: calc(var(--nav-h) + 48px) 48px 0;
  z-index: 2;
  overflow: hidden;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 7.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.3s var(--ease-out), transform 1.3s var(--ease-out);
}
.hero-headline.in { opacity: 1; transform: translateX(0); }

/* Global positioning tagline below main headline */
.hero-tagline {
  font-size: clamp(0.78rem, 1.3vw, 0.92rem);
  color: rgba(255,255,255,0.62);
  margin-top: 20px;
  max-width: 640px;
  line-height: 1.65;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) { .hero-tagline { font-size: 0.78rem; margin-top: 14px; } }
@media (max-width: 480px) { .hero-tagline { display: none; } }

/* Rule with coral dots */
.hero-rule {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 28px 0 22px;
  position: relative;
}
.hero-rule::before, .hero-rule::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px;
  background: var(--coral);
  border-radius: 50%;
}
.hero-rule::before { left: 0; }
.hero-rule::after  { right: 0; }

/* Bottom band */
.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 0 48px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: flex-end;
  margin-top: auto;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  line-height: 1.78;
}
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-trust-item::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--coral);
  border-radius: 50%;
}

/* Scroll indicator — circular arrow */
.hero-scroll {
  position: absolute;
  bottom: 36px; right: 48px;
  z-index: 3;
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: bounce-down 2.4s ease-in-out infinite;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.hero-scroll:hover { border-color: var(--coral); background: rgba(232,70,74,0.15); }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ═══════════════════════════════════════════════
   TRUST MARQUEE
   ═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.m-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 36px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gray-dark);
  border-right: 1px solid var(--gray-light);
  white-space: nowrap;
}
.m-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════ */
.stats-section {
  background: var(--black);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════════
   SERVICES INTRO (white, 3-col editorial)
   ═══════════════════════════════════════════════ */
.svc-intro {
  padding: 80px 0 56px;
}
.svc-intro-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 56px;
}
.svc-intro-right .section-sub { margin-bottom: 28px; }

.svc-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray-light);
}
.svc-col {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--gray-light);
  transition: background 0.25s;
}
.svc-col:first-child { padding-left: 0; }
.svc-col:nth-child(2) { padding-left: 40px; }
.svc-col:last-child  { border-right: none; padding-left: 40px; padding-right: 0; }
.svc-col:hover { background: var(--off-white); }
.svc-col-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 22px;
}
.svc-col-title {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.svc-col-desc {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════
   FULL TABBED SERVICES (black section)
   ═══════════════════════════════════════════════ */
.services-full {
  background: var(--black);
  padding: 72px 0;
}
.svc-tab-bar {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-tab-bar::-webkit-scrollbar { display: none; }
.svc-tab {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  padding: 16px 40px 16px 0;
  margin-right: 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--sans);
  background: none;
  margin-bottom: -1px;
}
.svc-tab:hover  { color: rgba(255,255,255,0.75); }
.svc-tab.active { color: var(--white); border-bottom-color: var(--coral); }

.svc-panel { display: none; }
.svc-panel.active { display: block; }

.svc-panel-hdr { margin-bottom: 40px; }
.svc-panel-hdr .section-title { color: var(--white); }
.svc-panel-hdr .section-sub   { color: rgba(255,255,255,0.52); }

.svc-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}
.svc-card-full {
  background: var(--black);
  padding: 36px 28px;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}
.svc-card-full:hover { background: #191919; }
.svc-card-n {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.svc-card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.svc-card-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
  margin-bottom: 20px;
  flex: 1;
}
.svc-card-lnk {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.svc-card-lnk:hover { gap: 10px; }

/* ═══════════════════════════════════════════════
   PROBLEMS (black, grid)
   ═══════════════════════════════════════════════ */
.problems-section {
  background: var(--black-pure);
  padding: 80px 0;
}
.prob-hdr { margin-bottom: 60px; }
.prob-hdr .section-title { color: var(--white); }
.prob-hdr .section-sub   { color: rgba(255,255,255,0.5); }

.prob-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 60px;
}
.prob-card {
  background: var(--black-pure);
  padding: 36px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.prob-card:hover { background: #161616; }
.prob-emoji { font-size: 1.5rem; flex-shrink: 0; }
.prob-title {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  line-height: 1.3;
}

.solution-block {
  background: var(--coral);
  padding: 52px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.sol-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.sol-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.sol-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   WHY CHOOSE US (white, 4-col grid)
   ═══════════════════════════════════════════════ */
.why-section { padding: 80px 0; }
.why-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 40px;
}
.why-hdr .section-sub { margin-top: 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-light);
  border-left: 1px solid var(--gray-light);
}
.why-card {
  padding: 32px 24px;
  border-right: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.2s;
}
.why-card:hover { background: var(--off-white); }
.why-card-icon { font-size: 1.9rem; margin-bottom: 20px; }
.why-card-title {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card-desc {
  font-size: 0.84rem;
  color: var(--gray-dark);
  line-height: 1.68;
}

/* ═══════════════════════════════════════════════
   PROCESS (black)
   ═══════════════════════════════════════════════ */
.process-section {
  background: var(--black-pure);
  padding: 80px 0;
  color: var(--white);
}
.process-hdr { margin-bottom: 52px; }
.process-hdr .section-title { color: var(--white); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.process-step {
  padding: 40px 28px 40px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step:not(:first-child) { padding-left: 36px; }
.process-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 28px;
}
.process-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.process-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS (off-white)
   ═══════════════════════════════════════════════ */
.testi-section {
  background: var(--off-white);
  padding: 80px 0;
}
.testi-hdr { margin-bottom: 44px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  padding: 40px 36px;
  border-top: 3px solid var(--coral);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.08);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testi-star  { color: var(--coral); font-size: 0.88rem; }
.testi-quote {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--black);
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.av-a { background: var(--coral); }
.av-b { background: var(--black); }
.av-c { background: var(--coral-dark); }
.av-d { background: #555; }
.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-role { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }

/* ═══════════════════════════════════════════════
   PRICING (white)
   ═══════════════════════════════════════════════ */
.pricing-section { padding: 80px 0; }
.pricing-hdr { text-align: center; margin-bottom: 52px; }
.pricing-hdr .section-sub { margin: 16px auto 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-light);
}
.price-card {
  padding: 40px 32px;
  border-right: 1px solid var(--gray-light);
  position: relative;
  transition: background 0.25s;
}
.price-card:last-child { border-right: none; }
.price-card.popular {
  background: var(--black);
  color: var(--white);
}
.price-card:not(.popular):hover { background: var(--off-white); }

.popular-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 18px;
}
.price-name {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.price-value {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.price-period {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.price-card.popular .price-period { color: rgba(255,255,255,0.45); }
.price-desc {
  font-size: 0.86rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-light);
}
.price-card.popular .price-desc {
  color: rgba(255,255,255,0.5);
  border-bottom-color: rgba(255,255,255,0.1);
}
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.plan-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
.price-card.popular .plan-feat { color: rgba(255,255,255,0.68); }
.plan-feat-chk { width: 16px; height: 16px; flex-shrink: 0; color: var(--coral); margin-top: 1px; }

.price-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border: 1px solid var(--black);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.price-card:not(.popular) .price-cta:hover { background: var(--black); color: var(--white); }
.price-card.popular .price-cta {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.price-card.popular .price-cta:hover { background: var(--coral-dark); border-color: var(--coral-dark); }

/* ═══════════════════════════════════════════════
   CTA BANNER (coral)
   ═══════════════════════════════════════════════ */
.cta-banner {
  background: var(--coral);
  padding: 72px 0;
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}
.cta-banner-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
}
.cta-banner-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   FAQ (off-white)
   ═══════════════════════════════════════════════ */
.faq-section {
  background: var(--off-white);
  padding: 80px 0;
}
.faq-hdr { margin-bottom: 44px; }
.faq-list { border-top: 1px solid var(--gray-light); }
.faq-item { border-bottom: 1px solid var(--gray-light); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  background: none;
  color: var(--black);
  transition: color 0.2s;
}
.faq-q:hover                     { color: var(--coral); }
.faq-q[aria-expanded="true"]     { color: var(--coral); }

.faq-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease-out), background 0.2s, border-color 0.2s, color 0.2s;
  color: var(--gray);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.3s;
}
.faq-a.open { max-height: 320px; padding-bottom: 28px; }
.faq-a p {
  font-size: 0.94rem;
  color: var(--gray-dark);
  line-height: 1.78;
  max-width: 780px;
}

/* ═══════════════════════════════════════════════
   CONTACT — ROEH-style 3-step slider
   ═══════════════════════════════════════════════ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left — dark identity panel */
.cs-left {
  background: var(--black-pure);
  padding: 120px 80px 120px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs-left-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 32px;
}
.cs-left-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.78;
  max-width: 360px;
  margin-bottom: 52px;
}
.cs-contact-info { display: flex; flex-direction: column; gap: 22px; }
.cs-info-item { display: flex; align-items: center; gap: 18px; }
.cs-info-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
}
.cs-info-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 3px;
}
.cs-info-text { font-size: 0.9rem; color: rgba(255,255,255,0.72); }

/* Right — interactive step panel */
.cs-right {
  background: #0a0a0a;
  border-left: 1px solid rgba(255,255,255,0.06);
  padding: 120px 48px 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cs-counter {
  font-family: var(--serif);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}
.cs-prompt {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.cs-slide { display: none; }
.cs-slide.active { display: block; }

.cs-slide-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 26px;
}

/* Service/marketplace selector buttons */
.cs-btn-list { display: flex; flex-direction: column; gap: 2px; }
.cs-svc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.58);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--sans);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cs-svc-btn:hover,
.cs-svc-btn.selected {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

/* Step 3 form fields */
.cs-form-group { margin-bottom: 18px; }
.cs-form-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.cs-form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.cs-form-input:focus { border-color: var(--coral); }
.cs-form-input::placeholder { color: rgba(255,255,255,0.5); }

/* Step navigation */
.cs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}
.cs-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: background 0.2s;
}
.cs-next-btn:hover { background: var(--coral-dark); }
.cs-back-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.cs-back-btn:hover { color: var(--white); }
.cs-back-btn.hidden { visibility: hidden; }

/* ═══════════════════════════════════════════════
   FOOTER (coral)
   ═══════════════════════════════════════════════ */
.site-footer {
  background: var(--coral);
  color: var(--white);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.footer-logo-img {
  height: 76px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.footer-logo-text {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 230px;
}
.footer-col-title {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.45); }
.footer-contact-links { display: flex; gap: 28px; }
.footer-contact-links a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-contact-links a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════
   FLOATS
   ═══════════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 500;
  width: 54px; height: 54px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  transition: transform 0.25s, box-shadow 0.25s;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 490;
  background: var(--coral);
  color: var(--white);
  padding: 16px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .svc-grid-full  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .svc-intro-header { grid-template-columns: 1fr; gap: 36px; }
  .svc-cols { grid-template-columns: 1fr; }
  .svc-col { border-right: none; border-bottom: 1px solid var(--gray-light); padding: 40px 0; }
  .svc-col:nth-child(2) { padding-left: 0; }
  .svc-col:last-child   { border-bottom: none; padding-left: 0; }
  .process-grid   { grid-template-columns: 1fr 1fr; }
  .testi-grid     { grid-template-columns: 1fr 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .price-card     { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .price-card:last-child { border-bottom: none; }
  .prob-grid      { grid-template-columns: repeat(2, 1fr); }
  .solution-block { flex-direction: column; padding: 44px 40px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .stat-item      { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .contact-section{ grid-template-columns: 1fr; min-height: auto; }
  .cs-left        { padding: 64px 24px 40px; }
  .cs-right       { padding: 40px 24px 64px; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .page-hero      { padding: 100px 0 60px; }
  .stat-item      { padding: 32px 20px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-logo-img   { height: 46px; }
  .nav-links      { display: none; }
  .section        { padding: 56px 0; }
  .hero-bottom    { grid-template-columns: 1fr; padding: 0 24px 56px; }
  .hero-headline-wrap { padding: calc(64px + 32px) 24px 0; }
  .why-grid       { grid-template-columns: 1fr; }
  .svc-grid-full  { grid-template-columns: 1fr; }
  .process-grid   { grid-template-columns: 1fr; }
  .process-step   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px 0; }
  .process-step:not(:first-child) { padding-left: 0; }
  .testi-grid     { grid-template-columns: 1fr; }
  .why-hdr        { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-top     { grid-template-columns: 1fr; gap: 40px; }
  .footer-tagline { max-width: 100%; }
  .mobile-sticky-cta { display: block; }
  .float-wa       { bottom: 76px; }
  .hero-scroll    { right: 24px; bottom: 88px; }
  .btn-solid-coral,
  .btn-ghost      { padding: 12px 20px; font-size: 0.7rem; }
  .stat-item      { padding: 28px 20px; }
  .page-hero      { padding: 90px 0 52px; }
  .sdp-two-col    { grid-template-columns: 1fr; gap: 20px; }
  .svc-card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
  .container      { padding: 0 20px; }
  .section        { padding: 44px 0; }
  .prob-grid      { grid-template-columns: 1fr 1fr; }
  .hero-headline  { font-size: clamp(2rem, 9vw, 3.2rem); }
  .hero-bottom    { padding: 0 20px 44px; }
  .hero-scroll    { display: none; }
  .solution-block { padding: 36px 24px; }
  .sol-actions    { flex-direction: column; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .btn-solid-coral,
  .btn-ghost      { padding: 11px 18px; font-size: 0.68rem; }
  .stat-item      { padding: 24px 16px; }
  .why-card       { padding: 24px 20px; }
  .page-hero      { padding: 80px 0 44px; }
  .sdp-overview-text,
  .sdp-list li,
  .sdp-process-list li { font-size: 0.8rem; }
}

/* ═══════════════════════════════════════════════
   NAV ACTIVE LINK
   ═══════════════════════════════════════════════ */
.nav-links a.active {
  color: var(--coral);
}

/* ═══════════════════════════════════════════════
   PAGE HERO (coral, like ROEH /our-services)
   ═══════════════════════════════════════════════ */
.page-hero {
  background: var(--coral);
  padding: 160px 0 100px;
  text-align: center;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; }
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.page-hero-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.28);
  margin: 40px 0;
  position: relative;
}
.page-hero-line::before, .page-hero-line::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
}
.page-hero-line::before { left: 0; }
.page-hero-line::after  { right: 0; }
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.78;
  max-width: 640px;
  margin: 0 auto;
}
.page-hero-scroll {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 48px auto 0;
  cursor: pointer;
  color: var(--white);
  animation: bounce-down 2.4s ease-in-out infinite;
  transition: background 0.2s;
}
.page-hero-scroll:hover { background: rgba(255,255,255,0.15); }

/* ═══════════════════════════════════════════════
   PLATFORM CARDS (platforms.html)
   ═══════════════════════════════════════════════ */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-light);
}
.platform-card {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.25s;
}
.platform-card:hover { background: var(--off-white); }
.platform-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.platform-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.platform-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-dark);
}
.platform-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--coral);
  color: var(--white);
  padding: 3px 8px;
  margin-left: auto;
}
.platform-tagline {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.platform-desc {
  font-size: 0.86rem;
  color: var(--gray-dark);
  line-height: 1.72;
  margin-bottom: 28px;
}
.platform-services {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.platform-services li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-dark);
}
.platform-services li svg { color: var(--coral); flex-shrink: 0; }

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 130px 0 80px; }
}
@media (max-width: 600px) {
  .platform-grid { grid-template-columns: 1fr; }
  .page-hero-title { font-size: clamp(2.4rem, 9vw, 4rem); }
}

/* ═══════════════════════════════════════════════
   HERO UPGRADES — badge pill, dual CTA, trust cards
   ═══════════════════════════════════════════════ */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(232,70,74,0.4);
  background: rgba(232,70,74,0.08);
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}
.hero-badge-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

/* Trust badge cards — right side of hero */
.hero-badge-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 340px;
}
.hero-badge-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s, background 0.25s;
}
.hero-badge-card:hover {
  border-color: var(--coral);
  background: rgba(232,70,74,0.06);
}
.hero-badge-card-icon {
  color: var(--coral);
  display: flex;
  align-items: center;
}
.hero-badge-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   STATS — sub-label
   ═══════════════════════════════════════════════ */
.stat-sub {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   PLATFORM LOGOS SECTION
   ═══════════════════════════════════════════════ */
.platform-logos-section {
  background: var(--black-pure);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}
.platform-logos-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-bottom: 18px;
}
.platform-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.platform-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: opacity 0.25s;
}
.platform-logo-item:hover { opacity: 1; }
.platform-logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.platform-logo-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   SERVICE CARD HOVER IMPROVEMENTS
   ═══════════════════════════════════════════════ */
.svc-card-full {
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.svc-card-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.why-card {
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--coral);
}
.testi-card {
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — new components
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-badge-strip { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .hero-cta-row     { flex-direction: column; gap: 10px; }
  .hero-cta-row .btn-solid-coral,
  .hero-cta-row .btn-ghost { justify-content: center; }
  .platform-logos-row { gap: 24px; }
  .stat-sub { display: none; }
}
@media (max-width: 480px) {
  .hero-badge-strip { grid-template-columns: 1fr 1fr; }
  .hero-badge-card  { padding: 14px 12px; }
}

/* ═══════════════════════════════════════════════
   SECTION LABEL — premium kicker above headings
   ═══════════════════════════════════════════════ */
.section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section-label.light {
  color: rgba(255,255,255,0.38);
}

/* ═══════════════════════════════════════════════
   STATS — eyebrow row
   ═══════════════════════════════════════════════ */
.stats-eyebrow {
  padding: 28px 0 0;
  display: flex;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS — decorative quote mark
   ═══════════════════════════════════════════════ */
.testi-card {
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--coral);
  opacity: 0.07;
  position: absolute;
  top: 4px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   WHY CARD — icon in a tinted box
   ═══════════════════════════════════════════════ */
.why-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,70,74,0.07);
  border: 1px solid rgba(232,70,74,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 22px;
  transition: background 0.25s, border-color 0.25s;
}
.why-card:hover .why-card-icon {
  background: rgba(232,70,74,0.13);
  border-color: rgba(232,70,74,0.28);
}

/* ═══════════════════════════════════════════════
   SERVICE CARDS — coral bottom accent on hover
   ═══════════════════════════════════════════════ */
.svc-card-full {
  border-bottom: 2px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.svc-card-full:hover {
  background: #181818;
  border-bottom-color: var(--coral);
  transform: none;
  box-shadow: none;
}

/* ═══════════════════════════════════════════════
   PROCESS STEPS — coral number accent
   ═══════════════════════════════════════════════ */
.process-step:first-child .process-num {
  text-shadow: 0 0 40px rgba(232,70,74,0.35);
}

/* ═══════════════════════════════════════════════
   PRICING — popular card outline
   ═══════════════════════════════════════════════ */
.price-card.popular {
  outline: 2px solid var(--coral);
  outline-offset: -2px;
}

/* ═══════════════════════════════════════════════
   CTA BANNER — subtle grid pattern overlay
   ═══════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════
   FAQ — top border on list, open-state accent
   ═══════════════════════════════════════════════ */
.faq-list {
  border-top: 1px solid var(--gray-light);
}

/* ═══════════════════════════════════════════════
   PROBLEM CARDS — coral left accent on hover
   ═══════════════════════════════════════════════ */
.prob-card {
  border-left: 3px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.prob-card:hover {
  background: #1a1a1a;
  border-left-color: var(--coral);
}

/* ═══════════════════════════════════════════════
   SECTION TITLE — tighter letter spacing
   ═══════════════════════════════════════════════ */
.section-title {
  letter-spacing: -0.025em;
}

/* ═══════════════════════════════════════════════
   MOBILE POLISH
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .svc-card-full  { padding: 28px 20px; }
  .why-card       { padding: 24px 18px; }
  .testi-card     { padding: 28px 22px; }
  .price-card     { padding: 32px 24px; }
  .solution-block { gap: 24px; }
  .stats-eyebrow  { padding-top: 24px; }
  .section-label  { font-size: 0.58rem; }
  .faq-q          { font-size: 0.94rem; padding: 18px 0; }
  .footer-logo-img { height: 64px; }
}
@media (max-width: 480px) {
  .hero-cta-row .btn-solid-coral,
  .hero-cta-row .btn-ghost { width: 100%; justify-content: center; }
  .sol-actions { width: 100%; }
  .sol-actions .btn-ghost { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   SERVICE DETAIL PANEL
   ═══════════════════════════════════════════════ */

/* Card footer — link + details toggle */
.svc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 4px;
}

/* Details toggle button */
.svc-detail-btn {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--sans);
}
.svc-detail-btn:hover,
.svc-detail-btn[aria-expanded="true"] { color: var(--coral); }

/* Expandable panel — max-height accordion */
.svc-detail-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 20px;
}
.svc-detail-panel[hidden] { display: block !important; }

/* Section label inside detail */
.sdp-section-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sdp-section-label::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--coral);
  flex-shrink: 0;
}

/* Overview block */
.sdp-overview { padding: 20px 0 16px; }
.sdp-overview-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.78;
}

/* Two-column includes / documents */
.sdp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sdp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sdp-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.5;
}
.sdp-list li svg { color: var(--coral); flex-shrink: 0; margin-top: 1px; }

/* Process list */
.sdp-process {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sdp-process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sdp-process-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.55;
}
.sdp-step-num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--coral);
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 18px;
}

/* Meta row — badges */
.sdp-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.sdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.42);
}
.sdp-badge--price {
  border-color: rgba(232,70,74,0.35);
  color: var(--coral);
}
.sdp-badge svg { flex-shrink: 0; }

/* CTA button */
.sdp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin: 8px 0 14px;
  transition: background 0.2s;
}
.sdp-cta:hover { background: var(--coral-dark); }

/* ═══════════════════════════════════════════════
   SERVICE CARD — icon + pricing badge
   ═══════════════════════════════════════════════ */
.svc-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(232,70,74,0.08);
  border: 1px solid rgba(232,70,74,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s, border-color 0.25s;
}
.svc-card-icon svg {
  stroke: rgba(232,70,74,0.85) !important;
  fill: none !important;
}
.svc-card-full:hover .svc-card-icon {
  background: rgba(232,70,74,0.14);
  border-color: rgba(232,70,74,0.3);
}
.svc-card-price {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  opacity: 0.75;
  border: 1px solid rgba(232,70,74,0.22);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(232,70,74,0.05);
}

/* ═══════════════════════════════════════════════
   FOOTER — CTA strip + 5-column layout
   ═══════════════════════════════════════════════ */
.footer-cta-strip {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}
.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.footer-cta-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}
.footer-cta-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.footer-top {
  grid-template-columns: 1.35fr 0.85fr 0.85fr 0.85fr 0.85fr;
  gap: 40px;
}
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.7; }

.footer-hours-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-hours-wrap svg { flex-shrink: 0; }

.footer-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ftb {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}

/* Mobile: footer CTA strip */
@media (max-width: 900px) {
  .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .footer-cta-strip { padding: 32px 0; }
  .footer-cta-actions { flex-direction: column; gap: 10px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-trust-badges { gap: 8px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-cta-title { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════
   HERO — better mobile height control
   ═══════════════════════════════════════════════ */
@supports (min-height: 100svh) {
  .hero { min-height: 100svh; }
}
@media (max-width: 480px) {
  .hero-headline-wrap { padding: calc(64px + 20px) 20px 0; }
  .hero { min-height: unset; padding-bottom: 0; }
}

/* ═══════════════════════════════════════════════
   SECTION DIVIDERS — subtle visual rhythm
   ═══════════════════════════════════════════════ */
.svc-intro { border-bottom: 1px solid var(--gray-light); }
.why-section { border-bottom: 1px solid var(--gray-light); }
.testi-section { border-bottom: 1px solid rgba(0,0,0,0.06); }

/* ═══════════════════════════════════════════════
   STATS — make numbers more impactful
   ═══════════════════════════════════════════════ */
.stat-num {
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════════
   PLATFORMS PAGE — GLOBAL EXPANSION
   ═══════════════════════════════════════════════════════ */

/* ── Why Sell Globally ─────────────────────────────────── */
.wsg-section { background: var(--black); }
.wsg-hdr { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.wsg-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 16px; }
.wsg-sub { font-size: 0.92rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.wsg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wsg-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 32px 28px; transition: border-color 0.25s; }
.wsg-card:hover { border-color: rgba(232,70,74,0.25); }
.wsg-icon { font-size: 2rem; margin-bottom: 16px; }
.wsg-stat { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--coral); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
.wsg-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.wsg-desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* ── Export Process ────────────────────────────────────── */
.ep-section { background: #050505; }
.ep-hdr { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.ep-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 16px; }
.ep-sub { font-size: 0.92rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.ep-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.ep-step { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); padding: 32px 24px; position: relative; transition: background 0.25s; }
.ep-step:hover { background: rgba(255,255,255,0.04); }
.ep-step-num { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.14em; color: var(--coral); opacity: 0.6; margin-bottom: 20px; font-family: 'DM Mono', monospace; }
.ep-step-title { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.ep-step-desc { font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.65; }

/* ── D2C Global ────────────────────────────────────────── */
.d2c-section { background: var(--black); }
.d2c-hdr { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.d2c-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 16px; }
.d2c-sub { font-size: 0.92rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.d2c-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.d2c-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; transition: border-color 0.25s; }
.d2c-card:hover { border-color: rgba(232,70,74,0.25); }
.d2c-icon { font-size: 1.6rem; }
.d2c-card-title { font-size: 0.88rem; font-weight: 700; color: var(--white); line-height: 1.35; }
.d2c-card-desc { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.65; flex: 1; }
.d2c-price { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); border: 1px solid rgba(232,70,74,0.22); padding: 3px 10px; align-self: flex-start; background: rgba(232,70,74,0.05); }

/* ── B2B Export ────────────────────────────────────────── */
.b2b-section { background: #050505; }
.b2b-hdr { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.b2b-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 16px; }
.b2b-sub { font-size: 0.92rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.b2b-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.b2b-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; transition: border-color 0.25s; }
.b2b-card:hover { border-color: rgba(232,70,74,0.25); }
.b2b-icon { font-size: 1.6rem; }
.b2b-card-title { font-size: 0.88rem; font-weight: 700; color: var(--white); line-height: 1.35; }
.b2b-card-desc { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.65; flex: 1; }
.b2b-price { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); border: 1px solid rgba(232,70,74,0.22); padding: 3px 10px; align-self: flex-start; background: rgba(232,70,74,0.05); }

/* ── Country Markets ───────────────────────────────────── */
.cm-section { background: #050505; }
.cm-hdr { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.cm-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 16px; }
.cm-sub { font-size: 0.92rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

.cm-list { display: flex; flex-direction: column; gap: 2px; }
.cm-card { border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.02); transition: border-color 0.25s; }
.cm-card:hover { border-color: rgba(255,255,255,0.12); }
.cm-card[data-country] .cm-card-header[aria-expanded="true"] { border-bottom: 1px solid rgba(255,255,255,0.07); }

.cm-card-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; gap: 24px; cursor: pointer; background: none; border: none; text-align: left; transition: background 0.2s; }
.cm-card-header:hover { background: rgba(255,255,255,0.02); }
.cm-card-header-left { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 0; }
.cm-card-header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.cm-flag { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.cm-card-info { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.cm-country-name { font-size: 1rem; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.cm-region { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.cm-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.38); font-style: italic; flex: 1; display: none; }
@media (min-width: 900px) { .cm-tagline { display: block; } }

.cm-platform-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.cm-platform-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.35); white-space: nowrap; }
.cm-platform-tag--more { color: var(--coral); border-color: rgba(232,70,74,0.2); }
.cm-toggle-icon { width: 28px; height: 28px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 1rem; flex-shrink: 0; transition: color 0.2s, border-color 0.2s, transform 0.3s; }
.cm-card-header[aria-expanded="true"] .cm-toggle-icon { color: var(--coral); border-color: rgba(232,70,74,0.3); }

.cm-card-intro { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.65; padding: 0 28px 20px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.cm-card-header[aria-expanded="true"] + .cm-card-intro { max-height: 200px; }

/* Detail panel accordion */
.cm-detail-panel { max-height: 0; overflow: hidden; transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.cm-detail-panel[hidden] { display: block !important; }
.cm-detail-inner { padding: 32px 28px 36px; border-top: 1px solid rgba(255,255,255,0.05); }

.cm-detail-overview { margin-bottom: 32px; }
.cm-detail-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral); opacity: 0.7; margin-bottom: 12px; }
.cm-detail-text { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.75; }
.cm-detail-text--sm { font-size: 0.78rem; }

.cm-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.cm-detail-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.cm-detail-col { }
.cm-detail-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cm-detail-list li { font-size: 0.8rem; color: rgba(255,255,255,0.42); line-height: 1.5; display: flex; gap: 8px; }
.cm-detail-list li svg { flex-shrink: 0; margin-top: 2px; }

.cm-detail-process { margin-bottom: 32px; }
.cm-process-list { list-style: none; display: flex; flex-direction: column; gap: 12px; counter-reset: none; }
.cm-process-list li { display: flex; gap: 16px; align-items: flex-start; font-size: 0.82rem; color: rgba(255,255,255,0.42); line-height: 1.6; }
.cm-step-num { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em; color: var(--coral); opacity: 0.6; flex-shrink: 0; width: 24px; margin-top: 2px; }

.cm-detail-info-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 20px; }
.cm-detail-info-box--cta { background: rgba(232,70,74,0.04); border-color: rgba(232,70,74,0.12); }
.cm-meta-badges { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cm-badge { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; padding: 5px 12px; display: inline-block; align-self: flex-start; }
.cm-badge--time { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.cm-badge--price { background: rgba(232,70,74,0.08); border: 1px solid rgba(232,70,74,0.2); color: var(--coral); }
.cm-cta-btn { display: inline-block; margin-top: 4px; padding: 10px 20px; font-size: 0.7rem; }

/* ── Mobile Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .ep-grid { grid-template-columns: repeat(2, 1fr); }
  .d2c-grid { grid-template-columns: repeat(2, 1fr); }
  .b2b-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .wsg-grid { grid-template-columns: repeat(2, 1fr); }
  .cm-card-header { padding: 18px 20px; gap: 12px; }
  .cm-detail-inner { padding: 24px 20px 28px; }
  .cm-detail-grid { grid-template-columns: 1fr; gap: 20px; }
  .cm-detail-grid--3 { grid-template-columns: 1fr; }
  .cm-card-header-right { gap: 10px; }
  .cm-platform-tags { display: none; }
  .cm-card-intro { padding: 0 20px 16px; }
}

@media (max-width: 480px) {
  .wsg-grid { grid-template-columns: 1fr; }
  .ep-grid { grid-template-columns: 1fr; }
  .d2c-grid { grid-template-columns: 1fr; }
  .b2b-grid { grid-template-columns: 1fr; }
  .cm-country-name { font-size: 0.92rem; }
  .cm-flag { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════════
   EYEBROW — used in platforms page sections
   ═══════════════════════════════════════════════ */
.eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   ACCESSIBILITY — Skip Link
   ═══════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--coral);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; outline: 3px solid var(--white); outline-offset: 2px; }

/* ═══════════════════════════════════════════════
   REDUCED MOTION — accessibility (WCAG 2.3.3)
   ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right,
  .reveal-d1, .reveal-d2, .reveal-d3,
  .reveal-d4, .reveal-d5, .reveal-d6,
  .hero-headline {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════
   CERTIFICATIONS SECTION
   ═══════════════════════════════════════════════ */
.certs-section { }
.certs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.cert-card:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,70,74,0.1);
}
.cert-icon { font-size: 1.8rem; margin-bottom: 10px; }
.cert-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 5px;
}
.cert-desc { font-size: 0.7rem; color: var(--gray); line-height: 1.4; }

@media (max-width: 900px) {
  .certs-inner { grid-template-columns: 1fr; gap: 40px; }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════
   CONTACT — Enhanced form styles
   ═══════════════════════════════════════════════ */
.cs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cs-form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.cs-form-select option { background: #1a1a1a; color: var(--white); }
.cs-form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}
.cs-required { color: var(--coral); }
.cs-form-note {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-top: 4px;
}
.cs-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cs-trust-item {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}
.cs-success {
  text-align: center;
  padding: 40px 0;
}
.cs-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(37,211,102,0.12);
  border: 2px solid rgba(37,211,102,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #25D366;
  margin: 0 auto 20px;
}
.cs-success-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cs-success-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

/* Direct action buttons on contact page */
.cs-direct-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.cs-direct-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid var(--gray-light);
  flex: 1;
  min-width: 220px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.cs-direct-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
}
.cs-direct-wa  { border-color: rgba(37,211,102,0.35); color: var(--black); }
.cs-direct-wa:hover { border-color: #25D366; }
.cs-direct-wa svg { color: #25D366; flex-shrink: 0; width: 22px; height: 22px; }
.cs-direct-call { border-color: rgba(232,70,74,0.3); color: var(--black); }
.cs-direct-call:hover { border-color: var(--coral); }
.cs-direct-call svg { color: var(--coral); flex-shrink: 0; width: 22px; height: 22px; }
.cs-direct-mail { border-color: var(--gray-light); color: var(--black); }
.cs-direct-mail:hover { border-color: var(--black); }
.cs-direct-mail svg { color: var(--gray-dark); flex-shrink: 0; width: 22px; height: 22px; }
.cs-direct-label { font-size: 0.82rem; font-weight: 700; display: block; color: var(--black); }
.cs-direct-sub { font-size: 0.72rem; color: var(--gray); display: block; margin-top: 2px; }

@media (max-width: 768px) {
  .cs-form-row { grid-template-columns: 1fr; gap: 0; }
  .cs-direct-actions { flex-direction: column; }
  .cs-direct-btn { min-width: 0; }
}

/* ═══════════════════════════════════════════════
   FOOTER — Social links & Newsletter
   ═══════════════════════════════════════════════ */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social-link:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.footer-newsletter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 40px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-newsletter-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-newsletter-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.55;
  max-width: 300px;
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  min-width: 240px;
}
.footer-newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-right: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.2s;
}
.footer-newsletter-input:focus { border-color: var(--coral); }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.25); }
.footer-newsletter-btn {
  padding: 12px 20px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer-newsletter-btn:hover { background: var(--coral-dark); }
.footer-newsletter-note {
  font-size: 0.76rem;
  color: #25D366;
  margin-top: 10px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-newsletter { padding: 24px 20px; gap: 20px; }
  .footer-newsletter-form { flex-direction: column; gap: 10px; }
  .footer-newsletter-input { border-right: 1px solid rgba(255,255,255,0.14); }
  .footer-newsletter-btn { align-self: flex-start; }
}
@media (max-width: 480px) {
  .footer-newsletter-title { font-size: 0.96rem; }
}

/* ═══════════════════════════════════════════════
   HERO TAGLINE — show on 480px (fix hidden bug)
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-tagline {
    display: block;
    font-size: 0.72rem;
    opacity: 0.6;
  }
}

/* ═══════════════════════════════════════════════
   FOCUS STYLES — keyboard accessibility
   ═══════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════
   STATS — mobile grid fix
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════
   HERO — secondary CTA button (ghost on dark)
   ═══════════════════════════════════════════════ */
.btn-outline-coral {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid rgba(232,70,74,0.55);
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn-outline-coral:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   SERVICES PAGE HERO (dark, two-column)
   ═══════════════════════════════════════════════ */
.svc-page-hero {
  position: relative;
  background: #0a0a0a;
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
}
.svc-page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 40%, rgba(232,70,74,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 0% 80%, rgba(232,70,74,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.svc-page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.svc-page-hero-left { display: flex; flex-direction: column; gap: 24px; }
.svc-page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}
.svc-page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}
.svc-page-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
  animation: heroScrollBob 2s ease-in-out infinite;
}
.svc-page-hero-scroll:hover { border-color: var(--coral); color: var(--coral); }
@keyframes heroScrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* Hero stats grid (right column) */
.svc-page-hero-right { display: flex; align-items: center; justify-content: center; }
.svc-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  max-width: 360px;
}
.svc-hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
}
.svc-hero-stat:hover { background: rgba(232,70,74,0.08); border-color: rgba(232,70,74,0.25); }
.svc-hero-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}
.svc-hero-stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .svc-page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-page-hero-right { justify-content: flex-start; }
  .svc-hero-stats { max-width: 100%; }
}
@media (max-width: 540px) {
  .svc-page-hero { padding: 120px 0 70px; min-height: auto; }
  .svc-page-hero-title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .svc-hero-stat { padding: 22px 16px; }
  .svc-hero-stat-num { font-size: 2rem; }
}

/* ═══════════════════════════════════════════════
   SERVICE CARD — benefit list
   ═══════════════════════════════════════════════ */
.svc-benefit-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-benefit-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.svc-benefit-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--coral); }

/* ═══════════════════════════════════════════════
   SERVICES STATS BAR
   ═══════════════════════════════════════════════ */
.svs-stats-bar {
  background: var(--black-pure);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 52px 0;
}
.svs-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.svs-stat {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.svs-stat:last-child { border-right: none; }
.svs-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}
.svs-stat-lbl {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 640px) {
  .svs-stats-grid { grid-template-columns: 1fr 1fr; }
  .svs-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .svs-stat:nth-child(2n) { border-right: none; }
  .svs-stat:last-child, .svs-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* ═══════════════════════════════════════════════
   GLOBAL EXPANSION SERVICES
   ═══════════════════════════════════════════════ */
.ge-section { background: #0d0d0d; }
.ge-hdr { text-align: center; margin-bottom: 60px; }
.ge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ge-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s, border-color 0.3s, transform 0.25s;
}
.ge-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,70,74,0.35);
  transform: translateY(-3px);
}
.ge-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ge-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(232,70,74,0.12);
  padding: 4px 10px;
  border-radius: 2px;
}
.ge-icon { font-size: 1.8rem; line-height: 1; }
.ge-title {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}
.ge-overview {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}
.ge-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.ge-benefits li {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.62);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.ge-benefits li svg { flex-shrink: 0; margin-top: 3px; color: var(--coral); }
.ge-outcome {
  background: rgba(232,70,74,0.08);
  border-left: 3px solid var(--coral);
  padding: 10px 14px;
  border-radius: 0 2px 2px 0;
}
.ge-outcome-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 3px;
}
.ge-outcome-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.ge-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.ge-cta:hover { gap: 14px; color: var(--white); }
@media (max-width: 1024px) {
  .ge-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ge-grid { grid-template-columns: 1fr; }
  .ge-card { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════
   SERVICES — WHY CHOOSE US
   ═══════════════════════════════════════════════ */
.svcu-section { background: var(--off-white); }
.svcu-hdr { text-align: center; margin-bottom: 56px; }
.svcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svcu-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  padding: 36px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.svcu-card:hover {
  border-color: rgba(232,70,74,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.svcu-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.svcu-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 10px;
  line-height: 1.3;
}
.svcu-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 900px) {
  .svcu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .svcu-grid { grid-template-columns: 1fr; }
  .svcu-card { padding: 28px 22px; }
}

/* ═══════════════════════════════════════════════
   HOW WE WORK — 5-step timeline
   ═══════════════════════════════════════════════ */
.hww-section { background: #0a0a0a; }
.hww-hdr { text-align: center; margin-bottom: 64px; }
.hww-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.hww-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.hww-step-head {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.hww-num {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.hww-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--coral) 0%, rgba(232,70,74,0.2) 100%);
  position: relative;
  top: 0;
}
.hww-step-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}
.hww-step-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.3;
}
.hww-step-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}
.hww-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .hww-steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
}
@media (max-width: 640px) {
  .hww-steps { grid-template-columns: 1fr; row-gap: 32px; }
  .hww-step { align-items: flex-start; text-align: left; flex-direction: row; flex-wrap: wrap; gap: 0 16px; }
  .hww-step-head { width: auto; margin-bottom: 0; flex-shrink: 0; }
  .hww-connector { display: none; }
  .hww-num { width: 44px; height: 44px; min-width: 44px; font-size: 1rem; }
  .hww-step-icon { order: -1; flex-basis: 100%; margin-bottom: 8px; font-size: 1.6rem; }
  .hww-step-title, .hww-step-desc { flex-basis: calc(100% - 60px); }
  .hww-cta { flex-direction: column; }
  .hww-cta .btn-solid-coral, .hww-cta .btn-ghost { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   SERVICES LEAD CAPTURE FORM
   ═══════════════════════════════════════════════ */
.slf-section {
  background: #111;
  padding: 100px 0;
}
.slf-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.slf-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1.2;
}
.slf-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 28px;
}
.slf-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.slf-benefits li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}
.slf-benefits li svg { color: var(--coral); flex-shrink: 0; }
.slf-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
  border-radius: 4px;
}
.slf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.slf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.slf-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.slf-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: var(--sans);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.slf-input:focus { border-color: var(--coral); background: rgba(255,255,255,0.09); }
.slf-input::placeholder { color: rgba(255,255,255,0.28); }
.slf-select { appearance: none; cursor: pointer; }
.slf-textarea { resize: vertical; min-height: 80px; }
.slf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--coral);
  color: var(--white);
  padding: 16px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  border-radius: 2px;
  margin-top: 4px;
}
.slf-submit:hover { background: var(--coral-dark); }
.slf-privacy {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.32);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
.slf-success {
  padding: 60px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (max-width: 900px) {
  .slf-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 540px) {
  .slf-form { padding: 24px 18px; }
  .slf-form-row { grid-template-columns: 1fr; }
  .slf-section { padding: 70px 0; }
}

/* ═══════════════════════════════════════════════
   BUSINESS TYPE TRUST BAR
   ═══════════════════════════════════════════════ */
.biz-trust-bar {
  background: #f8f8f6;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 28px 0 20px;
}
.biz-trust-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 18px;
}
.biz-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.biz-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 16px;
  border-radius: 100px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.biz-trust-item:hover {
  border-color: rgba(232,70,74,0.3);
  box-shadow: 0 2px 8px rgba(232,70,74,0.08);
}
.biz-trust-icon { font-size: 1rem; line-height: 1; }
.biz-trust-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}
@media (max-width: 540px) {
  .biz-trust-row { gap: 6px; }
  .biz-trust-item { padding: 6px 12px; }
  .biz-trust-name { font-size: 0.72rem; }
}

/* ═══════════════════════════════════════════════
   HOME ABOUT SECTION
   ═══════════════════════════════════════════════ */
.home-about { background: var(--white); }
.home-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-about-para {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.8;
  margin: 0 0 16px;
}
.home-about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.home-about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 16px 18px;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.home-about-highlight:hover { border-color: rgba(232,70,74,0.25); }
.ha-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.ha-text { font-size: 0.84rem; font-weight: 600; color: var(--black); line-height: 1.4; }
.home-about-cta-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .home-about-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .home-about-highlights { grid-template-columns: 1fr; }
  .home-about-cta-strip { flex-direction: column; }
  .home-about-cta-strip .btn-outline-coral,
  .home-about-cta-strip .btn-ghost { justify-content: center; }
}

/* ═══════════════════════════════════════════════
   HOME SERVICES (6 TRADE/EXPORT CARDS)
   ═══════════════════════════════════════════════ */
.home-svc-section { background: var(--black-pure); }
.home-svc-hdr { text-align: center; margin-bottom: 56px; }
.home-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-svc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s, border-color 0.3s, transform 0.25s;
}
.home-svc-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,70,74,0.3);
  transform: translateY(-3px);
}
.home-svc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-svc-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--coral);
  font-family: var(--sans);
}
.home-svc-icon { font-size: 1.8rem; line-height: 1; }
.home-svc-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}
.home-svc-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.home-svc-benefit {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(232,70,74,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(232,70,74,0.08);
  border-radius: 2px;
}
.home-svc-benefit svg { color: var(--coral); flex-shrink: 0; }
.home-svc-lnk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  transition: gap 0.2s;
  margin-top: auto;
}
.home-svc-lnk:hover { gap: 12px; }
.home-svc-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .home-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .home-svc-grid { grid-template-columns: 1fr; }
  .home-svc-card { padding: 24px 20px; }
  .home-svc-footer { flex-direction: column; }
  .home-svc-footer .btn-solid-coral,
  .home-svc-footer .btn-ghost { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   HOME GLOBAL EXPANSION
   ═══════════════════════════════════════════════ */
.home-ge-section { background: var(--off-white); }
.home-ge-hdr { text-align: center; margin-bottom: 52px; }
.home-ge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-ge-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.home-ge-card:hover {
  border-color: rgba(232,70,74,0.25);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.home-ge-icon { font-size: 2.4rem; display: block; margin-bottom: 14px; line-height: 1; }
.home-ge-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 10px;
  line-height: 1.3;
}
.home-ge-desc {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}
.home-ge-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
@media (max-width: 900px) {
  .home-ge-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-ge-grid { grid-template-columns: 1fr; }
  .home-ge-card { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════
   PROCESS — 5 steps + CTA
   ═══════════════════════════════════════════════ */
.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
/* Ensure 5 columns fit */
@media (min-width: 1025px) {
  .process-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ═══════════════════════════════════════════════
   FAQ — CTA below questions
   ═══════════════════════════════════════════════ */
.faq-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.faq-cta p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .faq-cta { flex-direction: column; align-items: flex-start; }
  .faq-cta .btn-solid-coral { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   BLOG TEASER (homepage)
   ═══════════════════════════════════════════════ */
.blog-teaser { background: var(--white); }
.blog-teaser-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 30px;
  flex-wrap: wrap;
}
.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-teaser-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.blog-teaser-card:hover {
  border-color: rgba(232,70,74,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.blog-teaser-card-icon { font-size: 1.8rem; line-height: 1; }
.blog-teaser-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--coral);
}
.blog-teaser-card-title {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.35;
}
.blog-teaser-card-excerpt {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.blog-teaser-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.73rem;
  color: var(--gray);
  font-weight: 500;
}
.blog-teaser-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}
@media (max-width: 1024px) {
  .blog-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-teaser-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   BLOG HUB PAGE
   ═══════════════════════════════════════════════ */
.blog-hub-hero {
  background: #0a0a0a;
  color: var(--white);
  padding: 140px 0 70px;
  text-align: center;
}
.blog-hub-hero-inner { max-width: 760px; margin: 0 auto; }
.blog-hub-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin: 18px 0 18px;
  line-height: 1.15;
}
.blog-hub-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0;
}
.blog-hub-section { background: var(--off-white); }
.blog-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-hub-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.blog-hub-card:hover {
  border-color: rgba(232,70,74,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.blog-hub-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-hub-card-icon { font-size: 2rem; line-height: 1; }
.blog-hub-card-featured {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(232,70,74,0.12);
  padding: 4px 10px;
  border-radius: 2px;
}
.blog-hub-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--coral);
}
.blog-hub-card-title {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
}
.blog-hub-card-excerpt {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.blog-hub-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--gray);
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.blog-hub-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--gray);
  border-radius: 50%;
  display: inline-block;
}
.blog-hub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}
@media (max-width: 1024px) {
  .blog-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-hub-grid { grid-template-columns: 1fr; }
  .blog-hub-hero { padding: 110px 0 56px; }
  .blog-hub-card { padding: 26px 22px; }
}

/* ═══════════════════════════════════════════════
   PRINT STYLES — basic
   ═══════════════════════════════════════════════ */
@media print {
  .site-header, .float-wa, .mobile-sticky-cta, #floats-root { display: none !important; }
  body { font-size: 11pt; }
  .hero { min-height: auto; padding: 20pt 0; }
}

