/* ============================================================
   AMZ Expert — Main Stylesheet
   Dark Navy + Teal Gradient | Gold Accents | Premium SaaS UI
   ============================================================ */


:root {
  --bg-base:      #010713;
  --bg-deeper:    #00050f;
  --bg-card:      #081a30;
  --bg-card-2:    #0a1e38;
  --bg-card-h:    #0d2240;
  --gold:         #d4a017;
  --gold-dark:    #b8880f;
  --gold-light:   #e8b830;
  --teal:         #00b4d8;
  --teal-2:       #0ea5e9;
  --text-1:       #eaf0f8;
  --text-2:       #8fa8c8;
  --text-3:       #506070;
  --border:       rgba(255,255,255,0.06);
  --border-gold:  rgba(212,160,23,0.35);
  --shadow:       0 8px 40px rgba(0,0,0,0.55);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --glow-blue:    0 0 80px rgba(0,60,200,0.15);
  --glow-teal:    0 0 40px rgba(0,180,216,0.1);
  --glow-gold:    0 0 30px rgba(212,160,23,0.18);
  --radius:       12px;
  --radius-lg:    18px;
  --transition:   0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-base);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg { display: block; }

/* ── Background Gradient ────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(86% 54% at 84% 14%, rgba(14, 48, 108, 0.1) 0%, rgba(5, 17, 42, 0.05) 32%, transparent 68%),
    linear-gradient(155deg, #01060f 0%, #010919 36%, #011022 70%, #000916 100%);
}

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.1; color: var(--text-1); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--text-2); font-size: 0.92rem; }

.label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.gold-text { color: var(--gold); }
.teal-text { color: var(--teal); }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232,160,32,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,160,32,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }
.btn svg { width: 16px; height: 16px; }

/* Navbar CTA — gold border outline exactly like reference image */
.btn-nav-cta {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
}
.btn-nav-cta:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(212,160,23,0.3);
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: linear-gradient(145deg, #081828 0%, #071524 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}
.card:hover {
  background: linear-gradient(145deg, #0c2035 0%, #0a1c30 100%);
  border-color: rgba(212,160,23,0.22);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0,40,160,0.1);
}
.card-icon {
  width: 50px; height: 50px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--gold);
}
.card-icon svg { width: 22px; height: 22px; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}
.navbar.scrolled {
  padding: 0.7rem 0;
  background: rgba(3,8,18,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 30px rgba(0,0,0,0.45);
}
.navbar.scrolled .hamburger {
  border-color: rgba(212, 160, 23, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(4, 12, 26, 0.75) 100%);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-icon {
  width: 230px;
  height: 54px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.logo-text { font-size: 1.15rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.1; }
.logo-text span { color: var(--gold); }
.logo-sub { font-size: 0.52rem; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; margin-top: 3px; }

.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 400; color: #b8cce0;
  transition: color var(--transition); position: relative;
  letter-spacing: 0.01em;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 2px; background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--text-1); }
.nav-links a:hover::after { right: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border: 1px solid rgba(212, 160, 23, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(8, 18, 36, 0.55) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 4px 16px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.2s ease;
}
.hamburger:hover {
  border-color: rgba(232, 184, 74, 0.45);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(12, 28, 52, 0.65) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(212, 160, 23, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.3);
}
.hamburger:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.hamburger:active {
  transform: scale(0.96);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0e6d0 0%, var(--gold-light) 45%, #c9a227 100%);
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.2);
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.22s ease,
    width 0.22s ease;
  transform-origin: center;
}
.hamburger.is-open {
  border-color: rgba(232, 184, 74, 0.5);
  background:
    linear-gradient(165deg, rgba(212, 160, 23, 0.12) 0%, rgba(6, 14, 28, 0.85) 100%);
}
.hamburger.is-open span {
  background: linear-gradient(90deg, #fff8e8 0%, var(--gold-light) 50%, #d4a017 100%);
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.35);
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  pointer-events: none;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .hamburger,
  .hamburger span {
    transition-duration: 0.01ms !important;
  }
  .hamburger:active {
    transform: none;
  }
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7.2rem 0 4rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(1, 7, 19, 0.99) 8%, rgba(2, 12, 30, 0.96) 54%, rgba(2, 15, 37, 0.95) 100%);
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(116% 86% at 95% 15%, rgba(30, 88, 176, 0.18) 0%, rgba(10, 40, 112, 0.07) 34%, transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 45%);
}
.hero-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(255,255,255,0.015) 0%, rgba(70,126,204,0.04) 58%, transparent 80%);
}
.hero-spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 120% at 0% 100%, rgba(0,0,0,0.6) 0%, transparent 55%);
}

.hero > .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 2.6rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  max-width: 590px;
  margin-bottom: 0.95rem;
  letter-spacing: -0.008em;
  line-height: 1.2;
  text-transform: none;
  font-weight: 700;
  color: var(--text-1);
}
.hero-title-gold { color: var(--gold-light); }
.hero p {
  font-size: 0.96rem;
  max-width: 550px;
  margin-bottom: 0.85rem;
  line-height: 1.75;
  color: #c1d2e9;
  font-weight: 400;
}
.hero-sub { margin-bottom: 1.8rem; }
.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.btn-hero-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.35rem;
  background: linear-gradient(135deg, #d4a017 0%, #b17f0f 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.84rem;
  border: 1px solid rgba(226,180,38,0.68);
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(212,160,23,0.34);
  transition: all 0.25s ease;
}
.btn-hero-gold:hover {
  background: linear-gradient(135deg, #e8b830 0%, #c99616 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212,160,23,0.38);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.35rem;
  background: rgba(255,255,255,0.03);
  color: var(--text-1);
  font-weight: 500;
  font-size: 0.84rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 5px;
  transition: all 0.25s ease;
}
.btn-hero-outline:hover {
  border-color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.footer-brand .logo-icon {
  width: 205px;
  height: 46px;
}

.hero-image-wrap {
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-market-note {
  margin-top: 0.95rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #b8c9df;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  line-height: 1.2;
  text-shadow: 0 0 16px rgba(66, 136, 255, 0.18);
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}
.hero-market-note::before,
.hero-market-note::after {
  content: "";
  height: 1px;
  width: clamp(90px, 16vw, 180px);
  background: linear-gradient(90deg, transparent 0%, rgba(173, 200, 235, 0.35) 100%);
}
.hero-market-note::after {
  background: linear-gradient(90deg, rgba(173, 200, 235, 0.35) 0%, transparent 100%);
}
.hero-highlights {
  margin-top: 1.45rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-highlights span {
  color: #d2dff2;
  font-size: 0.78rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.hero-highlights span::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  font-size: 0.96rem;
  line-height: 1;
  margin-right: 0.48rem;
  text-shadow: 0 0 10px rgba(212, 160, 23, 0.35);
  transform: translateY(-1px);
}

/* Navbar solid gold button — exact reference style */
.btn-nav-gold {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, #d4a017 0%, #c08010 100%);
  color: #fff; font-weight: 600; font-size: 0.84rem;
  border: 1.5px solid rgba(212,160,23,0.5);
  border-radius: 8px; cursor: pointer;
  box-shadow: 0 3px 16px rgba(212,160,23,0.25);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-nav-gold:hover {
  background: linear-gradient(135deg, #e8b830 0%, #d4a017 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(212,160,23,0.38);
}

/* ══════════════════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════════════════ */
.trust-strip {
  padding: 1.9rem 0 1.6rem;
  border-top: 1px solid rgba(120, 164, 224, 0.14);
  border-bottom: 1px solid rgba(120, 164, 224, 0.1);
  background: linear-gradient(155deg, rgba(6, 20, 44, 0.76) 0%, rgba(4, 15, 34, 0.86) 100%);
  backdrop-filter: blur(12px);
}
.trust-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.trust-strip-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  text-align: center;
}
.trust-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border: none;
}
.trust-card {
  padding: 1.2rem 1rem 1.05rem;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(48, 118, 255, 0.2) 0%, rgba(48, 118, 255, 0) 56%),
    linear-gradient(165deg, rgba(12, 32, 63, 0.68) 0%, rgba(7, 22, 45, 0.82) 100%);
  border: 1px solid rgba(144, 182, 234, 0.24);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(195, 218, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  animation: fadeSlideUp 0.65s ease both;
}
.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.24), rgba(141, 190, 255, 0.08), rgba(255, 255, 255, 0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}
.trust-card::after {
  content: "";
  position: absolute;
  top: -130%;
  left: -30%;
  width: 45%;
  height: 320%;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
  transform: rotate(22deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.trust-card:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(191, 218, 255, 0.5);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.38), 0 0 28px rgba(38, 126, 255, 0.2);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(72, 152, 255, 0.24) 0%, rgba(72, 152, 255, 0) 60%),
    linear-gradient(165deg, rgba(14, 37, 73, 0.72) 0%, rgba(8, 23, 47, 0.84) 100%);
}
.trust-card:hover::after {
  opacity: 1;
  animation: shimmerSweep 1s ease forwards;
}
.trust-card-icon {
  width: 146px;
  height: 108px;
  margin: 0 auto 0.5rem;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.45));
  animation: iconFloat 4.6s ease-in-out infinite;
}
.trust-card:nth-child(1) { animation-delay: 0.04s; }
.trust-card:nth-child(2) { animation-delay: 0.14s; }
.trust-card:nth-child(3) { animation-delay: 0.24s; }
.trust-card:nth-child(2) .trust-card-icon { animation-delay: 0.25s; }
.trust-card:nth-child(3) .trust-card-icon { animation-delay: 0.45s; }
.trust-card:hover .trust-card-icon {
  transform: scale(1.06);
  filter: drop-shadow(0 12px 20px rgba(14, 33, 62, 0.55));
}
.trust-card h3 {
  font-size: 1.02rem;
  line-height: 1.16;
  font-weight: 600;
  margin-bottom: 0.42rem;
  color: #dfebfb;
  letter-spacing: -0.005em;
}
.trust-card p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: #9db7d8;
  margin: 0;
}
.trust-card p::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  font-size: 0.76rem;
}

/* ══════════════════════════════════════════════════════════
   WHY STRUGGLE SECTION
══════════════════════════════════════════════════════════ */
.struggle-section {
  padding: 1.4rem 0 2.4rem;
}
.struggle-wrap {
  position: relative;
  background:
    radial-gradient(125% 85% at 50% 0%, rgba(65, 132, 255, 0.17) 0%, rgba(65, 132, 255, 0) 58%),
    linear-gradient(160deg, rgba(8, 24, 52, 0.74) 0%, rgba(5, 18, 40, 0.86) 100%);
  border: 1px solid rgba(155, 191, 238, 0.22);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(196, 218, 255, 0.06);
}
.struggle-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 35%);
  pointer-events: none;
}
.struggle-wrap h2 {
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: #d8e7fb;
  letter-spacing: 0.01em;
  padding: 1.25rem 1rem 1.05rem;
}
.struggle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  border: none;
  padding: 0 1rem 1rem;
}
.struggle-card {
  text-align: center;
  padding: 1rem 0.8rem 0.9rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(120% 95% at 50% 0%, rgba(36, 112, 255, 0.18) 0%, rgba(36, 112, 255, 0) 60%),
    linear-gradient(165deg, rgba(12, 32, 63, 0.66) 0%, rgba(8, 24, 48, 0.78) 100%);
  border: 1px solid rgba(142, 183, 236, 0.22);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(193, 216, 255, 0.06);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  animation: fadeSlideUp 0.7s ease both;
}
.struggle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(255,255,255,0.19), rgba(150,197,255,0.07), rgba(255,255,255,0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.48;
  pointer-events: none;
}
.struggle-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(194, 220, 255, 0.5);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(42, 116, 255, 0.16);
  background:
    radial-gradient(120% 98% at 50% 0%, rgba(74, 154, 255, 0.24) 0%, rgba(74, 154, 255, 0) 62%),
    linear-gradient(165deg, rgba(13, 35, 69, 0.72) 0%, rgba(8, 23, 47, 0.84) 100%);
}
.struggle-icon {
  width: 122px;
  height: 92px;
  margin: 0 auto 0.55rem;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.45));
  animation: iconFloat 4.9s ease-in-out infinite;
}
.struggle-card:nth-child(1) { animation-delay: 0.06s; }
.struggle-card:nth-child(2) { animation-delay: 0.16s; }
.struggle-card:nth-child(3) { animation-delay: 0.26s; }
.struggle-card:nth-child(4) { animation-delay: 0.36s; }
.struggle-card:nth-child(2) .struggle-icon { animation-delay: 0.2s; }
.struggle-card:nth-child(3) .struggle-icon { animation-delay: 0.4s; }
.struggle-card:nth-child(4) .struggle-icon { animation-delay: 0.6s; }
.struggle-card:hover .struggle-icon {
  transform: scale(1.06);
  filter: drop-shadow(0 12px 20px rgba(14, 33, 62, 0.55));
}
.struggle-card h3 {
  font-size: 0.96rem;
  line-height: 1.2;
  color: #d9e8fb;
  margin-bottom: 0.3rem;
}
.struggle-card p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #abc1df;
}
.struggle-note {
  text-align: center;
  margin: 0;
  padding: 0.5rem 1rem 1.2rem;
  color: var(--gold-light);
  font-size: 0.9rem;
}

/* ══════════════════════════════════════════════════════════
   GROWTH SYSTEM SECTION
══════════════════════════════════════════════════════════ */
.growth-system-section {
  padding-top: 1.3rem;
}
.growth-system-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(126, 164, 218, 0.22);
  background:
    radial-gradient(112% 76% at 82% 12%, rgba(34, 89, 176, 0.22) 0%, rgba(11, 36, 90, 0.08) 34%, transparent 72%),
    linear-gradient(158deg, rgba(1, 8, 20, 0.99) 6%, rgba(2, 11, 28, 0.98) 58%, rgba(2, 14, 33, 0.97) 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(170, 201, 246, 0.05);
}
.growth-system-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255,255,255,0.045), rgba(255,255,255,0) 34%),
    radial-gradient(140% 110% at 0% 100%, rgba(0, 0, 0, 0.46) 0%, transparent 56%);
}
.growth-system-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 1.45rem 1.25rem 1rem;
}
.growth-system-head h2 {
  font-size: clamp(1.35rem, 2.55vw, 2.15rem);
  color: #edf4ff;
  margin-bottom: 0.55rem;
}
.growth-system-head p {
  color: #c0d2ea;
  font-size: 0.86rem;
}
.growth-system-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 1.1rem 1.2rem;
}
.growth-system-card {
  position: relative;
  overflow: hidden;
  padding: 1.3rem 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(142, 177, 230, 0.3);
  background:
    radial-gradient(116% 88% at 50% 0%, rgba(42, 112, 223, 0.18) 0%, rgba(42, 112, 223, 0) 64%),
    linear-gradient(165deg, rgba(9, 24, 48, 0.84) 0%, rgba(7, 20, 40, 0.9) 100%);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(189, 213, 248, 0.08);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  animation: growthCardReveal 0.68s ease both;
}
.growth-system-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 42%;
  height: 300%;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.18), rgba(255,255,255,0));
  transform: rotate(18deg);
  opacity: 0;
  transition: opacity .25s ease;
}
.growth-system-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.52);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.38), 0 0 22px rgba(43, 125, 255, 0.1);
}
.growth-system-card:hover::after {
  opacity: 1;
  animation: shimmerSweep 1s ease forwards;
}
.growth-system-card:nth-child(1) { animation-delay: 0.06s; }
.growth-system-card:nth-child(2) { animation-delay: 0.18s; }
.growth-system-card:nth-child(3) { animation-delay: 0.3s; }
.growth-system-card-featured {
  border-color: rgba(212, 160, 23, 0.56);
  background:
    radial-gradient(118% 90% at 50% 0%, rgba(225, 170, 42, 0.18) 0%, rgba(225, 170, 42, 0) 62%),
    linear-gradient(165deg, rgba(12, 28, 54, 0.84) 0%, rgba(8, 20, 39, 0.9) 100%);
}
.growth-system-card-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}
.growth-system-icon-img {
  width: 128px;
  height: 96px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.42));
  animation: iconFloat 5s ease-in-out infinite;
}
.growth-system-card h3 {
  font-size: 1.06rem;
  color: #deebfd;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.growth-system-card:hover .growth-system-icon-img {
  transform: scale(1.06);
}
.growth-system-list {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 0.7rem;
}
.growth-system-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.83rem;
  line-height: 1.42;
  color: #b7cae3;
}
.growth-system-list li::before {
  content: "✓";
  color: var(--gold-light);
  font-weight: 700;
  margin-top: 0.01rem;
}
.growth-system-highlight {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.65rem;
  text-align: center;
  color: #e8f2ff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════════════════
   RESULTS GROWTH SECTION
══════════════════════════════════════════════════════════ */
.results-growth-section {
  padding-top: 1.15rem;
}
.results-growth-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(136, 171, 225, 0.26);
  background:
    radial-gradient(110% 76% at 10% 100%, rgba(16, 60, 140, 0.2) 0%, rgba(16, 60, 140, 0) 60%),
    radial-gradient(104% 72% at 86% 8%, rgba(184, 122, 24, 0.16) 0%, rgba(184, 122, 24, 0) 58%),
    linear-gradient(160deg, rgba(1, 8, 20, 0.98) 0%, rgba(3, 12, 29, 0.99) 55%, rgba(3, 14, 34, 0.98) 100%);
  box-shadow: 0 24px 56px rgba(0,0,0,0.36), inset 0 1px 0 rgba(170,201,246,0.05);
}
.results-growth-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 36%);
}
.results-growth-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 1.45rem 1.1rem 1rem;
}
.results-growth-head h2 {
  font-size: clamp(1.35rem, 2.45vw, 2rem);
  color: #edf4ff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.results-growth-head p {
  font-size: 0.84rem;
  color: #bfd2eb;
}
.results-growth-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 1rem 1.1rem;
}
.results-growth-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 1rem 0.95rem 0.9rem;
  text-align: center;
  border: 1px solid rgba(146, 184, 236, 0.3);
  background:
    radial-gradient(118% 90% at 50% 0%, rgba(39, 108, 214, 0.16) 0%, rgba(39, 108, 214, 0) 64%),
    linear-gradient(165deg, rgba(8, 23, 47, 0.86) 0%, rgba(6, 18, 37, 0.92) 100%);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(193,216,255,0.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  animation: growthCardReveal 0.68s ease both;
}
.results-growth-card:nth-child(1) { animation-delay: 0.08s; }
.results-growth-card:nth-child(2) { animation-delay: 0.18s; }
.results-growth-card:nth-child(3) { animation-delay: 0.28s; }
.results-growth-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,160,23,0.54);
  box-shadow: 0 24px 42px rgba(0,0,0,0.38), 0 0 22px rgba(212,160,23,0.12);
}
.results-growth-card-featured {
  border-color: rgba(212,160,23,0.56);
  background:
    radial-gradient(118% 90% at 50% 0%, rgba(225,170,42,0.18) 0%, rgba(225,170,42,0) 64%),
    linear-gradient(165deg, rgba(10, 24, 47, 0.86) 0%, rgba(7, 18, 36, 0.93) 100%);
}
.results-growth-icon {
  width: 122px;
  height: 88px;
  margin: 0 auto 0.45rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.45));
  animation: iconFloat 5s ease-in-out infinite;
}
.results-growth-card h3 {
  font-size: 1.02rem;
  color: #ecf3ff;
  line-height: 1.2;
  margin-bottom: 0.36rem;
}
.results-growth-metric {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #ffcf66;
  margin-bottom: 0.65rem;
}
.results-growth-metric span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.78rem;
  color: #c5d8ee;
  font-weight: 500;
}
.results-growth-list {
  border-top: 1px solid rgba(255,255,255,0.11);
  padding-top: 0.62rem;
  display: grid;
  gap: 0.38rem;
  margin-bottom: 0.65rem;
}
.results-growth-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.42rem;
  justify-content: center;
  color: #b9cde7;
  font-size: 0.8rem;
  line-height: 1.4;
}
.results-growth-list li::before {
  content: "✓";
  color: var(--gold-light);
  font-weight: 700;
}
.results-growth-foot {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.56rem;
  color: #e8f2ff;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   REAL CASE STUDIES SECTION
══════════════════════════════════════════════════════════ */
.caseproof-section {
  padding-top: 1rem;
  position: relative;
}
.caseproof-wrap {
  width: min(1320px, 100% - 2rem);
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(126, 164, 220, 0.2);
  background:
    radial-gradient(112% 86% at 90% 12%, rgba(168, 112, 20, 0.12) 0%, rgba(168, 112, 20, 0) 62%),
    radial-gradient(126% 94% at 8% 100%, rgba(24, 75, 166, 0.2) 0%, rgba(24, 75, 166, 0) 64%),
    linear-gradient(160deg, rgba(1, 7, 18, 0.99) 0%, rgba(2, 10, 25, 0.99) 50%, rgba(1, 12, 31, 0.98) 100%);
  box-shadow: 0 22px 52px rgba(0,0,0,0.32), inset 0 1px 0 rgba(173,205,250,0.05);
}
.caseproof-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 34%),
    radial-gradient(140% 120% at 0% 100%, rgba(0,0,0,0.46) 0%, transparent 56%);
}
.caseproof-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.caseproof-ambient span {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.22;
  animation: caseproofFloat 9s ease-in-out infinite;
}
.caseproof-ambient span:nth-child(1) {
  width: 180px;
  height: 180px;
  top: -30px;
  left: 12%;
  background: radial-gradient(circle, rgba(236,184,73,0.52) 0%, rgba(236,184,73,0) 70%);
}
.caseproof-ambient span:nth-child(2) {
  width: 240px;
  height: 240px;
  top: 28%;
  right: -40px;
  background: radial-gradient(circle, rgba(62,134,246,0.45) 0%, rgba(62,134,246,0) 72%);
  animation-delay: 1.3s;
}
.caseproof-ambient span:nth-child(3) {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: 36%;
  background: radial-gradient(circle, rgba(76,154,255,0.34) 0%, rgba(76,154,255,0) 72%);
  animation-delay: 2.1s;
}
.caseproof-head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 1.1rem 1rem 0.75rem;
}
.caseproof-head h2 {
  color: #f1f7ff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 700;
}
.caseproof-head p {
  color: #c5d7ee;
  font-size: 0.9rem;
  line-height: 1.5;
}
.caseproof-journey {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f0ca72;
  font-size: 0.86rem;
  font-weight: 600;
}
.caseproof-journey::before,
.caseproof-journey::after {
  content: "";
  width: clamp(60px, 11vw, 130px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,184,48,0.65) 100%);
}
.caseproof-journey::after {
  background: linear-gradient(90deg, rgba(232,184,48,0.65) 0%, transparent 100%);
}
.caseproof-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.85rem;
  padding: 0 1rem;
}
.caseproof-item {
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) 1.1fr;
  gap: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(144, 182, 234, 0.22);
  background:
    radial-gradient(115% 92% at 50% 0%, rgba(44, 114, 223, 0.12) 0%, rgba(44, 114, 223, 0) 64%),
    linear-gradient(165deg, rgba(8, 23, 47, 0.86) 0%, rgba(6, 18, 37, 0.9) 100%);
  box-shadow: 0 10px 26px rgba(0,0,0,0.22), inset 0 1px 0 rgba(193,216,255,0.07);
  padding: 0.75rem;
  animation: growthCardReveal 0.68s ease both;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  will-change: transform;
  min-height: 190px;
}
.caseproof-item-reverse .caseproof-image {
  order: 2;
}
.caseproof-item-reverse .caseproof-content {
  order: 1;
}
.caseproof-item:nth-child(1) { animation-delay: 0.1s; }
.caseproof-item:nth-child(2) { animation-delay: 0.24s; }
.caseproof-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212,160,23,0.42);
  box-shadow: 0 16px 34px rgba(0,0,0,0.28), 0 0 16px rgba(212,160,23,0.1);
}
.caseproof-image {
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(160, 194, 242, 0.18);
  background: rgba(3, 13, 30, 0.75);
  position: relative;
}
.caseproof-item-reverse .caseproof-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(232, 184, 48, 0.24) 0%, rgba(232, 184, 48, 0.1) 40%, rgba(232, 184, 48, 0.02) 75%, rgba(232, 184, 48, 0) 100%);
  mix-blend-mode: screen;
}
.caseproof-image img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: contain;
  object-position: center;
  transition: transform .5s ease, filter .5s ease;
  filter: saturate(1.02) contrast(1.02);
}
.caseproof-item:hover .caseproof-image img {
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.05);
}
.caseproof-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.caseproof-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.caseproof-content h3 {
  color: #f0ca72;
  font-size: 1.7rem;
  line-height: 1.16;
  margin-bottom: 0;
}
.caseproof-pill {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0f1724;
  background: linear-gradient(135deg, #f0ca72 0%, #d4a017 100%);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  white-space: nowrap;
}
.caseproof-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  margin-bottom: 0.5rem;
}
.caseproof-metrics span {
  color: #e8f2ff;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.caseproof-metrics span::before {
  content: "✓";
  color: var(--gold-light);
  font-weight: 700;
}
.caseproof-content p {
  color: #b8cce7;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  max-width: 54ch;
}
.caseproof-link {
  color: #f6d993;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  transition: gap .25s ease, color .25s ease;
}
.caseproof-link::after {
  content: ">";
}
.caseproof-link:hover {
  color: #ffe2a2;
  gap: 0.55rem;
}
.caseproof-cta {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0.8rem 0.8rem 1rem;
}
.caseproof-cta p {
  color: #e8f2ff;
  font-size: 1.02rem;
  margin-bottom: 0.55rem;
}
.caseproof-cta .btn {
  min-width: 200px;
  padding: 0.7rem 1.2rem;
  font-size: 0.82rem;
}

/* Case study detail pages (full case study) */
.case-study-detail-section {
  padding: 0.35rem 0 3.25rem;
}
.case-study-detail-section .caseproof-wrap {
  margin-top: 0;
}
.case-study-detail-section .caseproof-list {
  padding-bottom: 0.35rem;
}
.case-study-narrative {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0 1rem 0.85rem;
}
.case-study-narrative-card {
  border-radius: 12px;
  border: 1px solid rgba(144, 182, 234, 0.22);
  background:
    radial-gradient(115% 92% at 50% 0%, rgba(44, 114, 223, 0.1) 0%, rgba(44, 114, 223, 0) 64%),
    linear-gradient(165deg, rgba(8, 23, 47, 0.86) 0%, rgba(6, 18, 37, 0.9) 100%);
  padding: 0.82rem 0.78rem;
}
.case-study-narrative-card h3 {
  margin: 0 0 0.45rem;
  color: #f0ca72;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.case-study-narrative-card p {
  margin: 0;
  color: #b8cce7;
  font-size: 0.84rem;
  line-height: 1.55;
}
.case-study-detail-cta {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0.85rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US HIGHLIGHT SECTION
══════════════════════════════════════════════════════════ */
.choose-us-section {
  padding-top: 1rem;
}
.choose-us-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(149, 182, 235, 0.24);
  background:
    radial-gradient(110% 86% at 84% 14%, rgba(224, 164, 44, 0.18) 0%, rgba(224, 164, 44, 0) 58%),
    radial-gradient(128% 92% at 8% 100%, rgba(43, 112, 226, 0.22) 0%, rgba(43, 112, 226, 0) 62%),
    linear-gradient(160deg, rgba(1, 8, 20, 0.99) 0%, rgba(3, 13, 33, 0.99) 56%, rgba(2, 14, 35, 0.98) 100%);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(173, 205, 250, 0.06);
}
.choose-us-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(116deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 34%),
    radial-gradient(140% 110% at 0% 100%, rgba(0, 0, 0, 0.48) 0%, transparent 58%);
}
.choose-us-head {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 1.25rem 1rem 0.9rem;
}
.choose-us-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #f4e2b4;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.choose-us-head p {
  color: #c6d8ef;
  font-size: 0.9rem;
}
.choose-us-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 0 0.95rem 0.95rem;
}
.choose-us-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.42);
  background:
    radial-gradient(118% 88% at 50% 0%, rgba(232, 184, 48, 0.2) 0%, rgba(232, 184, 48, 0) 60%),
    linear-gradient(164deg, rgba(11, 27, 52, 0.86) 0%, rgba(8, 20, 39, 0.92) 100%);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 226, 160, 0.1);
  padding: 0.95rem 0.75rem 0.9rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.choose-us-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 201, 116, 0.78);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.36), 0 0 20px rgba(232, 184, 48, 0.18);
}
.choose-us-icon {
  width: 98px;
  height: 72px;
  margin: 0 auto 0.5rem;
  object-fit: contain;
  filter: drop-shadow(0 9px 14px rgba(0, 0, 0, 0.45));
}
.choose-us-card h3 {
  color: #f3e3bd;
  font-size: 1.2rem;
  line-height: 1.15;
  margin-bottom: 0.42rem;
}
.choose-us-card p {
  color: #cfdbec;
  font-size: 0.83rem;
  line-height: 1.5;
}
.choose-us-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.25rem 1rem 1.05rem;
}
.choose-us-cta p {
  color: #f0d8a0;
  font-size: clamp(0.96rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.62rem;
}
.choose-us-cta .btn {
  min-width: 220px;
  font-size: 0.85rem;
  padding: 0.75rem 1.4rem;
}

/* ══════════════════════════════════════════════════════════
   FLEXIBLE PACKAGES SECTION
══════════════════════════════════════════════════════════ */
.packages-section {
  padding-top: 1rem;
}
.packages-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(151, 183, 236, 0.24);
  background:
    radial-gradient(110% 82% at 86% 12%, rgba(230, 169, 52, 0.16) 0%, rgba(230, 169, 52, 0) 58%),
    radial-gradient(130% 96% at 10% 100%, rgba(44, 114, 223, 0.2) 0%, rgba(44, 114, 223, 0) 62%),
    linear-gradient(160deg, rgba(1, 8, 20, 0.99) 0%, rgba(3, 12, 31, 0.99) 55%, rgba(2, 13, 34, 0.98) 100%);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(173, 205, 250, 0.06);
}
.packages-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(116deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 36%),
    radial-gradient(140% 112% at 0% 100%, rgba(0, 0, 0, 0.48) 0%, transparent 58%);
}
.packages-head {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 1.3rem 1rem 0.95rem;
}
.packages-head h2 {
  font-size: clamp(1.45rem, 2.45vw, 2.2rem);
  color: #f4e3b9;
  margin-bottom: 0.38rem;
}
.packages-head p {
  color: #c5d8ee;
  font-size: 0.9rem;
}
.packages-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  padding: 0 0.95rem 0.95rem;
}
.package-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(130, 164, 222, 0.48);
  background:
    radial-gradient(118% 86% at 50% 0%, rgba(60, 132, 242, 0.2) 0%, rgba(60, 132, 242, 0) 60%),
    linear-gradient(164deg, rgba(8, 22, 44, 0.88) 0%, rgba(6, 18, 35, 0.93) 100%);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(194, 217, 255, 0.08);
  padding: 0.95rem 0.85rem 0.85rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(178, 207, 255, 0.75);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.35), 0 0 20px rgba(63, 141, 255, 0.16);
}
.package-card-middle {
  border-color: rgba(212, 123, 202, 0.54);
  background:
    radial-gradient(118% 86% at 50% 0%, rgba(197, 116, 193, 0.22) 0%, rgba(197, 116, 193, 0) 60%),
    linear-gradient(164deg, rgba(18, 20, 44, 0.88) 0%, rgba(12, 14, 34, 0.93) 100%);
}
.package-card-featured {
  border-color: rgba(232, 184, 48, 0.72);
  background:
    radial-gradient(118% 86% at 50% 0%, rgba(232, 184, 48, 0.24) 0%, rgba(232, 184, 48, 0) 62%),
    linear-gradient(164deg, rgba(30, 24, 13, 0.9) 0%, rgba(19, 14, 9, 0.94) 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 20px rgba(232, 184, 48, 0.16);
}
.package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f0ca72 0%, #d4a017 100%);
  color: #221708;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
}
.package-card h3 {
  color: #eef6ff;
  font-size: 1.08rem;
  text-align: center;
  margin-bottom: 0.4rem;
}
.package-sub {
  text-align: center;
  color: #c7d8ee;
  font-size: 0.8rem;
}
.package-price {
  text-align: center;
  color: #f9d57f;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.2rem 0 0.45rem;
}
.package-price span {
  font-size: 0.62em;
  font-weight: 500;
  color: #f2e1ba;
}
.package-desc {
  color: #c8d8ed;
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
  min-height: 58px;
  margin-bottom: 0.55rem;
}
.package-list {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}
.package-list li {
  color: #e8f2ff;
  font-size: 0.84rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.package-list li::before {
  content: "✓";
  color: #f0c55f;
  font-weight: 700;
}
.package-link {
  display: block;
  text-align: center;
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: #f4d89b;
  font-size: 1.04rem;
  font-weight: 500;
}
.package-link::after {
  content: "  >";
}
.packages-bottom-line {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #f2dcab;
  font-size: clamp(1rem, 1.95vw, 2rem);
  letter-spacing: 0.01em;
  padding: 0.05rem 1rem 0.65rem;
}
.packages-scaling-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1rem 1.25rem;
}
.packages-scaling-cta--dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3.5vw, 2.25rem);
  max-width: min(920px, 100% - 1.5rem);
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}
.packages-scaling-block {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.85rem;
  justify-items: stretch;
  text-align: center;
}
.packages-scaling-caption {
  margin: 0;
  align-self: start;
  justify-self: center;
  width: 100%;
  max-width: 22rem;
  text-align: center;
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  line-height: 1.55;
  color: #f0d78a;
  text-shadow: 0 0 28px rgba(212, 175, 55, 0.12);
}
.packages-scaling-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  box-sizing: border-box;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

/* ══════════════════════════════════════════════════════════
   ADVANCED SCALING SERVICES SECTION
══════════════════════════════════════════════════════════ */
.advanced-scaling-section {
  padding-top: 1rem;
}
.advanced-scaling-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(141, 177, 233, 0.22);
  background:
    radial-gradient(120% 86% at 85% 14%, rgba(62, 132, 246, 0.18) 0%, rgba(62, 132, 246, 0) 58%),
    radial-gradient(132% 96% at 8% 100%, rgba(26, 82, 178, 0.2) 0%, rgba(26, 82, 178, 0) 62%),
    linear-gradient(160deg, rgba(1, 7, 19, 0.99) 0%, rgba(3, 12, 29, 0.99) 56%, rgba(2, 13, 33, 0.98) 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(175, 206, 250, 0.05);
}
.advanced-scaling-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(116deg, rgba(255,255,255,0.045), rgba(255,255,255,0) 36%),
    radial-gradient(140% 112% at 0% 100%, rgba(0, 0, 0, 0.5) 0%, transparent 58%);
}
.advanced-scaling-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 1.25rem 1rem 0.85rem;
}
.advanced-scaling-head .label-tag {
  color: #9dbfe9;
}
.advanced-scaling-head h2 {
  color: #edf5ff;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  margin-bottom: 0.35rem;
}
.advanced-scaling-head p {
  color: #c3d7ef;
  font-size: 0.9rem;
}
.advanced-scaling-group {
  position: relative;
  z-index: 1;
  padding: 0 0.95rem 0.75rem;
}
.advanced-scaling-group-title {
  color: #f0c978;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}
.advanced-scaling-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.advanced-scaling-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.advanced-scaling-card {
  border-radius: 12px;
  border: 1px solid rgba(136, 174, 232, 0.36);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(42, 112, 223, 0.14) 0%, rgba(42, 112, 223, 0) 62%),
    linear-gradient(164deg, rgba(8, 22, 44, 0.88) 0%, rgba(6, 17, 34, 0.92) 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(195, 218, 255, 0.07);
  padding: 0.9rem 0.8rem 0.82rem;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.advanced-scaling-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 209, 255, 0.75);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.34), 0 0 18px rgba(47, 126, 242, 0.14);
}
.advanced-scaling-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(246, 199, 96, 0.42);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 198, 95, 0.1);
  color: #f3d28a;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.advanced-scaling-logo-brand-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.advanced-scaling-logo-walmart {
  width: 170px;
  height: 42px;
  max-width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.advanced-scaling-logo-walmart .advanced-scaling-logo-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.advanced-scaling-logo-shopify {
  width: 170px;
  height: 42px;
  max-width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.advanced-scaling-logo-shopify .advanced-scaling-logo-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.advanced-scaling-logo-etsy {
  width: 170px;
  height: 42px;
  max-width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.advanced-scaling-logo-etsy .advanced-scaling-logo-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.advanced-scaling-logo-ebay {
  width: 190px;
  height: 44px;
  max-width: 100%;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0 0 0 6px;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.advanced-scaling-logo-ebay .advanced-scaling-logo-brand-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}
.advanced-scaling-logo-row {
  display: flex;
  gap: 0.26rem;
  margin-bottom: 0.45rem;
}
.advanced-scaling-logo-social span:nth-child(1) { background: #1877f2; border-color: rgba(140,184,255,0.7); }
.advanced-scaling-logo-social span:nth-child(2) { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); border-color: rgba(255,205,135,0.62); color: #fff; }
.advanced-scaling-logo-social span:nth-child(3) { background: #e60023; border-color: rgba(255,143,143,0.65); color: #fff; }
.advanced-scaling-logo-social span:nth-child(4) { background: #111; border-color: rgba(164,164,164,0.55); color: #fff; }
.advanced-scaling-logo-social span:nth-child(5) { background: #000; border-color: rgba(165,165,165,0.55); color: #fff; text-transform: uppercase; }
.advanced-scaling-logo-meta {
  width: 170px;
  height: 42px;
  max-width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.advanced-scaling-logo-meta .advanced-scaling-logo-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.advanced-scaling-logo-row span {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid rgba(145, 182, 236, 0.46);
  background: rgba(23, 53, 100, 0.46);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dceaff;
  font-size: 0.62rem;
  font-weight: 600;
}
.advanced-scaling-card h4 {
  color: #edf4ff;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.32rem;
}
.advanced-scaling-card p {
  color: #c1d5ec;
  font-size: 0.83rem;
  line-height: 1.5;
}
.advanced-scaling-link {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin-top: 0.45rem;
  color: #f3c96d;
  font-size: 1rem;
  font-weight: 500;
}
.advanced-scaling-link::after {
  content: ">";
}

/* Advanced scaling & conversion optimization standalone pages */
.advanced-scaling-page,
.conversion-optimization-page,
.case-study-page,
.testimonials-page {
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(46, 117, 232, 0.14) 0%, transparent 45%),
    radial-gradient(80% 50% at 100% 40%, rgba(212, 160, 23, 0.06) 0%, transparent 42%),
    var(--bg-base);
}

.case-study-page .nav-links a[aria-current="page"],
.testimonials-page .nav-links a[aria-current="page"] {
  color: var(--gold-light);
  font-weight: 600;
}
.case-study-page .nav-links a[aria-current="page"]::after,
.testimonials-page .nav-links a[aria-current="page"]::after {
  right: 0;
}

.advanced-scaling-page .scaling-page-hero,
.conversion-optimization-page .scaling-page-hero,
.case-study-page .scaling-page-hero {
  position: relative;
  overflow: hidden;
  padding: 5.15rem 0 2.25rem;
  border-bottom: 1px solid rgba(139, 178, 234, 0.12);
  background:
    linear-gradient(180deg, rgba(4, 14, 32, 0.98) 0%, rgba(2, 8, 20, 0.92) 55%, rgba(1, 7, 19, 0.55) 100%);
}

.scaling-page-hero-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 85%;
  background:
    radial-gradient(closest-side, rgba(240, 202, 114, 0.12) 0%, transparent 72%),
    radial-gradient(closest-side, rgba(46, 117, 232, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: client-reviews-glow-shift 14s ease-in-out infinite;
}

.advanced-scaling-page .scaling-page-hero .container,
.conversion-optimization-page .scaling-page-hero .container,
.case-study-page .scaling-page-hero .container {
  position: relative;
  z-index: 1;
}

.scaling-page-hero-inner {
  max-width: 40rem;
  margin: 0 auto;
  padding-top: 0.35rem;
  text-align: center;
}

.scaling-page-breadcrumb {
  font-size: 0.78rem;
  margin-bottom: 1rem;
  color: rgba(168, 198, 232, 0.72);
  animation: client-reviews-hero-in 0.5s ease 0.02s both;
}
.scaling-page-breadcrumb a {
  color: rgba(200, 220, 248, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 220, 248, 0.22);
}
.scaling-page-breadcrumb a:hover {
  color: #f0ca72;
  border-bottom-color: rgba(240, 202, 114, 0.45);
}
.scaling-page-breadcrumb span {
  margin: 0 0.35rem;
  opacity: 0.45;
}

.scaling-page-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(157, 191, 233, 0.88);
  margin-bottom: 0.55rem;
  animation: client-reviews-hero-in 0.55s ease 0.06s both;
}

.advanced-scaling-page .scaling-page-hero h1,
.conversion-optimization-page .scaling-page-hero h1,
.case-study-page .scaling-page-hero h1 {
  color: #f0ca72;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 40px rgba(212, 160, 23, 0.1);
  animation: client-reviews-hero-in 0.6s ease 0.1s both;
}

.scaling-page-title-line {
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(240, 202, 114, 0.95), rgba(212, 160, 23, 0.5), transparent);
  animation: client-reviews-hero-in 0.55s ease 0.14s both;
}

.scaling-page-lead {
  color: #c2d6ed;
  font-size: clamp(0.9rem, 1.25vw, 1.05rem);
  max-width: 34rem;
  margin: 0 auto 0.25rem;
  line-height: 1.62;
  animation: client-reviews-hero-in 0.6s ease 0.18s both;
}

.advanced-scaling-section--page {
  padding: 1.25rem 0 3.75rem;
}

.advanced-scaling-head--compact {
  padding-bottom: 0.35rem;
}

.advanced-scaling-head--compact h2 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.scaling-page-bottom-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 1.35rem;
  padding: 1.35rem 1rem 0.35rem;
  border-top: 1px solid rgba(136, 174, 232, 0.2);
}
.scaling-page-bottom-cta p {
  color: #c8daf1;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

/* Strategy call page */
.strategy-call-page {
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(46, 117, 232, 0.14) 0%, transparent 45%),
    radial-gradient(80% 50% at 100% 40%, rgba(212, 160, 23, 0.06) 0%, transparent 42%),
    var(--bg-base);
}

.strategy-call-hero {
  position: relative;
  overflow: hidden;
  padding: 5.1rem 0 1.65rem;
  border-bottom: 1px solid rgba(139, 178, 234, 0.1);
  background: linear-gradient(180deg, rgba(4, 14, 32, 0.98) 0%, rgba(2, 8, 20, 0.9) 55%, rgba(1, 7, 19, 0.5) 100%);
}

.strategy-call-hero-glow {
  position: absolute;
  inset: -45% -20% auto;
  height: 92%;
  pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(240, 202, 114, 0.1) 0%, transparent 72%),
    radial-gradient(closest-side, rgba(46, 117, 232, 0.16) 0%, transparent 70%);
}

.strategy-call-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.15rem;
  align-items: stretch;
}

.strategy-call-hero-copy,
.strategy-call-booking-card {
  border: 1px solid rgba(137, 171, 225, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(120% 96% at 90% 0%, rgba(53, 125, 238, 0.16) 0%, rgba(53, 125, 238, 0) 55%),
    linear-gradient(160deg, rgba(4, 16, 36, 0.96) 0%, rgba(4, 14, 30, 0.98) 100%);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.strategy-call-hero-copy {
  padding: 1.2rem 1.15rem;
}

.strategy-call-eyebrow {
  margin: 0 0 0.48rem;
  color: rgba(245, 215, 145, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
  font-weight: 600;
}

.strategy-call-hero-copy h1 {
  margin: 0;
  color: #f4e3b9;
  font-size: clamp(1.3rem, 2.2vw, 2.05rem);
  line-height: 1.2;
}

.strategy-call-lead {
  margin: 0.72rem 0 0;
  color: #c8daf1;
  font-size: 0.94rem;
  line-height: 1.58;
}

.strategy-call-pills {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.strategy-call-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(142, 178, 232, 0.34);
  background: rgba(15, 39, 76, 0.55);
  color: #d7e8fb;
  font-size: 0.75rem;
}

.strategy-call-booking-card {
  padding: 1.15rem 1rem;
}

.strategy-call-booking-preview {
  display: block;
  color: inherit;
  text-decoration: none;
}

.strategy-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.strategy-call-booking-card h2 {
  margin: 0;
  color: #f0ca72;
  font-size: 1.18rem;
}

.strategy-calendar-head span {
  color: #9dbfe9;
  font-size: 0.68rem;
}

.strategy-calendar-body {
  border: 1px solid rgba(145, 181, 234, 0.26);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.strategy-calendar-left {
  padding: 0.68rem 0.62rem;
  border-right: 1px solid rgba(145, 181, 234, 0.2);
  background: rgba(6, 18, 38, 0.72);
}

.strategy-calendar-left p {
  margin: 0;
  color: #d6e6f9;
  font-size: 0.74rem;
  line-height: 1.45;
}

.strategy-calendar-left p + p {
  margin-top: 0.36rem;
}

.strategy-calendar-left p:last-child {
  margin-top: 0.52rem;
  color: #b9cfe8;
}

.strategy-calendar-right {
  padding: 0.58rem 0.56rem 0.52rem;
}

.strategy-calendar-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.42rem;
}

.strategy-calendar-month span {
  color: #dbe8f9;
  font-size: 0.74rem;
  font-weight: 600;
}

.strategy-calendar-month strong {
  color: #a8c6e9;
  font-size: 0.78rem;
}

.strategy-calendar-weekdays,
.strategy-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.18rem;
}

.strategy-calendar-weekdays span {
  text-align: center;
  color: #85a9d4;
  font-size: 0.52rem;
  font-weight: 600;
}

.strategy-calendar-days {
  margin-top: 0.28rem;
}

.strategy-calendar-days span {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c5d8ef;
  font-size: 0.62rem;
  border-radius: 999px;
}

.strategy-calendar-days span.is-active {
  background: linear-gradient(140deg, #f0ca72, #d4a017);
  color: #231708;
  font-weight: 700;
}

.strategy-calendar-timezone {
  margin: 0.48rem 0 0;
  color: #94b5dc;
  font-size: 0.58rem;
  line-height: 1.4;
}

.strategy-call-content {
  padding: 0.82rem 0 0.45rem;
}

.strategy-call-panel {
  border-radius: 18px;
  border: 1px solid rgba(137, 171, 225, 0.24);
  background:
    radial-gradient(120% 96% at 90% 0%, rgba(53, 125, 238, 0.12) 0%, rgba(53, 125, 238, 0) 55%),
    linear-gradient(160deg, rgba(3, 12, 28, 0.97) 0%, rgba(2, 10, 24, 0.98) 100%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
  padding: 0.95rem;
}

.strategy-call-panel--tight {
  padding: 0.8rem;
}

.strategy-call-grid {
  display: grid;
  gap: 0.88rem;
}

.strategy-call-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strategy-call-mini-card {
  border-radius: 12px;
  border: 1px solid rgba(142, 178, 232, 0.3);
  background: linear-gradient(165deg, rgba(9, 24, 49, 0.92), rgba(5, 16, 32, 0.94));
  padding: 0.86rem 0.76rem;
}

.strategy-call-mini-card--icon {
  position: relative;
}

.strategy-call-mini-card--icon::before {
  content: "";
  position: absolute;
  top: 0.86rem;
  right: 0.76rem;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(240, 202, 114, 0.55);
  border-radius: 3px;
  opacity: 0.8;
}

.strategy-call-mini-card h3 {
  margin: 0 0 0.55rem;
  color: #f0ca72;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.strategy-call-mini-card ul,
.strategy-call-mini-card ol {
  margin: 0;
  padding-left: 1rem;
  color: #c7daf1;
  font-size: 0.8rem;
  line-height: 1.55;
}

.strategy-call-social-proof {
  padding: 0.45rem 0 0.42rem;
}

.strategy-call-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.strategy-testimonial-card {
  display: flex;
  gap: 0.66rem;
  align-items: flex-start;
  border-radius: 12px;
  border: 1px solid rgba(142, 178, 232, 0.3);
  background: linear-gradient(165deg, rgba(9, 24, 49, 0.92), rgba(5, 16, 32, 0.94));
  padding: 0.72rem;
}

.strategy-testimonial-avatar {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0ca72, #d49f1f);
  color: #1f1507;
  font-weight: 700;
  font-size: 0.86rem;
}

.strategy-testimonial-card h3 {
  margin: 0;
  color: #f0ca72;
  font-size: 0.9rem;
}

.strategy-testimonial-card p {
  margin: 0.28rem 0 0;
  color: #c8daf1;
  font-size: 0.8rem;
  line-height: 1.5;
}

.strategy-testimonial-card-video {
  position: relative;
  padding-left: 2.4rem;
}

.strategy-video-play {
  position: absolute;
  left: 0.68rem;
  top: 0.66rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(240, 202, 114, 0.55);
  color: #f0ca72;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
}

.strategy-call-faq {
  padding: 0.42rem 0 3.65rem;
}

.strategy-call-faq-wrap {
  border-radius: 18px;
  border: 1px solid rgba(137, 171, 225, 0.24);
  background:
    radial-gradient(120% 96% at 90% 0%, rgba(53, 125, 238, 0.12) 0%, rgba(53, 125, 238, 0) 55%),
    linear-gradient(160deg, rgba(3, 12, 28, 0.97) 0%, rgba(2, 10, 24, 0.98) 100%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
  padding: 1rem;
}

.strategy-call-faq-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 0.82rem;
}

.strategy-call-faq-head h2 {
  margin: 0.38rem 0 0;
  color: #f4e3b9;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
}

.strategy-faq-list {
  display: grid;
  gap: 0.65rem;
}

.strategy-faq-list-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.strategy-faq-item {
  border-radius: 10px;
  border: 1px solid rgba(143, 179, 233, 0.28);
  background: rgba(7, 21, 42, 0.78);
  padding: 0.74rem 0.82rem;
}

.strategy-faq-item summary {
  cursor: pointer;
  color: #f0ca72;
  font-weight: 600;
  font-size: 0.94rem;
  list-style: none;
}

.strategy-faq-item summary::-webkit-details-marker {
  display: none;
}

.strategy-faq-item summary::after {
  content: "+";
  float: right;
  color: #9dc0ea;
  font-weight: 700;
}

.strategy-faq-item[open] summary::after {
  content: "-";
}

.strategy-faq-item p {
  margin: 0.6rem 0 0;
  color: #c8daf1;
  font-size: 0.88rem;
  line-height: 1.58;
}

.strategy-call-bottom-cta {
  text-align: center;
  margin-top: 0.92rem;
  padding-top: 0.92rem;
  border-top: 1px solid rgba(141, 177, 233, 0.2);
}

.strategy-call-bottom-cta p {
  color: #c8daf1;
  margin: 0 0 0.72rem;
}

.strategy-call-bottom-cta-bar {
  margin-top: 1.05rem;
  border: 1px solid rgba(240, 202, 114, 0.36);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(18, 31, 56, 0.98), rgba(8, 20, 39, 0.98));
  padding: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.72rem;
}

.strategy-call-bottom-cta-bar p {
  margin: 0;
  text-align: left;
}

/* Conversion optimization page */
.conversion-services-section {
  padding: 1.15rem 0 3.75rem;
}
.conversion-services-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(141, 177, 233, 0.22);
  background:
    radial-gradient(120% 86% at 85% 14%, rgba(62, 132, 246, 0.16) 0%, rgba(62, 132, 246, 0) 58%),
    radial-gradient(132% 96% at 8% 100%, rgba(26, 82, 178, 0.18) 0%, rgba(26, 82, 178, 0) 62%),
    linear-gradient(165deg, rgba(2, 6, 14, 0.99) 0%, rgba(4, 12, 28, 0.99) 55%, rgba(2, 10, 22, 0.98) 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(175, 206, 250, 0.05);
}
.conversion-services-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(116deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 38%),
    radial-gradient(140% 112% at 0% 100%, rgba(0, 0, 0, 0.45) 0%, transparent 58%);
}
.conversion-services-head {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.35rem 1rem 0.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.conversion-services-head .label-tag {
  color: #9dbfe9;
}
.conversion-services-head h2 {
  color: #edf5ff;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  margin: 0.35rem 0 0.4rem;
}
.conversion-services-head p {
  color: #b8cce8;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}
.conversion-services-grid {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.conversion-service-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 0.95rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(136, 174, 232, 0.34);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(42, 112, 223, 0.12) 0%, rgba(42, 112, 223, 0) 60%),
    linear-gradient(168deg, rgba(8, 22, 44, 0.9) 0%, rgba(5, 16, 32, 0.94) 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.conversion-service-card:hover {
  border-color: rgba(240, 201, 110, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}
.conversion-service-chevron {
  flex-shrink: 0;
  width: 0;
  height: 0;
  margin-top: 0.35rem;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #34c759;
  filter: drop-shadow(0 0 6px rgba(52, 199, 89, 0.35));
}
.conversion-service-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f0c978;
  line-height: 1.25;
}
.conversion-service-body p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #c5d8ef;
}
.conversion-services-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.25rem 1rem 1.5rem;
  border-top: 1px solid rgba(136, 174, 232, 0.2);
}
.conversion-services-cta p {
  color: #c8daf1;
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
}

@media (max-width: 960px) {
  .conversion-services-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ══════════════════════════════════════════════════════════
   VIDEO PROOF SECTION
══════════════════════════════════════════════════════════ */
.video-proof-section {
  padding-top: 1.35rem;
}
.video-proof-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(130, 168, 224, 0.14);
  background:
    radial-gradient(120% 96% at 88% 6%, rgba(47, 118, 234, 0.16) 0%, rgba(47, 118, 234, 0) 58%),
    linear-gradient(160deg, rgba(2, 10, 26, 0.99) 0%, rgba(3, 14, 35, 0.99) 54%, rgba(2, 12, 30, 0.98) 100%);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(183, 211, 251, 0.03);
}
.video-proof-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(116deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 36%),
    radial-gradient(140% 112% at 0% 100%, rgba(0, 0, 0, 0.35) 0%, transparent 58%);
}
.video-proof-head {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.1rem 1rem 0.35rem;
}
.video-proof-head-outside {
  padding: 0 1rem 0.8rem;
}
.video-proof-head h2 {
  color: #f0ca72;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  font-weight: 700;
  margin-bottom: 0.28rem;
}
.video-proof-head p {
  color: #c3d7ef;
  font-size: 0.9rem;
}
.video-proof-carousel {
  position: relative;
  padding: 0.8rem 1.1rem 1.05rem;
}
.video-proof-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 14px;
}
.video-proof-track {
  --video-columns: 3;
  --video-gap: 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--video-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.1rem 0.1rem 0.15rem;
  scrollbar-width: none;
}
.video-proof-track::-webkit-scrollbar {
  display: none;
}
.video-proof-card {
  flex: 0 0 calc((100% - (var(--video-gap) * (var(--video-columns) - 1))) / var(--video-columns));
  min-width: 280px;
  scroll-snap-align: start;
  border-radius: 14px;
  border: none;
  background:
    radial-gradient(116% 84% at 50% 0%, rgba(42, 111, 220, 0.12) 0%, rgba(42, 111, 220, 0) 62%),
    linear-gradient(165deg, rgba(7, 21, 44, 0.86) 0%, rgba(5, 17, 36, 0.93) 100%);
  padding: 0.5rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(198, 219, 251, 0.03);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.video-proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28), 0 0 16px rgba(58, 133, 244, 0.1);
}
.video-proof-frame {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid rgba(142, 183, 236, 0.18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.33), inset 0 1px 0 rgba(193, 216, 255, 0.08);
  margin-bottom: 0.55rem;
  aspect-ratio: 16 / 9;
  background: #091427;
}
.video-proof-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(241, 196, 83, 0.16) 0%, rgba(241, 196, 83, 0) 35%),
    linear-gradient(180deg, rgba(6, 19, 40, 0.05) 0%, rgba(6, 19, 40, 0.22) 100%);
  opacity: 0.88;
  transition: opacity .3s ease;
}
.video-proof-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-proof-card:hover .video-proof-frame::after {
  opacity: 0.55;
}
.video-proof-quote {
  color: #d3e3f8;
  font-size: 0.87rem;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 0.2rem;
  min-height: 2.3em;
}
.video-proof-name {
  color: #f0ca72;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}
.video-proof-channel-link {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.video-proof-channel-link:hover {
  color: #ffd98a;
  transform: translateY(-1px);
}
.video-proof-arrow {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border-radius: 50%;
  border: 1px solid rgba(143, 184, 238, 0.48);
  background: linear-gradient(155deg, rgba(8, 25, 52, 0.98) 0%, rgba(6, 18, 38, 0.98) 100%);
  color: #dbe9fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}
.video-proof-arrow-prev { left: 8px; }
.video-proof-arrow-next { right: 8px; }
.video-proof-arrow span {
  font-size: 1.45rem;
  line-height: 1;
  margin-top: -1px;
}
.video-proof-arrow:hover {
  transform: translateY(calc(-50% - 1px));
  border-color: rgba(212, 160, 23, 0.56);
  color: #f2cf7a;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.33), 0 0 16px rgba(212, 160, 23, 0.16);
}
.video-proof-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  transform: none;
}

/* ══════════════════════════════════════════════════════════
   CLIENT SUCCESS STORIES
══════════════════════════════════════════════════════════ */
.client-stories-section {
  padding-top: 1.2rem;
}
/* Wider reading width so three cards fill the row professionally */
.client-stories-section > .container {
  max-width: min(1320px, 100%);
}
.client-stories-wrap {
  position: relative;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  width: 100%;
}
.client-stories-wrap::before {
  content: none;
}
.client-stories-head {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.35rem 1rem 0.95rem;
}
.client-stories-head h2 {
  color: #f0ca72;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  font-weight: 700;
  margin-bottom: 0.28rem;
}
.client-stories-head p {
  color: #c2d6ed;
  font-size: 0.9rem;
}
.client-stories-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
  padding: 0 0 0.3rem;
  width: 100%;
}
/* Homepage: larger cards, balanced spacing, full-width row */
.client-stories-grid--home {
  gap: clamp(1.1rem, 2.2vw, 1.85rem);
  align-items: stretch;
}
.client-stories-grid--home .client-story-card {
  padding: 1.55rem 1.35rem 1.45rem;
  min-height: 310px;
  border-radius: 16px;
}
.client-stories-grid--home .client-story-avatar {
  width: 96px;
  height: 96px;
  margin-bottom: 1rem;
}
.client-stories-grid--home .client-story-quote {
  font-size: 1.02rem;
  line-height: 1.42;
  min-height: 4.35em;
}
.client-stories-grid--home .client-story-name {
  font-size: 1.12rem;
}
.client-stories-grid--home .client-story-brand {
  font-size: 0.96rem;
}
.client-stories-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.35rem 1rem 0.5rem;
  clear: both;
}
.client-stories-more-btn {
  padding: 0.78rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.client-stories-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

/* Standalone client reviews page */
.client-reviews-page .navbar .container {
  justify-content: flex-start;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.client-reviews-page .nav-links {
  flex: 1;
  justify-content: center;
}
@media (min-width: 769px) {
  .client-reviews-page .hamburger {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .client-reviews-page .navbar .container {
    justify-content: space-between;
  }
  .client-reviews-page .nav-links {
    flex: none;
  }
}

.client-reviews-page {
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(46, 117, 232, 0.14) 0%, transparent 45%),
    radial-gradient(80% 50% at 100% 40%, rgba(212, 160, 23, 0.06) 0%, transparent 42%),
    var(--bg-base);
}

@keyframes client-reviews-hero-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes client-reviews-glow-shift {
  0%, 100% { opacity: 0.55; transform: translate(-5%, -8%) scale(1); }
  50% { opacity: 0.85; transform: translate(5%, 4%) scale(1.05); }
}

.client-reviews-page .client-reviews-hero {
  position: relative;
  overflow: hidden;
  padding: 5.35rem 0 2.1rem;
  border-bottom: 1px solid rgba(139, 178, 234, 0.12);
  background:
    linear-gradient(180deg, rgba(4, 14, 32, 0.98) 0%, rgba(2, 8, 20, 0.92) 55%, rgba(1, 7, 19, 0.55) 100%);
}

.client-reviews-hero-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 85%;
  background:
    radial-gradient(closest-side, rgba(240, 202, 114, 0.12) 0%, transparent 72%),
    radial-gradient(closest-side, rgba(46, 117, 232, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: client-reviews-glow-shift 14s ease-in-out infinite;
}

.client-reviews-page .client-reviews-hero .container {
  position: relative;
  z-index: 1;
}

.client-reviews-hero-inner {
  max-width: 38rem;
  margin: 0 auto;
  padding-top: 0.35rem;
  text-align: center;
}

.client-reviews-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(184, 207, 233, 0.78);
  margin-bottom: 0.55rem;
  animation: client-reviews-hero-in 0.55s ease 0.06s both;
}

.client-reviews-page .client-reviews-hero h1 {
  color: #f0ca72;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 40px rgba(212, 160, 23, 0.1);
  animation: client-reviews-hero-in 0.6s ease 0.1s both;
}

.client-reviews-title-line {
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(240, 202, 114, 0.95), rgba(212, 160, 23, 0.5), transparent);
  animation: client-reviews-hero-in 0.55s ease 0.14s both;
}

.client-reviews-lead {
  color: #c2d6ed;
  font-size: clamp(0.9rem, 1.25vw, 1.02rem);
  max-width: 32rem;
  margin: 0 auto 0.25rem;
  line-height: 1.6;
  animation: client-reviews-hero-in 0.6s ease 0.18s both;
}

.client-reviews-page .client-reviews-section {
  padding-top: 0.75rem;
  padding-bottom: 4rem;
}

.client-reviews-page .client-reviews-section > .container {
  max-width: min(1320px, 100%);
}

.client-reviews-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.15rem, 2vw, 1.75rem);
  padding: 0.65rem 0 0.35rem;
  width: 100%;
}

/* Last row: single card (7 in a 3-column grid, etc.) */
.client-reviews-page .client-reviews-grid .client-story-card:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
  max-width: min(100%, 520px);
  width: 100%;
  justify-self: center;
}

.client-reviews-page .client-review-card {
  padding: 1.5rem 1.25rem 1.4rem;
  min-height: 300px;
  border-radius: 18px;
  border: 1px solid rgba(139, 178, 234, 0.18);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(46, 117, 232, 0.11) 0%, rgba(46, 117, 232, 0) 58%),
    linear-gradient(168deg, rgba(10, 28, 52, 0.92) 0%, rgba(5, 16, 36, 0.96) 100%);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.client-reviews-page .client-review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 202, 114, 0.28);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(212, 160, 23, 0.08),
    0 0 32px rgba(46, 117, 232, 0.1);
}

.client-reviews-page .client-review-card .client-story-avatar {
  width: 96px;
  height: 96px;
  margin-bottom: 1.05rem;
  border-width: 3px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.client-reviews-page .client-review-card .client-story-quote {
  font-size: 1.02rem;
  line-height: 1.42;
  min-height: 4.2em;
}

.client-reviews-page .client-review-card .client-story-name {
  font-size: 1.1rem;
}

.client-reviews-page .client-review-card .client-story-brand {
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  .client-reviews-hero-glow,
  .client-reviews-eyebrow,
  .client-reviews-title-line,
  .client-reviews-page .client-reviews-hero h1,
  .client-reviews-lead {
    animation: none !important;
  }
}
.client-story-card {
  border-radius: 14px;
  border: 1px solid rgba(139, 178, 234, 0.14);
  background:
    radial-gradient(118% 84% at 50% 0%, rgba(46, 117, 232, 0.09) 0%, rgba(46, 117, 232, 0) 62%),
    linear-gradient(165deg, rgba(8, 22, 45, 0.8) 0%, rgba(6, 18, 38, 0.88) 100%);
  padding: 1.3rem 1rem 1.22rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(198, 219, 251, 0.03);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.client-story-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 160, 23, 0.22);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24), 0 0 14px rgba(61, 137, 248, 0.08);
}
.client-story-avatar {
  width: 84px;
  height: 84px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  border: 2px solid rgba(240, 202, 114, 0.78);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.2) 0%, transparent 45%),
    linear-gradient(145deg, #1b335d 0%, #11223f 100%);
  overflow: hidden;
}
.client-story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.client-story-quote {
  color: #d5e5fa;
  font-size: 0.98rem;
  line-height: 1.35;
  min-height: 4.1em;
  margin-bottom: 0.88rem;
}
.client-story-name {
  color: #f0ca72;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: auto;
}
.client-story-brand {
  color: #b8cfe9;
  font-size: 0.93rem;
  margin-top: 0.2rem;
}

/* ══════════════════════════════════════════════════════════
   READY TO SCALE CTA
══════════════════════════════════════════════════════════ */
.scale-cta-section {
  padding-top: 1.25rem;
}
.scale-cta-wrap {
  position: relative;
  overflow: visible;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.scale-cta-wrap::before {
  content: none;
}
.scale-cta-head {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.2rem 1rem 0.95rem;
}
.scale-cta-head-outside {
  padding: 0 1rem 0.65rem;
}
.scale-cta-head h2 {
  color: #f0ca72;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 700;
  margin-bottom: 0.32rem;
}
.scale-cta-head p {
  color: #c2d7ee;
  font-size: 0.92rem;
  max-width: 760px;
  margin: 0 auto;
}
.scale-cta-panel {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 2rem));
  margin: 1rem auto 0;
  border-radius: 16px;
  border: 1px solid rgba(212, 160, 23, 0.42);
  background:
    radial-gradient(118% 90% at 50% 0%, rgba(232, 184, 48, 0.12) 0%, rgba(232, 184, 48, 0) 62%),
    linear-gradient(165deg, rgba(8, 23, 47, 0.88) 0%, rgba(6, 18, 37, 0.92) 100%);
  padding: 1.05rem 1rem 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 222, 171, 0.08);
  animation: growthCardReveal 0.62s ease both;
}
.scale-cta-list {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
}
.scale-cta-list li {
  display: grid;
  gap: 0.12rem;
  padding-left: 1.5rem;
  position: relative;
}
.scale-cta-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #f0ca72;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(212, 160, 23, 0.3);
}
.scale-cta-list strong {
  color: #f2dfba;
  font-size: 1.18rem;
  line-height: 1.2;
}
.scale-cta-list span {
  color: #c4d8ef;
  font-size: 0.92rem;
  line-height: 1.45;
}
.scale-cta-btn {
  display: flex;
  justify-content: center;
  width: min(420px, 100%);
  margin: 0 auto;
  font-size: 1.05rem;
  padding: 0.82rem 1.2rem;
  box-shadow: 0 8px 22px rgba(212, 160, 23, 0.34);
}
.scale-cta-foot {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.95rem 1rem 1.12rem;
}
.scale-cta-foot p {
  color: #e8f2ff;
  font-size: 1.55rem;
  line-height: 1.25;
  margin-bottom: 0.38rem;
}
.scale-cta-stars {
  color: #f0ca72;
  font-size: 1.4rem;
  letter-spacing: 0.18rem;
  margin-bottom: 0.1rem;
  animation: starPulse 2.1s ease-in-out infinite;
}
.scale-cta-foot span {
  color: #c6d8ef;
  font-size: 1.02rem;
  font-weight: 500;
}
.scale-cta-accent-line {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 1rem));
  margin: 0.62rem auto 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(240, 202, 114, 0.06) 0%,
    rgba(240, 202, 114, 0.92) 18%,
    rgba(255, 220, 140, 1) 50%,
    rgba(240, 202, 114, 0.92) 82%,
    rgba(240, 202, 114, 0.06) 100%
  );
  box-shadow: 0 0 18px rgba(240, 202, 114, 0.45), 0 0 34px rgba(212, 160, 23, 0.24);
}

/* ══════════════════════════════════════════════════════════
   CORE SERVICES
══════════════════════════════════════════════════════════ */
.services-intro {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; align-items: center; margin-bottom: 3rem;
}
.services-intro-left { position: relative; }
.services-intro-right { color: var(--text-2); }
.services-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.service-card {
  background: linear-gradient(145deg, #081828 0%, #071524 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}
.service-card:hover {
  background: linear-gradient(145deg, #0c2035 0%, #0a1c30 100%);
  border-color: rgba(212,160,23,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 25px rgba(0,40,160,0.12);
}
.service-card .card-icon { background: rgba(232,160,32,0.08); }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p  { font-size: 0.88rem; margin-bottom: 1.25rem; }
.learn-more {
  font-size: 0.82rem; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap var(--transition);
}
.learn-more:hover { gap: 0.6rem; }

/* ══════════════════════════════════════════════════════════
   OPTIMIZATION GRID (2×2)
══════════════════════════════════════════════════════════ */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-header p { margin-top: 0.75rem; font-size: 1rem; }
.opt-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem;
}

/* ══════════════════════════════════════════════════════════
   ADVANCED SCALING
══════════════════════════════════════════════════════════ */
.scaling-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.scaling-group-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
  border-left: 3px solid var(--gold); padding-left: 0.75rem;
}
.scaling-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.scaling-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  transition: all var(--transition);
  cursor: default;
}
.scaling-item:hover {
  border-color: rgba(232,160,32,0.25);
  background: var(--bg-card-h);
  transform: translateY(-2px);
}
.scaling-item .icon {
  width: 38px; height: 38px;
  background: rgba(232,160,32,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.scaling-item .icon svg { width: 18px; height: 18px; }
.scaling-item-title { font-size: 0.85rem; font-weight: 600; }
.scaling-item-sub   { font-size: 0.72rem; color: var(--text-3); }

/* ══════════════════════════════════════════════════════════
   RESULTS SECTION
══════════════════════════════════════════════════════════ */
.results-section {
  background: linear-gradient(135deg, rgba(5,14,28,0.9) 0%, rgba(7,18,36,0.9) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  position: relative; overflow: hidden;
}
.results-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,40,160,0.1) 0%, transparent 70%);
}
.results-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}
.result-item { padding: 1rem; }
.result-value {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--text-1); line-height: 1;
  margin-bottom: 0.5rem;
}
.result-value .prefix { color: var(--gold); }
.result-value .suffix { color: var(--teal); }
.result-label { font-size: 0.85rem; color: var(--text-2); font-weight: 500; }
.results-divider { width: 1px; background: var(--border); }

/* ══════════════════════════════════════════════════════════
   CASE STUDIES
══════════════════════════════════════════════════════════ */
.case-studies-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem;
  flex-wrap: wrap; gap: 1rem;
}
.cs-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.cs-card {
  background: linear-gradient(145deg, #081828 0%, #071524 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.cs-card:hover {
  border-color: rgba(212,160,23,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 25px rgba(0,40,160,0.1);
}
.cs-revenue {
  font-size: 2rem; font-weight: 900; color: var(--text-1); line-height: 1;
}
.cs-period {
  font-size: 0.75rem; color: var(--text-3); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.cs-acos-row {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem;
}
.cs-acos-label { font-size: 0.7rem; color: var(--text-3); font-weight: 600; letter-spacing: 0.06em; }
.cs-acos-value { font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.cs-divider { height: 1px; background: var(--border); margin-bottom: 1.25rem; }
.cs-metrics { display: flex; gap: 1.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.cs-metric-label { font-size: 0.62rem; color: var(--text-3); }
.cs-metric-val   { font-size: 0.9rem; font-weight: 700; }
.cs-platform {
  font-size: 0.78rem; color: var(--text-3); font-weight: 500;
  border-top: 1px solid var(--border); padding-top: 0.85rem;
}

/* ══════════════════════════════════════════════════════════
   VIDEO TESTIMONIALS
══════════════════════════════════════════════════════════ */
.video-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.video-card:hover {
  border-color: rgba(232,160,32,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.video-wrap {
  position: relative; width: 100%; padding-top: 56.25%;
  background: #040c18;
}
.video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.video-info { padding: 1.1rem 1.25rem; }
.video-info strong { font-size: 0.9rem; display: block; margin-bottom: 0.15rem; }
.video-info span   { font-size: 0.75rem; color: var(--text-3); }

/* ══════════════════════════════════════════════════════════
   TEXT TESTIMONIALS
══════════════════════════════════════════════════════════ */
.text-testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}
.testi-card:hover {
  border-color: rgba(232,160,32,0.2);
  transform: translateY(-3px);
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.9rem; display: flex; gap: 2px; }
.testi-stars .star { color: var(--gold); }
.testi-content { font-size: 0.88rem; color: var(--text-2); margin-bottom: 1.25rem; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 600; }
.testi-role { font-size: 0.72rem; color: var(--text-3); }

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(232,160,32,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(232,160,32,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem; color: var(--gold);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.82rem; }

/* ══════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start;
}
.pricing-card {
  background: linear-gradient(155deg, #081828 0%, #060f1e 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 4px 28px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,160,23,0.25);
  box-shadow: 0 16px 50px rgba(0,0,0,0.55), 0 0 30px rgba(0,40,160,0.12);
}
.pricing-card.featured {
  border-color: rgba(212,160,23,0.5);
  border-top-color: rgba(212,160,23,0.6);
  background: linear-gradient(155deg, #0c1f38 0%, #091628 100%);
  box-shadow: 0 0 50px rgba(212,160,23,0.12), 0 8px 40px rgba(0,0,0,0.5);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; font-size: 0.68rem; font-weight: 700;
  padding: 0.3rem 1rem; border-radius: 20px;
  white-space: nowrap;
}
.pricing-platform {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem;
}
.pricing-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; }
.pricing-price {
  display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 1.75rem;
}
.pricing-price .currency { font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.pricing-price .amount   { font-size: 2.8rem; font-weight: 900; color: var(--text-1); line-height: 1; }
.pricing-price .period   { font-size: 0.82rem; color: var(--text-3); }
.pricing-features {
  list-style: none; margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.85rem; color: var(--text-2);
  padding: 0.55rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.pricing-features li::before {
  content: '✓';
  color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem;
}

/* ══════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(12,27,48,0.9) 0%, rgba(15,32,64,0.9) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(232,160,32,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p  { margin-bottom: 2rem; }
.cta-buttons    { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer {
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(212,175,55,0.25);
  background: rgba(4,12,24,0.85);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.85rem; margin: 1rem 0 1.5rem; max-width: 280px; color: #fff; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: all var(--transition);
}
.footer-social-icon:hover {
  background: rgba(212,175,55,0.18);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-social-icon svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff;
  padding-bottom: 0.65rem; margin-bottom: 1.25rem;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold); border-radius: 2px;
}

.footer-col ul { list-style: none; }
.footer-col ul li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
}
.footer-col ul li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.footer-col ul li a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: #fff;
  padding: 0.6rem 0;
  transition: color var(--transition);
}
.footer-col ul li a::after {
  content: '›';
  font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.82rem; color: #fff;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
}
.footer-contact-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
.footer-icon-wrap {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.5);
  display: flex; align-items: center; justify-content: center;
}
.footer-icon-wrap svg { width: 15px; height: 15px; color: var(--gold); }
.footer-contact-item .footer-wa-link {
  color: inherit; text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-item .footer-wa-link:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.2);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: #fff; }

/* ══════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════════════════════════ */
.mobile-nav {
  display: none; position: fixed; top: 0; right: -100%; bottom: 0;
  width: 280px; z-index: 1100;
  background: #040d1c;
  border-left: 1px solid var(--border);
  padding: 4.5rem 2rem 2rem;
  flex-direction: column; gap: 1.5rem;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { right: 0; display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 600; color: #ffffff;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav-close {
  position: absolute; top: 1rem; right: 1rem;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.mobile-nav-close:hover {
  background: rgba(212,160,23,0.15);
  border-color: rgba(212,160,23,0.4);
  color: var(--gold-light);
}
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 1050;
  background: rgba(0,0,0,0.6);
}
.nav-overlay.open { display: block; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease both; }
.delay-1    { animation-delay: 0.1s; }
.delay-2    { animation-delay: 0.2s; }
.delay-3    { animation-delay: 0.3s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes shimmerSweep {
  0%   { transform: translateX(0) rotate(22deg); }
  100% { transform: translateX(280%) rotate(22deg); }
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
@keyframes growthCardReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes caseproofFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.18; }
  50% { transform: translateY(-12px) translateX(8px); opacity: 0.3; }
}
@keyframes starPulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* ── Counter animation ────── */
.count-up { transition: all 0.3s ease; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid         { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image-wrap   { max-width: 560px; margin: 0 auto; }
  .hero-highlights   { justify-content: center; }
  .services-intro    { grid-template-columns: 1fr; gap: 1.5rem; }
  .results-grid      { grid-template-columns: repeat(2,1fr); }
  .why-grid          { grid-template-columns: repeat(2,1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .trust-card-icon   { width: 132px; height: 98px; }
  .trust-card h3     { font-size: 0.95rem; }
  .struggle-grid     { grid-template-columns: repeat(2, 1fr); }
  .struggle-icon     { width: 112px; height: 84px; }
  .struggle-card:nth-child(2) { border-right: none; }
  .struggle-card:nth-child(-n+2) { border-bottom: none; }
  .growth-system-grid { grid-template-columns: 1fr; }
  .results-growth-grid { grid-template-columns: 1fr; }
  .caseproof-item { grid-template-columns: 1fr; }
  .caseproof-item-head { flex-direction: column; align-items: flex-start; }
  .caseproof-metrics { grid-template-columns: 1fr 1fr; }
  .caseproof-content h3 { font-size: 1.25rem; }
  .choose-us-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .packages-grid { grid-template-columns: 1fr; }
  .advanced-scaling-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .advanced-scaling-grid-two { grid-template-columns: 1fr; }
  .video-proof-track { --video-columns: 2; }
  .client-stories-grid,
  .client-reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Three featured cards: center the lone card on row 2 */
  .client-stories-grid--home .client-story-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: min(100%, 540px);
    width: 100%;
    justify-self: center;
  }
  .scale-cta-foot p { font-size: 1.28rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links           { display: none; }
  .navbar .btn-nav-gold { display: none; }
  .hamburger           { display: flex; }
  .hero                { padding: 6rem 0 3.2rem; }
  .hero-ctas           { flex-direction: column; }
  .btn-hero-gold,
  .btn-hero-outline    { width: 100%; justify-content: center; }
  .hero-market-note    {
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    white-space: normal;
  }
  .hero-market-note::before,
  .hero-market-note::after {
    width: clamp(45px, 14vw, 100px);
  }
  .hero-highlights     { justify-content: flex-start; }
  .hero-highlights span { width: calc(50% - 0.6rem); white-space: normal; }
  .trust-cards         { grid-template-columns: 1fr; }
  .trust-card-icon     { width: 118px; height: 88px; }
  .trust-card h3       { font-size: 1rem; }
  .struggle-grid       { grid-template-columns: 1fr; }
  .struggle-card       { border-right: none !important; border-bottom: none; }
  .struggle-icon       { width: 102px; height: 76px; }
  .struggle-wrap h2    { font-size: 1.2rem; }
  .struggle-note       { font-size: 0.86rem; }
  .growth-system-head  { padding: 1.2rem 1rem 0.9rem; }
  .growth-system-grid  { padding: 0 0.9rem 1rem; }
  .growth-system-card  { padding: 1rem 0.9rem 0.85rem; }
  .results-growth-head { padding: 1.2rem 1rem 0.9rem; }
  .results-growth-grid { padding: 0 0.85rem 0.95rem; }
  .results-growth-card { padding: 0.95rem 0.85rem 0.85rem; }
  .results-growth-icon { width: 114px; height: 82px; }
  .caseproof-wrap      { width: min(1400px, 100% - 1.4rem); }
  .caseproof-head      { padding: 1rem 0.9rem 0.65rem; }
  .caseproof-list      { padding: 0 0.75rem; }
  .caseproof-item      { padding: 0.65rem; min-height: 0; }
  .caseproof-image img { min-height: 136px; }
  .caseproof-metrics   { grid-template-columns: 1fr; }
  .caseproof-content h3 { font-size: 1.02rem; }
  .caseproof-content p { font-size: 0.8rem; }
  .caseproof-cta p     { font-size: 0.9rem; }
  .case-study-narrative { grid-template-columns: 1fr; padding: 0 0.75rem 0.75rem; }
  .choose-us-head      { padding: 1.05rem 0.85rem 0.75rem; }
  .choose-us-grid      { grid-template-columns: 1fr; padding: 0 0.75rem 0.85rem; }
  .choose-us-card      { padding: 0.88rem 0.7rem 0.82rem; }
  .choose-us-icon      { width: 90px; height: 66px; }
  .choose-us-card h3   { font-size: 1.06rem; }
  .choose-us-card p    { font-size: 0.8rem; }
  .choose-us-cta       { padding: 0.2rem 0.85rem 0.95rem; }
  .choose-us-cta p     { font-size: 0.88rem; margin-bottom: 0.55rem; }
  .packages-head       { padding: 1.1rem 0.85rem 0.75rem; }
  .packages-grid       { padding: 0 0.75rem 0.82rem; }
  .package-card        { padding: 0.9rem 0.75rem 0.78rem; }
  .package-card h3     { font-size: 1rem; }
  .package-price       { font-size: 1.72rem; }
  .package-desc        { font-size: 0.8rem; min-height: 0; }
  .package-list li     { font-size: 0.8rem; }
  .package-link        { font-size: 0.9rem; }
  .packages-bottom-line { font-size: 0.92rem; padding: 0.05rem 0.85rem 0.55rem; }
  .packages-scaling-cta { padding: 0 0.85rem 1rem; gap: 0.7rem; }
  .packages-scaling-cta--dual {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 22rem;
  }
  .packages-scaling-block {
    grid-template-rows: auto auto;
    width: 100%;
  }
  .packages-scaling-caption { font-size: 0.84rem; padding: 0 0.25rem; }
  .packages-scaling-btn { justify-content: center; }
  .strategy-call-hero { padding: 4.4rem 0 1.35rem; }
  .strategy-call-hero-grid { grid-template-columns: 1fr; }
  .strategy-call-hero-copy { padding: 1rem 0.88rem; }
  .strategy-call-booking-card { padding: 0.95rem 0.88rem; }
  .strategy-calendar-body { grid-template-columns: 1fr; }
  .strategy-calendar-left { border-right: 0; border-bottom: 1px solid rgba(145, 181, 234, 0.2); }
  .strategy-call-grid-four { grid-template-columns: 1fr; }
  .strategy-call-panel { padding: 0.75rem; }
  .strategy-call-faq-wrap { padding: 0.76rem; }
  .strategy-call-testimonials { grid-template-columns: 1fr; }
  .strategy-faq-list-two-col { grid-template-columns: 1fr; }
  .strategy-call-bottom-cta-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .strategy-call-bottom-cta-bar p { text-align: center; }
  .strategy-faq-item { padding: 0.65rem 0.72rem; }
  .strategy-faq-item summary { font-size: 0.87rem; line-height: 1.44; }
  .strategy-faq-item p { font-size: 0.82rem; }
  .advanced-scaling-head { padding: 1.1rem 0.85rem 0.72rem; }
  .advanced-scaling-group { padding: 0 0.75rem 0.68rem; }
  .advanced-scaling-group-title { font-size: 1rem; margin-bottom: 0.45rem; }
  .advanced-scaling-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .advanced-scaling-card { padding: 0.82rem 0.72rem 0.74rem; }
  .advanced-scaling-card h4 { font-size: 0.95rem; }
  .advanced-scaling-card p { font-size: 0.79rem; }
  .advanced-scaling-link { font-size: 0.88rem; }
  .advanced-scaling-page .scaling-page-hero { padding: 4.45rem 0 1.65rem; }
  .conversion-optimization-page .scaling-page-hero { padding: 4.45rem 0 1.65rem; }
  .case-study-page .scaling-page-hero { padding: 4.45rem 0 1.65rem; }
  .scaling-page-breadcrumb { margin-bottom: 0.65rem; font-size: 0.74rem; }
  .advanced-scaling-section--page { padding: 0.85rem 0 2.75rem; }
  .scaling-page-bottom-cta { padding: 1.1rem 0.75rem 0.25rem; }
  .scaling-page-bottom-cta p { font-size: 0.88rem; }
  .conversion-services-section { padding: 0.85rem 0 2.75rem; }
  .conversion-services-head { padding: 1.1rem 0.85rem 0.45rem; }
  .conversion-services-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.35rem 0.75rem 0.85rem;
  }
  .conversion-service-card { padding: 0.88rem 0.8rem 0.92rem; }
  .conversion-service-body h3 { font-size: 1rem; }
  .conversion-service-body p { font-size: 0.8rem; }
  .conversion-services-cta { padding: 1rem 0.75rem 1.25rem; }
  .video-proof-head { padding: 1rem 0.85rem 0.62rem; }
  .video-proof-head-outside { padding: 0 0.85rem 0.62rem; }
  .video-proof-head p { font-size: 0.8rem; }
  .video-proof-carousel { padding: 0.35rem 0.7rem 0.88rem; }
  .video-proof-track { --video-columns: 1; --video-gap: 0.7rem; }
  .video-proof-card { min-width: 230px; }
  .video-proof-arrow { width: 36px; height: 36px; }
  .video-proof-arrow-prev { left: 4px; }
  .video-proof-arrow-next { right: 4px; }
  .video-proof-arrow span { font-size: 1.18rem; }
  .video-proof-quote { font-size: 0.86rem; }
  .video-proof-name { font-size: 0.82rem; }
  .client-stories-head { padding: 1.1rem 0.85rem 0.72rem; }
  .client-stories-head p { font-size: 0.82rem; }
  .client-stories-grid,
  .client-reviews-grid { grid-template-columns: 1fr; gap: 0.75rem; padding: 0 0 0.7rem; }
  .client-stories-grid--home .client-story-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
  .client-reviews-page .client-reviews-grid .client-story-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
  .client-reviews-page .client-review-card {
    min-height: 0;
    padding: 1.05rem 0.85rem 0.95rem;
  }
  .client-reviews-page .client-review-card .client-story-avatar {
    width: 72px;
    height: 72px;
  }
  .client-reviews-page .client-review-card .client-story-quote {
    font-size: 0.88rem;
    min-height: 0;
  }
  .client-reviews-page .client-reviews-hero {
    padding: 5rem 0 1.65rem;
  }
  .client-reviews-hero-inner {
    padding-top: 0.25rem;
  }
  .client-story-card { padding: 1rem 0.78rem 0.92rem; min-height: 0; }
  .client-stories-grid--home .client-story-card { min-height: 0; padding: 1.05rem 0.85rem 0.95rem; }
  .client-stories-grid--home .client-story-avatar { width: 72px; height: 72px; }
  .client-stories-grid--home .client-story-quote { font-size: 0.88rem; min-height: 0; }
  .client-stories-grid--home .client-story-name { font-size: 0.98rem; }
  .client-stories-grid--home .client-story-brand { font-size: 0.84rem; }
  .client-story-avatar { width: 66px; height: 66px; margin-bottom: 0.58rem; }
  .client-story-quote { font-size: 0.86rem; min-height: 0; }
  .client-story-name { font-size: 0.95rem; }
  .client-story-brand { font-size: 0.82rem; }
  .scale-cta-head { padding: 1.05rem 0.85rem 0.78rem; }
  .scale-cta-head-outside { padding: 0 0.85rem 0.68rem; }
  .scale-cta-head p { font-size: 0.82rem; }
  .scale-cta-panel { width: min(820px, calc(100% - 1.4rem)); margin-top: 0.82rem; padding: 0.9rem 0.78rem 0.84rem; }
  .scale-cta-list { gap: 0.6rem; margin-bottom: 0.85rem; }
  .scale-cta-list strong { font-size: 1rem; }
  .scale-cta-list span { font-size: 0.82rem; }
  .scale-cta-btn { font-size: 0.9rem; padding: 0.72rem 1rem; }
  .scale-cta-foot { padding: 0.82rem 0.85rem 0.95rem; }
  .scale-cta-foot p { font-size: 1rem; }
  .scale-cta-stars { font-size: 1.12rem; }
  .scale-cta-foot span { font-size: 0.84rem; }
  .scale-cta-accent-line { width: calc(100% - 0.8rem); height: 3px; margin: 0.52rem auto 0; }
  .services-cards      { grid-template-columns: 1fr; }
  .opt-grid            { grid-template-columns: 1fr; }
  .scaling-grid        { grid-template-columns: 1fr; }
  .scaling-items       { grid-template-columns: 1fr 1fr; }
  .cs-cards            { grid-template-columns: 1fr; }
  .video-grid          { grid-template-columns: 1fr; }
  .text-testi-grid     { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; }
  .why-grid            { grid-template-columns: 1fr 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .footer-brand,
  .footer-col {
    padding: 2rem 0;
    position: relative;
  }
  .footer-brand::after,
  .footer-col:not(:last-child)::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(212,175,55,0.3) 60%, transparent 100%);
  }
  .case-studies-header { flex-direction: column; }
  .trust-items         { gap: 1.5rem; }
  .results-grid        { grid-template-columns: repeat(2,1fr); gap: 1rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .why-grid       { grid-template-columns: 1fr; }
  .scaling-items  { grid-template-columns: 1fr; }
  .hero-highlights span { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-card,
  .struggle-card,
  .growth-system-card,
  .trust-card-icon,
  .struggle-icon,
  .growth-system-icon-img {
    animation: none !important;
  }
  .trust-card,
  .struggle-card {
    transition-duration: 0.01ms !important;
  }
}

/* ═══ Amazon case study landing (case-study-amazon.php) ═══ */
.case-study-amazon-page {
  --csa-up: #3ee8a8;
  --csa-gold: #e8b84a;
  --csa-gold-deep: #c49216;
  --csa-gold-glow: rgba(232, 184, 74, 0.22);
  --csa-surface: rgba(8, 18, 36, 0.92);
  --csa-surface-2: rgba(4, 12, 26, 0.96);
  --csa-border: rgba(120, 155, 200, 0.18);
  --csa-border-gold: rgba(232, 184, 74, 0.28);
  --csa-muted: #9db3cc;
  font-family: 'Poppins', system-ui, sans-serif;
}
.case-study-amazon-page .csa-main {
  overflow-x: hidden;
  padding-top: clamp(5.35rem, 10vh, 6.5rem);
}
.case-study-amazon-page .csa-container-wide {
  max-width: 1400px;
}
.case-study-amazon-page .navbar.csa-navbar {
  padding: 0.85rem 0;
  background: rgba(6, 12, 22, 0.88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(232, 184, 74, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03), 0 12px 40px rgba(0, 0, 0, 0.35);
}
.case-study-amazon-page .navbar.csa-navbar.scrolled {
  padding: 0.65rem 0;
  background: rgba(4, 10, 20, 0.94);
}
.case-study-amazon-page .csa-navbar .logo-icon {
  width: clamp(160px, 28vw, 200px);
  height: 46px;
}
.case-study-amazon-page .csa-navbar .logo-icon img {
  object-fit: contain;
  object-position: left center;
}
.case-study-amazon-page .csa-nav-links a.csa-nav-active {
  color: var(--csa-gold);
  font-weight: 500;
  box-shadow: inset 0 -2px 0 var(--csa-gold);
}
.case-study-amazon-page .csa-nav-links a.csa-nav-active::after {
  display: none;
}
.case-study-amazon-page .btn-nav-gold.btn-sm,
.case-study-amazon-page .csa-header-cta.btn-nav-gold {
  color: #0a0e14;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 10px;
  padding: 0.55rem 1.15rem;
  background: linear-gradient(145deg, #f0c44a 0%, #d4a017 48%, #b88912 100%);
  border: 1px solid rgba(255, 220, 140, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2),
    0 4px 16px rgba(212, 160, 23, 0.35);
}
.case-study-amazon-page .btn-nav-gold.btn-sm:hover,
.case-study-amazon-page .csa-header-cta.btn-nav-gold:hover {
  color: #05070a;
}
.case-study-amazon-page .csa-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}
.case-study-amazon-page .csa-header-cta-ic {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  opacity: 0.92;
}
.case-study-amazon-page .csa-shell {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}
.case-study-amazon-page .csa-hero {
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(1.5rem, 3vw, 2.35rem);
  background:
    radial-gradient(100% 90% at 12% 0%, rgba(232, 184, 74, 0.06) 0%, transparent 42%),
    radial-gradient(80% 60% at 88% 10%, rgba(46, 117, 232, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #070d16 0%, #05070a 45%, #04060c 100%);
}
.case-study-amazon-page .csa-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
}
.case-study-amazon-page .csa-hero-left,
.case-study-amazon-page .csa-hero-right {
  align-self: start;
  min-width: 0;
}
.case-study-amazon-page .csa-kicker {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.case-study-amazon-page .csa-kicker span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--csa-gold);
}
.case-study-amazon-page .csa-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 184, 74, 0.5), transparent);
  max-width: 200px;
}
.case-study-amazon-page .csa-hero-left h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2.65vw, 2.45rem);
  font-weight: 800;
  line-height: 1.16;
  color: #f2f6fb;
  letter-spacing: -0.028em;
}
.case-study-amazon-page .csa-hero-left h1 em {
  font-style: normal;
  display: inline;
  color: var(--csa-gold);
  font-size: 1.06em;
  font-weight: 800;
  text-shadow: 0 0 42px var(--csa-gold-glow);
}
.case-study-amazon-page .csa-hero-desc {
  margin: 1rem 0 0;
  color: var(--csa-muted);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.68;
  max-width: 48ch;
}
.case-study-amazon-page .csa-hero-metrics {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.case-study-amazon-page .csa-hero-focus {
  margin-top: 1.25rem;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(120, 155, 200, 0.16);
  background: linear-gradient(168deg, rgba(10, 20, 40, 0.88) 0%, rgba(4, 10, 22, 0.94) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.28),
    0 12px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  max-width: 100%;
}
.case-study-amazon-page .csa-hero-focus-label {
  margin: 0 0 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--csa-gold);
}
.case-study-amazon-page .csa-hero-focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.case-study-amazon-page .csa-hero-focus-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #c8d8ec;
}
.case-study-amazon-page .csa-hero-focus-list .csa-svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--csa-up);
}
.case-study-amazon-page .csa-hero-focus-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #8aa0ba;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(120, 155, 200, 0.12);
}
.case-study-amazon-page .csa-hero-pills {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.case-study-amazon-page .csa-hero-pills span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #dce6f2;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 184, 74, 0.22);
  background: rgba(3, 10, 22, 0.65);
}
.case-study-amazon-page .csa-mini-metric {
  border-radius: 14px;
  border: 1px solid var(--csa-border-gold);
  background: linear-gradient(168deg, rgba(14, 26, 48, 0.95) 0%, rgba(6, 14, 28, 0.98) 100%);
  padding: 0.75rem 0.5rem 0.7rem;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 14px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.case-study-amazon-page .csa-mini-metric-ic {
  display: flex;
  justify-content: center;
  margin-bottom: 0.4rem;
  color: var(--csa-gold);
  opacity: 0.95;
}
.case-study-amazon-page .csa-mini-metric .csa-svg {
  width: 22px;
  height: 22px;
}
.case-study-amazon-page .csa-mini-metric strong {
  display: block;
  color: #f4f7fc;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.case-study-amazon-page .csa-mini-metric > span:last-child {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  color: #7d94b0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.case-study-amazon-page .csa-dash-card {
  border-radius: 18px;
  border: 1px solid rgba(232, 184, 74, 0.38);
  box-shadow:
    0 0 0 1px rgba(232, 184, 74, 0.06),
    0 0 48px rgba(232, 184, 74, 0.08),
    0 28px 56px rgba(0, 0, 0, 0.45);
  background:
    radial-gradient(100% 55% at 50% 0%, rgba(232, 184, 74, 0.09) 0%, transparent 55%),
    linear-gradient(168deg, rgba(12, 24, 44, 0.98) 0%, rgba(4, 10, 22, 1) 55%, rgba(3, 8, 18, 1) 100%);
  padding: 1.2rem 1.1rem 1rem;
}
.case-study-amazon-page .csa-dash-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.95rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(120, 155, 200, 0.12);
}
.case-study-amazon-page .csa-dash-label {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8aa4c4;
  font-weight: 600;
}
.case-study-amazon-page .csa-dash-rev {
  margin: 0;
  color: #e2eaf5;
  font-size: 0.9rem;
  line-height: 1.45;
}
.case-study-amazon-page .csa-dash-rev strong {
  color: var(--csa-gold);
  font-size: 1.12rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.case-study-amazon-page .csa-up {
  color: var(--csa-up);
  font-weight: 700;
  font-size: 0.8rem;
  margin-left: 0.25rem;
  font-variant-numeric: tabular-nums;
}
.case-study-amazon-page .csa-dash-chart-mini {
  width: 128px;
  flex-shrink: 0;
  border-radius: 10px;
  padding: 0.35rem 0.25rem 0.2rem;
  background: rgba(2, 8, 18, 0.65);
  border: 1px solid rgba(120, 155, 200, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.case-study-amazon-page .csa-dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.case-study-amazon-page .csa-dash-kpis > div {
  border-radius: 11px;
  border: 1px solid rgba(120, 155, 200, 0.16);
  background: linear-gradient(180deg, rgba(8, 18, 36, 0.9) 0%, rgba(4, 12, 26, 0.95) 100%);
  padding: 0.55rem 0.45rem 0.5rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.case-study-amazon-page .csa-dash-kpis span:first-child {
  display: block;
  font-size: 0.58rem;
  color: #7d94b0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.case-study-amazon-page .csa-dash-kpis strong {
  display: block;
  color: #f4f8ff;
  font-size: 0.92rem;
  margin: 0.18rem 0 0.08rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.case-study-amazon-page .csa-dash-kpis .csa-up {
  display: block;
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
}
.case-study-amazon-page .csa-dash-sub {
  margin: 0 0 0.45rem;
  font-size: 0.62rem;
  color: #7d94b0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.case-study-amazon-page .csa-bar-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 5px;
  height: 72px;
  padding: 0 0.2rem 0;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(120, 155, 200, 0.1);
  position: relative;
}
.case-study-amazon-page .csa-bar-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 74, 0.15), transparent);
  pointer-events: none;
}
.case-study-amazon-page .csa-bar-row span {
  flex: 1;
  min-width: 5px;
  max-width: 100%;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #f4d06a 0%, var(--csa-gold-deep) 100%);
  opacity: 0.92;
  box-shadow: 0 0 12px rgba(232, 184, 74, 0.2);
}
.case-study-amazon-page .csa-dash-img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(120, 155, 200, 0.18);
  background: radial-gradient(circle at 50% 0%, rgba(232, 184, 74, 0.06), #030810);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.case-study-amazon-page .csa-dash-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(320px, 42vw);
  object-fit: contain;
  object-position: center bottom;
  margin: 0 auto;
}
body.case-study-amazon-page::before {
  background:
    radial-gradient(90% 55% at 50% -10%, rgba(232, 184, 74, 0.07) 0%, transparent 42%),
    radial-gradient(70% 45% at 100% 30%, rgba(30, 80, 160, 0.12) 0%, transparent 45%),
    linear-gradient(165deg, #060a12 0%, #05070a 40%, #04060c 100%);
}
.case-study-amazon-page .csa-meta-bar {
  width: 100%;
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.98) 0%, rgba(4, 10, 20, 1) 100%);
  border-top: 1px solid rgba(232, 184, 74, 0.1);
  border-bottom: 1px solid rgba(120, 155, 200, 0.12);
  padding: 1rem 0;
}
.case-study-amazon-page .csa-meta-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem 1.25rem;
}
.case-study-amazon-page .csa-meta-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--csa-gold);
  padding: 0.35rem 0;
}
@media (min-width: 1101px) {
  .case-study-amazon-page .csa-meta-item:not(:last-child) {
    border-right: 1px solid rgba(120, 155, 200, 0.12);
    padding-right: clamp(0.75rem, 2vw, 1.5rem);
    margin-right: clamp(0.5rem, 1.5vw, 1rem);
  }
}
.case-study-amazon-page .csa-meta-item .csa-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 0.95;
}
.case-study-amazon-page .csa-meta-item span {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7d94b0;
  font-weight: 600;
}
.case-study-amazon-page .csa-meta-item strong {
  display: block;
  color: #eef3f9;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 0.12rem;
}
.case-study-amazon-page .csa-section {
  padding: clamp(2rem, 4vw, 2.85rem) 0;
  background: transparent;
}
.case-study-amazon-page .csa-section-alt {
  background: rgba(5, 10, 20, 0.65);
  border-top: 1px solid rgba(120, 155, 200, 0.07);
  border-bottom: 1px solid rgba(120, 155, 200, 0.07);
}
.case-study-amazon-page .csa-section-title {
  text-align: center;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  font-weight: 700;
  color: #f2f6fb;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  max-width: 100%;
  position: relative;
  padding-bottom: 0.65rem;
}
.case-study-amazon-page .csa-section-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.5rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--csa-gold), transparent);
  opacity: 0.85;
}
.case-study-amazon-page .csa-three,
.case-study-amazon-page .csa-four {
  display: grid;
  gap: 1rem;
}
.case-study-amazon-page .csa-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.case-study-amazon-page .csa-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.case-study-amazon-page .csa-card {
  border-radius: 16px;
  border: 1px solid var(--csa-border-gold);
  background: linear-gradient(168deg, rgba(14, 26, 48, 0.92) 0%, rgba(5, 12, 26, 0.96) 100%);
  padding: 1.15rem 1.05rem;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.25),
    0 16px 36px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.case-study-amazon-page .csa-card:hover {
  border-color: rgba(232, 184, 74, 0.42);
  box-shadow:
    0 0 0 1px rgba(232, 184, 74, 0.12),
    0 20px 44px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.case-study-amazon-page .csa-card-tall {
  min-height: 176px;
}
.case-study-amazon-page .csa-card-ic {
  display: flex;
  margin-bottom: 0.65rem;
  color: var(--csa-gold);
}
.case-study-amazon-page .csa-card-ic .csa-svg {
  width: 26px;
  height: 26px;
}
.case-study-amazon-page .csa-card h3 {
  margin: 0 0 0.5rem;
  color: var(--csa-gold);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.case-study-amazon-page .csa-card p {
  margin: 0;
  color: var(--csa-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}
.case-study-amazon-page .csa-results-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--csa-border-gold);
  background: linear-gradient(168deg, rgba(12, 24, 44, 0.96) 0%, rgba(4, 10, 22, 0.99) 100%);
  padding: clamp(1rem, 2.5vw, 1.35rem);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 22px 50px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.case-study-amazon-page .csa-results-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.35rem 0.5rem 0.35rem 0;
}
.case-study-amazon-page .csa-results-big {
  margin: 0.25rem 0 0.55rem;
  font-size: clamp(2.1rem, 4.2vw, 2.85rem);
  font-weight: 800;
  color: var(--csa-gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  text-shadow: 0 0 48px var(--csa-gold-glow);
}
.case-study-amazon-page .csa-results-chart {
  height: 148px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(120, 155, 200, 0.14);
  background: linear-gradient(180deg, rgba(4, 12, 26, 0.9) 0%, rgba(2, 8, 18, 0.95) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.case-study-amazon-page .csa-area-svg-lg {
  width: 100%;
  height: 100%;
  display: block;
}
.case-study-amazon-page .csa-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.case-study-amazon-page .csa-result-tile {
  border-radius: 14px;
  border: 1px solid rgba(120, 155, 200, 0.14);
  background: rgba(5, 14, 30, 0.75);
  padding: 0.85rem 0.75rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.case-study-amazon-page .csa-result-tile .csa-svg {
  width: 22px;
  height: 22px;
  color: var(--csa-gold);
  margin-bottom: 0.45rem;
}
.case-study-amazon-page .csa-result-tile h3 {
  margin: 0 0 0.3rem;
  color: #f0f4fa;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.case-study-amazon-page .csa-result-delta {
  margin: 0;
  font-size: 0.72rem;
  color: #7d94b0;
  line-height: 1.45;
}
.case-study-amazon-page .csa-quote-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.15rem;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(232, 184, 74, 0.35);
  background: linear-gradient(168deg, rgba(14, 26, 48, 0.94) 0%, rgba(5, 12, 24, 0.98) 100%);
  padding: 1.25rem 1.35rem;
  box-shadow:
    0 0 40px rgba(232, 184, 74, 0.06),
    0 18px 42px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.case-study-amazon-page .csa-quote-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f4d06a 0%, var(--csa-gold-deep) 100%);
  color: #1a1204;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.35);
}
.case-study-amazon-page .csa-stars {
  margin: 0 0 0.4rem;
  color: var(--csa-gold);
  letter-spacing: 0.14em;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(232, 184, 74, 0.25));
}
.case-study-amazon-page .csa-quote-text {
  margin: 0;
  color: #e8f0fa;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.55;
  font-weight: 500;
}
.case-study-amazon-page .csa-quote-by {
  margin: 0.6rem 0 0;
  color: var(--csa-gold);
  font-size: 0.88rem;
  font-weight: 600;
}
.case-study-amazon-page .csa-quote-mark {
  font-size: 4.75rem;
  line-height: 1;
  color: rgba(232, 184, 74, 0.1);
  font-family: Georgia, serif;
  align-self: center;
}
.case-study-amazon-page .csa-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  padding-top: 0.65rem;
}
.case-study-amazon-page .csa-timeline-line {
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(232, 184, 74, 0.4),
    rgba(232, 184, 74, 0.4) 7px,
    transparent 7px,
    transparent 14px
  );
  z-index: 0;
  opacity: 0.85;
}
.case-study-amazon-page .csa-timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.4rem;
}
.case-study-amazon-page .csa-timeline-ic {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  border: 1px solid rgba(232, 184, 74, 0.42);
  background: linear-gradient(180deg, rgba(12, 22, 42, 0.98) 0%, rgba(5, 12, 26, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--csa-gold);
  box-shadow:
    0 0 24px rgba(232, 184, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.case-study-amazon-page .csa-timeline-ic .csa-svg {
  width: 22px;
  height: 22px;
}
.case-study-amazon-page .csa-timeline-step h3 {
  margin: 0 0 0.4rem;
  color: var(--csa-gold);
  font-size: 0.9rem;
  font-weight: 700;
}
.case-study-amazon-page .csa-timeline-step p {
  margin: 0;
  color: var(--csa-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.case-study-amazon-page .csa-final {
  padding: clamp(2rem, 4vw, 2.75rem) 0 1.5rem;
}
.case-study-amazon-page .csa-final-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(232, 184, 74, 0.42);
  background: linear-gradient(145deg, rgba(14, 28, 52, 0.96) 0%, rgba(4, 10, 22, 0.99) 100%);
  padding: clamp(1.15rem, 3vw, 1.5rem) clamp(1.2rem, 3vw, 1.65rem);
  box-shadow:
    0 0 48px rgba(232, 184, 74, 0.08),
    0 22px 48px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.case-study-amazon-page .csa-final-copy h2 {
  margin: 0 0 0.5rem;
  color: #f2f6fb;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.case-study-amazon-page .csa-final-copy > p {
  margin: 0 0 0.7rem;
  color: var(--csa-muted);
  font-size: 0.9rem;
  max-width: 44ch;
  line-height: 1.55;
}
.case-study-amazon-page .csa-final-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.case-study-amazon-page .csa-final-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e2eaf5;
  font-size: 0.84rem;
}
.case-study-amazon-page .csa-final-bullets .csa-svg {
  width: 17px;
  height: 17px;
  color: var(--csa-up);
  flex-shrink: 0;
}
.case-study-amazon-page .csa-final-action {
  text-align: center;
}
.case-study-amazon-page .csa-final-btn {
  min-width: 240px;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.85rem 1.35rem;
  color: #0a0e14;
  background: linear-gradient(145deg, #f0c44a 0%, #d4a017 50%, #b88912 100%);
  border: 1px solid rgba(255, 220, 140, 0.45);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}
.case-study-amazon-page .csa-final-btn:hover {
  color: #05070a;
}
.case-study-amazon-page .csa-final-note {
  margin: 0.55rem 0 0;
  font-size: 0.76rem;
  color: #7d94b0;
}
.case-study-amazon-page .csa-foot-strip {
  width: 100%;
  background: rgba(3, 6, 12, 0.98);
  border-top: 1px solid rgba(120, 155, 200, 0.1);
  padding: 0.75rem 0;
}
.case-study-amazon-page .csa-foot-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}
.case-study-amazon-page .csa-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #dce6f2;
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.case-study-amazon-page .csa-foot-link:hover {
  color: var(--csa-gold);
}
.case-study-amazon-page .csa-svg-inline {
  width: 18px;
  height: 18px;
}
.case-study-amazon-page .csa-back-wrap {
  padding: 1.15rem 0 0;
  text-align: center;
}
.case-study-amazon-page .nav-links.csa-nav-links {
  gap: clamp(1.1rem, 2.2vw, 1.85rem);
}
.case-study-amazon-page .nav-links a {
  color: #aabfd8;
  font-weight: 500;
  font-size: 0.875rem;
}
.case-study-amazon-page .nav-links a:hover {
  color: #eef4fc;
}
.case-study-amazon-page footer {
  border-top: 1px solid rgba(120, 155, 200, 0.1);
  background: linear-gradient(180deg, rgba(5, 10, 20, 0.97) 0%, #03060c 100%);
}
.case-study-amazon-page footer .footer-bottom {
  border-top-color: rgba(120, 155, 200, 0.08);
}

@media (max-width: 1100px) {
  .case-study-amazon-page .csa-hero-grid {
    grid-template-columns: 1fr;
  }
  .case-study-amazon-page .csa-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-study-amazon-page .csa-meta-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-study-amazon-page .csa-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-study-amazon-page .csa-results-panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .case-study-amazon-page .csa-three {
    grid-template-columns: 1fr;
  }
  .case-study-amazon-page .csa-four {
    grid-template-columns: 1fr;
  }
  .case-study-amazon-page .csa-dash-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-study-amazon-page .csa-timeline {
    grid-template-columns: 1fr;
  }
  .case-study-amazon-page .csa-timeline-line {
    display: none;
  }
  .case-study-amazon-page .csa-quote-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .case-study-amazon-page .csa-quote-mark {
    display: none;
  }
  .case-study-amazon-page .csa-quote-avatar {
    margin: 0 auto;
  }
  .case-study-amazon-page .csa-header-cta {
    font-size: 0.72rem;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }
}

body.testimonials-page {
  overflow-x: hidden;
}

/* ═══ Testimonials landing (testimonials.php) ═══ */
.testimonials-page .tst-main {
  overflow-x: hidden;
  padding-top: clamp(5rem, 10vh, 6.25rem);
}
.testimonials-page .tst-navbar {
  border-bottom: 1px solid rgba(130, 168, 220, 0.12);
  background: rgba(4, 10, 20, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.testimonials-page .tst-hero {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(120, 155, 200, 0.1);
  background:
    radial-gradient(90% 70% at 15% 0%, rgba(212, 160, 23, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, rgba(5, 12, 26, 0.98) 0%, rgba(2, 6, 14, 1) 100%);
}
.testimonials-page .tst-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(70% 50% at 90% 20%, rgba(46, 117, 232, 0.12) 0%, transparent 55%);
}
.testimonials-page .tst-hero-inner {
  position: relative;
  z-index: 1;
}
.testimonials-page .tst-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  min-width: 0;
}
.testimonials-page .tst-hero-copy {
  min-width: 0;
}
.testimonials-page .tst-hero-media {
  min-width: 0;
}
.testimonials-page .tst-kicker {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.testimonials-page .tst-kicker span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.testimonials-page .tst-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  max-width: 200px;
  background: linear-gradient(90deg, rgba(232, 184, 74, 0.55), transparent);
}
.testimonials-page .tst-hero-copy h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  color: #f2f6fb;
  letter-spacing: -0.03em;
}
.testimonials-page .tst-hero-copy h1 em {
  font-style: normal;
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(212, 160, 23, 0.15);
}
.testimonials-page .tst-lead {
  margin: 1rem 0 0;
  color: #9db3cc;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  max-width: 46ch;
}
.testimonials-page .tst-trust-row {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}
.testimonials-page .tst-trust-row li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #c8d8ec;
  max-width: 14rem;
}
.testimonials-page .tst-trust-ic {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(212, 160, 23, 0.35);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 18, 36, 0.6);
}
.testimonials-page .tst-trust-ic svg {
  width: 14px;
  height: 14px;
}
.testimonials-page .tst-video-card {
  border-radius: 16px;
  border: 1px solid rgba(212, 160, 23, 0.35);
  overflow: hidden;
  background: linear-gradient(165deg, rgba(10, 22, 42, 0.95) 0%, rgba(4, 10, 22, 0.98) 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 160, 23, 0.08);
}
.testimonials-page .tst-video-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #030810;
}
.testimonials-page .tst-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.testimonials-page .tst-video-cap {
  padding: 1rem 1.1rem 1.1rem;
  border-top: 1px solid rgba(120, 155, 200, 0.12);
}
.testimonials-page .tst-video-cap-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
}
.testimonials-page .tst-video-cap-sub {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: #9db3cc;
}
.testimonials-page .tst-stats {
  padding: 1.1rem 0;
  background: rgba(3, 8, 18, 0.92);
  border-bottom: 1px solid rgba(120, 155, 200, 0.1);
}
.testimonials-page .tst-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.testimonials-page .tst-stat {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #dce6f2;
}
.testimonials-page .tst-stat-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(6, 14, 28, 0.8);
}
.testimonials-page .tst-stat-ic svg {
  width: 20px;
  height: 20px;
}
.testimonials-page .tst-stat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #f4f7fc;
}
.testimonials-page .tst-stat span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8aa0ba;
  margin-top: 0.1rem;
}
.testimonials-page .tst-reviews {
  padding: clamp(2.25rem, 5vw, 3.25rem) 0;
}
.testimonials-page .tst-section-title {
  text-align: center;
  margin: 0 0 1.75rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: #f2f6fb;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.65rem;
}
.testimonials-page .tst-section-title::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 0.5rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.testimonials-page .tst-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.testimonials-page .tst-card {
  border-radius: 14px;
  border: 1px solid rgba(120, 155, 200, 0.18);
  background: linear-gradient(168deg, rgba(12, 24, 44, 0.88) 0%, rgba(5, 12, 26, 0.95) 100%);
  padding: 1.1rem 1rem 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.testimonials-page .tst-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}
.testimonials-page .tst-quote-mark {
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-light);
  font-family: Georgia, serif;
  opacity: 0.85;
}
.testimonials-page .tst-stars {
  margin: 0;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}
.testimonials-page .tst-quote {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #dce6f2;
  font-weight: 400;
}
.testimonials-page .tst-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(120, 155, 200, 0.12);
}
.testimonials-page .tst-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.35), rgba(8, 22, 44, 0.9));
  border: 1px solid rgba(212, 160, 23, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-light);
  flex-shrink: 0;
}
.testimonials-page .tst-author-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.testimonials-page .tst-author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f4f7fc;
}
.testimonials-page .tst-author-role {
  font-size: 0.72rem;
  color: #8aa0ba;
}
.testimonials-page .tst-region {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 160, 23, 0.35);
  background: rgba(3, 10, 22, 0.6);
}
.testimonials-page .tst-cta {
  padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}
.testimonials-page .tst-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(1.15rem, 3vw, 1.5rem) clamp(1.2rem, 3vw, 1.75rem);
  border-radius: 16px;
  border: 1px solid rgba(212, 160, 23, 0.38);
  background: linear-gradient(145deg, rgba(12, 26, 48, 0.95) 0%, rgba(4, 10, 22, 0.98) 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}
.testimonials-page .tst-cta-ic {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.35);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(6, 14, 28, 0.75);
}
.testimonials-page .tst-cta-ic svg {
  width: 26px;
  height: 26px;
}
.testimonials-page .tst-cta-copy {
  flex: 1;
  min-width: min(100%, 280px);
}
.testimonials-page .tst-cta-copy h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: #f2f6fb;
}
.testimonials-page .tst-cta-copy > p {
  margin: 0 0 0.75rem;
  color: #9db3cc;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 48ch;
}
.testimonials-page .tst-cta-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
}
.testimonials-page .tst-cta-bullets li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #dce6f2;
}
.testimonials-page .tst-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.testimonials-page .tst-cta-actions {
  text-align: center;
}
.testimonials-page .tst-cta-btn {
  font-weight: 700;
  padding: 0.75rem 1.35rem;
}
.testimonials-page .tst-cta-wa {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
}
.testimonials-page .tst-cta-wa a {
  color: #9db3cc;
  text-decoration: none;
}
.testimonials-page .tst-cta-wa a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .testimonials-page .tst-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .testimonials-page .tst-hero-media {
    order: -1;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .testimonials-page .tst-stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
  .testimonials-page .tst-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .testimonials-page .tst-main {
    padding-top: clamp(4.35rem, 11vw, 5.5rem);
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
  }
  .testimonials-page .navbar .logo-icon {
    width: clamp(128px, 46vw, 175px);
    height: 40px;
  }
  .testimonials-page .navbar .logo-icon img {
    object-fit: contain;
    object-position: left center;
  }
  .testimonials-page .tst-hero {
    padding: 1rem 0 1.35rem;
  }
  .testimonials-page .tst-hero-inner.container {
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
  }
  .testimonials-page .tst-hero-copy h1 {
    font-size: clamp(1.22rem, 6.8vw, 1.85rem);
    line-height: 1.18;
    word-wrap: break-word;
  }
  .testimonials-page .tst-lead {
    max-width: none;
    font-size: 0.9rem;
    margin-top: 0.75rem;
  }
  .testimonials-page .tst-trust-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: 1rem;
  }
  .testimonials-page .tst-trust-row li {
    max-width: none;
    width: 100%;
  }
  .testimonials-page .tst-video-card {
    border-radius: 12px;
  }
  .testimonials-page .tst-video-frame {
    aspect-ratio: 16 / 9;
  }
  .testimonials-page .tst-video-cap {
    padding: 0.85rem 0.9rem;
  }
  .testimonials-page .tst-stats {
    padding: 0.85rem 0;
  }
  .testimonials-page .tst-stats-inner {
    gap: 0.65rem;
  }
  .testimonials-page .tst-stat {
    gap: 0.5rem;
    min-width: 0;
  }
  .testimonials-page .tst-stat-ic {
    width: 36px;
    height: 36px;
  }
  .testimonials-page .tst-stat strong {
    font-size: 0.84rem;
  }
  .testimonials-page .tst-stat span {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }
  .testimonials-page .tst-reviews {
    padding: 1.65rem 0 2rem;
  }
  .testimonials-page .tst-reviews .container {
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
  }
  .testimonials-page .tst-section-title {
    font-size: clamp(1.12rem, 5vw, 1.45rem);
    margin-bottom: 1.25rem;
  }
  .testimonials-page .tst-card {
    padding: 0.95rem 0.8rem 0.9rem;
  }
  .testimonials-page .tst-quote {
    font-size: 0.82rem;
  }
  .testimonials-page .tst-author {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .testimonials-page .tst-cta .container {
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
  }
  .testimonials-page .tst-cta-inner {
    padding: 1rem 0.85rem;
    gap: 1rem;
  }
  .testimonials-page .tst-cta-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    box-sizing: border-box;
  }
  .testimonials-page .tst-cta-wa {
    font-size: 0.72rem;
    line-height: 1.45;
    padding: 0 0.15rem;
  }
  .testimonials-page .tst-cta-wa a {
    word-break: break-word;
  }
}
@media (max-width: 640px) {
  .testimonials-page .tst-stats-inner {
    grid-template-columns: 1fr;
  }
  .testimonials-page .tst-card-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-page .tst-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .testimonials-page .tst-cta-ic {
    margin: 0 auto;
  }
  .testimonials-page .tst-cta-copy {
    text-align: center;
  }
  .testimonials-page .tst-cta-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .testimonials-page .tst-cta-bullets {
    justify-content: center;
  }
}

/* ═══ Floating WhatsApp (site-wide) ═══ */
.whatsapp-float-btn {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 1040;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    0 0 0 3px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float-btn:hover {
  transform: scale(1.07);
  color: #fff;
  box-shadow:
    0 6px 22px rgba(37, 211, 102, 0.55),
    0 0 0 3px rgba(255, 255, 255, 0.18);
}
.whatsapp-float-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.whatsapp-float-btn__icon {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    width: 54px;
    height: 54px;
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
  }
  .whatsapp-float-btn__icon {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float-btn {
    transition: none;
  }
  .whatsapp-float-btn:hover {
    transform: none;
  }
}

@media print {
  .whatsapp-float-btn {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-page { background: var(--bg-base); }
.about-main section { padding: clamp(3.5rem, 6vw, 5rem) 0; }

.about-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.about-kicker--center { text-align: center; }
.about-kicker--dark { color: var(--gold-dark); }
.about-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

/* Hero */
.about-hero {
  position: relative;
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #010d1f 0%, #010c1c 55%, #020e22 100%);
  z-index: 0;
}
.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 40%, rgba(14, 48, 108, 0.25) 0%, transparent 65%);
}
.about-hero-inner { position: relative; z-index: 1; }
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.about-hero-copy h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.about-hero-lead {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.about-hero-cta { margin-bottom: 1.75rem; }
.about-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.about-hero-avatars {
  display: flex;
}
.about-hero-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-base);
  margin-left: -10px;
}
.about-hero-avatars img:first-child { margin-left: 0; }
.about-hero-trust p {
  font-size: 0.82rem;
  color: var(--text-2);
  margin: 0;
}
.about-hero-trust strong { color: var(--text-1); }

.about-hero-visual {
  position: relative;
  min-height: 320px;
}
.about-hero-logo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-hero-logo-frame img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
}
.about-hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  padding: 0 0.5rem;
}
.about-stat {
  background: rgba(8, 26, 48, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 0.65rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.about-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.2;
}
.about-stat span {
  font-size: 0.68rem;
  color: var(--text-2);
  line-height: 1.35;
}

/* Story */
.about-story { background: rgba(4, 12, 24, 0.5); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-story-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.about-story-copy > p {
  margin-bottom: 0.85rem;
  max-width: 32rem;
}
.about-values-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.about-values-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.about-value-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.about-value-ic svg { width: 20px; height: 20px; }
.about-values-list h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.about-values-list p {
  font-size: 0.84rem;
  margin: 0;
}

.about-story-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-story-media > img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-story-quote {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: rgba(6, 18, 36, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.about-quote-mark {
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
}
.about-story-quote p {
  font-size: 0.88rem;
  color: var(--text-1);
  margin: 0.35rem 0 0.5rem;
  line-height: 1.55;
}
.about-story-quote cite {
  font-size: 0.78rem;
  font-style: normal;
  color: var(--text-3);
}

/* Values cards */
.about-values-section {
  background: var(--bg-deeper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-values-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.about-value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.about-value-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.about-card-ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.about-card-ic svg { width: 22px; height: 22px; }
.about-value-card h3 {
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}
.about-value-card p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.55;
}

/* Expertise (light) */
.about-expertise {
  background: #f4f6f9;
  color: #1a2433;
}
.about-expertise .about-expertise-copy h2,
.about-expertise .about-service-card h3 {
  color: #0f1724;
}
.about-expertise .about-expertise-copy > p,
.about-expertise .about-service-card p {
  color: #4a5a6e;
}
.about-expertise-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}
.about-expertise-copy h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  margin-bottom: 0.85rem;
}
.about-expertise-copy > p {
  margin-bottom: 1.35rem;
  max-width: 28rem;
}
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.about-service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem;
  box-shadow: 0 4px 20px rgba(15, 23, 36, 0.08);
  border: 1px solid rgba(15, 23, 36, 0.06);
}
.about-service-ic {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #0f1724;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
}
.about-service-ic svg { width: 18px; height: 18px; }
.about-service-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.about-service-card p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

/* Trust */
.about-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-trust-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 1.5rem;
  max-width: 22rem;
}
.about-trust-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
.about-trust-icons li {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.about-trust-icons li > span:first-child {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-trust-icons svg { width: 20px; height: 20px; }
.about-trust-icons li > span:last-child {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-1);
}

.about-testimonial-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.5rem;
}
.about-quote-mark--lg {
  font-size: 3.5rem;
  display: block;
  margin-bottom: -0.5rem;
}
.about-testimonial-card blockquote p {
  font-size: 0.95rem;
  color: var(--text-1);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.about-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.about-testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-1);
}
.about-testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-3);
}
.about-testimonial-dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.25rem;
  justify-content: center;
}
.about-testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-3);
  opacity: 0.4;
}
.about-testimonial-dots .is-active {
  background: var(--gold);
  opacity: 1;
}

/* CTA bar */
.about-cta-bar {
  padding: 2rem 0 3.5rem;
}
.about-cta-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem 1.5rem;
  flex-wrap: wrap;
  padding: 1.35rem 1.5rem;
  background: rgba(8, 26, 48, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
}
.about-cta-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-cta-ic svg { width: 24px; height: 24px; }
.about-cta-text {
  flex: 1;
  min-width: 200px;
}
.about-cta-text h2 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 0.25rem;
}
.about-cta-text p {
  font-size: 0.82rem;
  margin: 0;
}

/* Nav active on about page */
.about-page .nav-links a[aria-current="page"] {
  color: var(--gold);
}
.about-page .nav-links a[aria-current="page"]::after {
  right: 0;
}

@media (max-width: 1024px) {
  .about-hero-grid,
  .about-story-grid,
  .about-expertise-grid,
  .about-trust-grid {
    grid-template-columns: 1fr;
  }
  .about-values-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-hero-stats {
    position: relative;
    bottom: auto;
    margin-top: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .about-hero-visual { min-height: auto; }
}

@media (max-width: 768px) {
  .about-hero { padding-top: 5.5rem; }
  .about-values-cards,
  .about-services-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-bar-inner {
    flex-direction: column;
    text-align: center;
  }
  .about-cta-bar-inner .btn { width: 100%; justify-content: center; }
  .about-story-quote {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
  }
  .about-story-media > img { min-height: 260px; }
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-page { background: var(--bg-base); }
.contact-main { padding-top: 5.5rem; }

.contact-section {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
}
.contact-map-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(212, 160, 23, 0.14) 1px, transparent 0);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, #000 20%, transparent 75%);
}
.contact-map-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400' fill='none'%3E%3Cpath stroke='%23d4a017' stroke-opacity='0.08' stroke-width='1' d='M120 180c40-60 120-90 200-70s140 80 160 140-60 120-140 130-200-40-220-100 0-200 0z'/%3E%3C/svg%3E") center / 90% auto no-repeat;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.contact-info-col h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 0.85rem;
  max-width: 22rem;
}
.contact-info-col h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.contact-lead {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 26rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 2rem;
}
.contact-methods li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-method-ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: rgba(212, 160, 23, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-ic svg { width: 22px; height: 22px; }
.contact-method-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-methods a,
.contact-method-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-1);
  transition: color var(--transition);
}
.contact-methods a:hover { color: var(--gold); }

.contact-availability {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-availability-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-availability-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-availability-ic svg { width: 20px; height: 20px; }
.contact-availability-item p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-2);
}
.contact-availability-item strong {
  color: var(--gold-light);
  font-weight: 700;
}
.contact-availability-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
.contact-availability-item--hours p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-3);
}

.contact-form-card {
  background: rgba(8, 26, 48, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.65rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.contact-form-head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-form-head-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-form-head-ic svg { width: 22px; height: 22px; }
.contact-form-head h2 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.contact-form-head p {
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
}

.contact-form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-field {
  margin-bottom: 1rem;
}
.contact-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 0.4rem;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text-1);
  background: rgba(4, 14, 28, 0.85);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-3);
}
.contact-field select {
  color: var(--text-2);
  cursor: pointer;
  appearance: none;
  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='%238fa8c8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}
.contact-field select option {
  background: var(--bg-card);
  color: var(--text-1);
}
.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}
.contact-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
}

.contact-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}
.contact-trust-badges li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-2);
}
.contact-trust-badges span:first-child {
  color: var(--gold);
  display: flex;
}
.contact-trust-badges svg { width: 16px; height: 16px; }

.contact-cta-bar {
  padding: 0 0 3.5rem;
}
.contact-cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-cta-copy h2 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-bottom: 0.35rem;
}
.contact-cta-copy p {
  font-size: 0.84rem;
  margin: 0;
  max-width: 28rem;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}
.btn-outline-gold:hover {
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.contact-cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.contact-page .nav-links a[aria-current="page"] {
  color: var(--gold);
}
.contact-page .nav-links a[aria-current="page"]::after {
  right: 0;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-availability-divider {
    display: none;
  }
  .contact-availability {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .contact-main { padding-top: 5rem; }
  .contact-form-row--two {
    grid-template-columns: 1fr;
  }
  .contact-cta-bar-inner {
    flex-direction: column;
    text-align: center;
  }
  .contact-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════ */
.services-page { background: var(--bg-base); }

.svc-main section:not(.svc-hero) { padding: clamp(3.5rem, 6vw, 5rem) 0; }

.svc-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.svc-hero {
  position: relative;
  padding: 0;
  margin-top: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #010d1f 0%, #010c1c 55%, #020e22 100%);
  pointer-events: none;
}
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 85% 50%, rgba(14, 60, 120, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 10% 90%, rgba(212, 160, 23, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.svc-hero-body {
  position: relative;
  z-index: 1;
  padding-top: 6.75rem;
}
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem 3rem;
  align-items: center;
  padding-bottom: 2.75rem;
}
.svc-hero-copy { max-width: 34rem; }
.svc-hero-copy h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.svc-hero-copy h1 em {
  font-style: normal;
  color: var(--gold-light);
  display: block;
}
.svc-hero-lead {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  color: var(--text-2);
}
.svc-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.svc-hero-pills li {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
  background: rgba(212, 160, 23, 0.08);
  color: var(--gold-light);
}
.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.svc-hero-outline-btn {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-1);
}
.svc-hero-outline-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.svc-hero-showcase {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.svc-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(8, 26, 48, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.svc-hero-card:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}
.svc-hero-card--accent {
  border-color: rgba(0, 180, 216, 0.25);
  background: rgba(6, 22, 42, 0.82);
}
.svc-hero-card--featured {
  border-color: var(--border-gold);
  background: linear-gradient(105deg, rgba(20, 45, 80, 0.9) 0%, rgba(8, 26, 48, 0.95) 100%);
  box-shadow: var(--glow-gold);
}
.svc-hero-card-badge {
  position: absolute;
  top: -8px;
  right: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.5rem;
  background: var(--gold);
  color: #0a1020;
  border-radius: 4px;
}
.svc-hero-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.svc-hero-card h2 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  line-height: 1.2;
}
.svc-hero-card p {
  font-size: 0.78rem;
  margin: 0;
  color: var(--text-3);
}
.svc-hero-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.svc-hero-card-link:hover { color: var(--gold-light); }

.svc-hero-stats-bar {
  border-top: 1px solid var(--border);
  background: rgba(4, 12, 24, 0.85);
  backdrop-filter: blur(8px);
}
.svc-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.35rem 0;
}
.svc-hero-stats li {
  text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid var(--border);
}
.svc-hero-stats li:last-child { border-right: none; }
.svc-hero-stats li strong {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 0.2rem;
}
.svc-hero-stats li span {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.35;
}

.svc-section-head { margin-bottom: 2.25rem; max-width: 34rem; }
.svc-section-head--center {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.svc-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}
.svc-section-head p { margin: 0; font-size: 0.92rem; }

.svc-core { background: rgba(4, 12, 24, 0.45); }
.svc-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.svc-core-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.svc-core-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--glow-gold);
}
.svc-core-card--featured {
  border-color: var(--border-gold);
  background: linear-gradient(165deg, rgba(13, 34, 64, 0.95) 0%, rgba(8, 26, 48, 0.98) 100%);
  box-shadow: var(--glow-gold);
}
.svc-core-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a1020;
  border-radius: 6px;
}
.svc-core-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.svc-core-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.svc-core-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 0.2rem;
}
.svc-core-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}
.svc-core-desc {
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.svc-core-features {
  margin-bottom: 1rem;
}
.svc-core-features li {
  font-size: 0.8rem;
  color: var(--text-2);
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
}
.svc-core-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.svc-core-highlight {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.svc-core-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  transition: color var(--transition);
}
.svc-core-link:hover { color: var(--gold-light); }

.svc-specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-specialty-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.svc-specialty-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.svc-specialty-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 0.85rem;
}
.svc-specialty-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.svc-specialty-card p {
  font-size: 0.83rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.svc-specialty-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
}
.svc-specialty-link:hover { color: var(--gold-light); }

.svc-process {
  background: var(--bg-deeper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.svc-process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.svc-process-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 0.75rem;
}
.svc-process-copy p {
  margin-bottom: 1.35rem;
  max-width: 26rem;
}
.svc-process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: svc-step;
}
.svc-process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.svc-process-step:hover { border-color: var(--border-gold); }
.svc-process-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(212, 160, 23, 0.35);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.svc-process-step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.svc-process-step p {
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.55;
}

.svc-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.svc-package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.svc-package-card--featured {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(13, 34, 64, 0.9) 0%, var(--bg-card) 100%);
  box-shadow: var(--glow-gold);
}
.svc-package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  background: var(--gold);
  color: #0a1020;
  border-radius: 6px;
  white-space: nowrap;
}
.svc-package-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.svc-package-from {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: 0.25rem;
}
.svc-package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  line-height: 1;
}
.svc-package-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-3);
}
.svc-package-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.svc-package-card ul li {
  font-size: 0.83rem;
  color: var(--text-2);
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
}
.svc-package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.svc-package-btn {
  width: 100%;
  justify-content: center;
}

.svc-cta {
  padding-bottom: 4rem;
}
.svc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow-gold);
}
.svc-cta-copy h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 0.35rem;
}
.svc-cta-copy p {
  margin: 0;
  font-size: 0.88rem;
  max-width: 28rem;
}
.svc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.services-page .nav-links a[aria-current="page"] {
  color: var(--gold);
}
.services-page .nav-links a[aria-current="page"]::after {
  right: 0;
}

@media (max-width: 1024px) {
  .svc-core-grid,
  .svc-specialty-grid,
  .svc-packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .svc-process-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .svc-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .svc-hero-copy { max-width: none; }
  .svc-hero-copy h1 em { display: inline; }
  .svc-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-hero-stats li:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .svc-hero-body { padding-top: 5.5rem; }
  .svc-hero-grid { padding-bottom: 2rem; }
  .svc-hero-actions { flex-direction: column; }
  .svc-hero-actions .btn { width: 100%; justify-content: center; }
  .svc-hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 0.5rem;
  }
  .svc-hero-stats li {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
  }
  .svc-hero-stats li:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  .svc-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .svc-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .svc-cta-actions .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   Case Studies Page  (.cs-page)
   ══════════════════════════════════════════════════════════════ */

/* ── Shared ─────────────────────────────────────────────────── */
.cs-main { padding-top: 4.5rem; }
.cs-gold { color: var(--gold-light); }
.cs-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,160,23,.1);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: .25rem .85rem;
  margin-bottom: 1rem;
}
.cs-section { padding: 5rem 0; }
.cs-section-alt { background: rgba(8,26,48,.45); }
.cs-section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.cs-section-head h2 { margin-top: .5rem; }

/* ── Hero ───────────────────────────────────────────────────── */
.cs-hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
.cs-hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(212,160,23,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cs-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.cs-hero-left { display: flex; flex-direction: column; gap: 1.4rem; }
.cs-hero-left h1 { font-size: clamp(2rem, 3.5vw, 3rem); }
.cs-hero-desc { color: var(--text-2); font-size: 1.05rem; line-height: 1.7; }
.cs-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.cs-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  font-size: .95rem;
}
.cs-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: var(--text-1);
  font-weight: 600;
  transition: border-color var(--transition), background var(--transition);
}
.cs-hero-btn-outline:hover { border-color: var(--gold); background: rgba(212,160,23,.08); }

/* Hero right */
.cs-hero-right { display: flex; flex-direction: column; gap: 1.25rem; }
.cs-stats-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
}
.cs-stats-row { display: flex; gap: 1.5rem; }
.cs-stat-item { flex: 1; }
.cs-stat-label { font-size: .75rem; color: var(--text-2); font-weight: 500; }
.cs-stat-val-row { display: flex; align-items: center; gap: .5rem; margin-top: .25rem; }
.cs-stat-val { font-size: 1.1rem; font-weight: 700; color: var(--text-1); }
.cs-badge-up {
  font-size: .7rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,.1);
  border-radius: 100px;
  padding: .1rem .45rem;
}
.cs-badge-down {
  font-size: .7rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,.1);
  border-radius: 100px;
  padding: .1rem .45rem;
}
.cs-hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cs-hero-img-wrap img { width: 100%; height: 260px; object-fit: cover; }

/* ── Featured Case Study Cards ──────────────────────────────── */
.cs-featured-section { background: var(--bg-deeper); }
.cs-section-sub { color: var(--text-2); font-size: .9rem; margin-top: .4rem; }

.cs-fcards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

/* Base card — equal height, no transforms */
.cs-fcard {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cs-fcard:hover { transform: translateY(-5px); }

/* Accent bar */
.cs-fcard-accent { height: 3px; width: 100%; flex-shrink: 0; }
.cs-fcard-amazon  .cs-fcard-accent  { background: linear-gradient(90deg,#f90,#e47911); }
.cs-fcard-tiktok  .cs-fcard-accent  { background: linear-gradient(90deg,#ee1d52,#69c9d0); }
.cs-fcard-reimburse .cs-fcard-accent{ background: linear-gradient(90deg,#22c55e,#16a34a); }

.cs-fcard-amazon:hover   { border-color: rgba(249,144,0,.4);   box-shadow: 0 12px 40px rgba(0,0,0,.45), 0 0 30px rgba(249,144,0,.07); }
.cs-fcard-tiktok:hover   { border-color: rgba(238,29,82,.35);  box-shadow: 0 12px 40px rgba(0,0,0,.45), 0 0 30px rgba(238,29,82,.06); }
.cs-fcard-reimburse:hover{ border-color: rgba(34,197,94,.35);  box-shadow: 0 12px 40px rgba(0,0,0,.45), 0 0 30px rgba(34,197,94,.06); }

/* Image area — fixed compact height */
.cs-fcard-img-wrap {
  position: relative;
  overflow: hidden;
  height: 175px;
  flex-shrink: 0;
}
.cs-fcard-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.cs-fcard:hover .cs-fcard-img-wrap img { transform: scale(1.05); }

/* Overlay: platform badge top-left, big stat bottom-left */
.cs-fcard-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,10,24,.9) 0%, rgba(4,10,24,.25) 52%, transparent 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: .6rem .75rem .75rem;
}
.cs-fcard-platform-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #f90; background: rgba(249,144,0,.14); border: 1px solid rgba(249,144,0,.28);
  border-radius: 100px; padding: .2rem .55rem; backdrop-filter: blur(4px); align-self: flex-start;
}
.cs-fcard-platform-tt  { color:#ee1d52; background:rgba(238,29,82,.14); border-color:rgba(238,29,82,.28); }
.cs-fcard-platform-re  { color:#22c55e; background:rgba(34,197,94,.14); border-color:rgba(34,197,94,.28); }

.cs-fcard-overlay-stat { display: flex; flex-direction: column; }
.cs-fcard-big-num { font-size: 1.5rem; font-weight: 900; color:#fff; line-height:1; text-shadow:0 2px 10px rgba(0,0,0,.55); }
.cs-num-green { color: #4ade80; }
.cs-fcard-big-label { font-size:.68rem; color:rgba(255,255,255,.65); font-weight:500; margin-top:.15rem; }

/* Card body — compact */
.cs-fcard-body {
  padding: 1rem 1rem 1.1rem;
  display: flex; flex-direction: column; gap: .7rem;
  flex: 1;
}
.cs-fcard-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem;
}
.cs-fcard-top h3 { font-size: .92rem; font-weight: 700; color: var(--text-1); line-height: 1.3; }
.cs-fcard-growth-pill {
  flex-shrink: 0;
  font-size: .65rem; font-weight: 800;
  padding: .18rem .5rem; border-radius: 100px;
  background: rgba(212,160,23,.12); color: var(--gold-light); border: 1px solid var(--border-gold);
  white-space: nowrap;
}
.cs-pill-tt    { background:rgba(238,29,82,.1);  color:#ee1d52; border-color:rgba(238,29,82,.3); }
.cs-pill-green { background:rgba(34,197,94,.1);  color:#4ade80; border-color:rgba(34,197,94,.3); }

/* Metric chips row */
.cs-fcard-chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.cs-chip {
  display: inline-flex; align-items: center; gap: .28rem;
  font-size: .68rem; font-weight: 500; color: var(--text-2);
  background: var(--bg-card-2); border: 1px solid var(--border);
  border-radius: 100px; padding: .22rem .6rem;
}

/* Card button */
.cs-fcard-btn {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  font-size: .82rem; font-weight: 700;
  color: var(--gold-light); background: rgba(212,160,23,.07);
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: .6rem 1rem;
  transition: background .2s, color .2s, border-color .2s;
  margin-top: auto;
}
.cs-fcard-btn:hover { background: rgba(212,160,23,.16); color: var(--gold); border-color: var(--gold); }
.cs-fcard-btn-green { color:#4ade80; background:rgba(34,197,94,.07); border-color:rgba(34,197,94,.28); }
.cs-fcard-btn-green:hover { background:rgba(34,197,94,.15); border-color:#22c55e; color:#22c55e; }

/* ── Screenshot Gallery ─────────────────────────────────────── */

/* Top row — 2 large featured cards */
.cs-gallery-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.cs-gallery-feat-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  cursor: pointer;
}
.cs-gallery-feat-item:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 36px rgba(0,0,0,.45), var(--glow-gold);
  transform: translateY(-4px);
}
.cs-gallery-feat-img {
  position: relative;
  overflow: hidden;
  height: 230px;
}
.cs-gallery-feat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.cs-gallery-feat-item:hover .cs-gallery-feat-img img { transform: scale(1.04); }

/* Overlay inside large image */
.cs-gallery-feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,10,24,.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  display: flex; align-items: flex-end; padding: .85rem;
}
.cs-gallery-feat-item:hover .cs-gallery-feat-overlay { opacity: 1; }
.cs-gallery-feat-info {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.cs-gallery-feat-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  border-radius: 100px; padding: .2rem .55rem; backdrop-filter: blur(4px);
}
.cs-gallery-badge-amz { color:#f90; background:rgba(249,144,0,.18); border:1px solid rgba(249,144,0,.3); }
.cs-gallery-badge-tt  { color:#ee1d52; background:rgba(238,29,82,.18); border:1px solid rgba(238,29,82,.3); }
.cs-gallery-feat-expand { color: #fff; opacity: .85; }

/* Footer strip below image */
.cs-gallery-feat-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg-card-2);
}
.cs-gallery-feat-title { font-size: .88rem; font-weight: 700; color: var(--text-1); margin-bottom: .15rem; }
.cs-gallery-feat-sub   { font-size: .72rem; color: var(--text-2); }
.cs-gallery-feat-stat  { text-align: right; }
.cs-gallery-stat-val   { display: block; font-size: 1.1rem; font-weight: 800; color: #4ade80; line-height: 1; }
.cs-gallery-stat-tt .cs-gallery-stat-val { color: var(--gold-light); }
.cs-gallery-stat-label { font-size: .65rem; color: var(--text-3); font-weight: 500; }

/* Bottom row — 4 compact thumbnails */
.cs-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cs-gallery-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .25s, transform .25s;
}
.cs-gallery-thumb:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.cs-gallery-thumb img { width: 100%; height: 110px; object-fit: cover; display: block; transition: transform .4s; }
.cs-gallery-thumb:hover img { transform: scale(1.05); }
.cs-gallery-thumb:hover .cs-gallery-thumb-overlay { opacity: 1; }
.cs-gallery-thumb-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 28px;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.cs-gallery-thumb-overlay svg { color: #fff; }
.cs-gallery-thumb span {
  display: block; font-size: .68rem; color: var(--text-2);
  text-align: center; padding: .38rem .3rem; font-weight: 500;
  background: var(--bg-card-2); border-top: 1px solid var(--border);
}

/* ── What Results Have in Common ────────────────────────────── */
.cs-common-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.cs-common-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.4rem 1.1rem;
  text-align: left; position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.cs-common-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.cs-common-item:nth-child(3)::before { background: linear-gradient(90deg, var(--gold), transparent); }
.cs-common-item:hover { transform: translateY(-3px); border-color: rgba(0,180,216,.3); }
.cs-common-item:hover::before { opacity: 1; }
.cs-common-item:nth-child(3):hover { border-color: var(--border-gold); }

.cs-common-num {
  font-size: 2rem; font-weight: 900; color: var(--bg-card-h);
  line-height: 1; margin-bottom: .75rem; font-family: 'Poppins', sans-serif;
}
.cs-common-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(0,180,216,.1); border: 1px solid rgba(0,180,216,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem; color: var(--teal);
}
.cs-common-icon-gold { background: rgba(212,160,23,.1); border-color: var(--border-gold); color: var(--gold-light); }
.cs-common-item h3 { font-size: .9rem; margin-bottom: .35rem; }
.cs-common-item p { font-size: .8rem; color: var(--text-2); line-height: 1.5; }

/* ── Testimonials ───────────────────────────────────────────── */
.cs-testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; align-items: stretch;
}
.cs-video-testimonial {
  display: flex; flex-direction: column; gap: 0;
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); overflow: hidden;
}
.cs-video-thumb {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
  aspect-ratio: 16/9;
}
.cs-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cs-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.4); transition: background var(--transition);
}
.cs-play-btn:hover { background: rgba(0,0,0,.58); }
.cs-play-btn svg { color: #fff; }
.cs-video-label { padding: 1.1rem 1.25rem; }
.cs-video-tag {
  font-size: .67rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  display: inline-block; margin-bottom: .5rem;
}
.cs-video-quote { font-size: .88rem; color: var(--text-2); font-style: italic; margin-bottom: .65rem; line-height: 1.6; }
.cs-video-name { font-weight: 700; color: var(--text-1); font-size: .88rem; }
.cs-video-role { font-size: .77rem; color: var(--text-2); }

.cs-text-testimonials { display: flex; flex-direction: column; gap: 1rem; }
.cs-testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.2rem 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
  flex: 1;
}
.cs-testimonial-card:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.cs-testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: .6rem; letter-spacing: .05em; }
.cs-testimonial-card blockquote {
  font-size: .85rem; color: var(--text-2); font-style: italic;
  margin-bottom: .9rem; line-height: 1.6;
}
.cs-testimonial-author { display: flex; align-items: center; gap: .65rem; }
.cs-testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 800; color: #000; flex-shrink: 0;
}
.cs-testimonial-author strong { display: block; font-size: .85rem; color: var(--text-1); }
.cs-testimonial-author span { font-size: .75rem; color: var(--text-2); }

/* ── Final CTA Banner ───────────────────────────────────────── */
.cs-cta-banner {
  position: relative; padding: 3.5rem 0; overflow: hidden;
  background: linear-gradient(135deg, #060f1e 0%, #020810 100%);
  border-top: 1px solid var(--border-gold);
}
.cs-cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,160,23,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cs-cta-inner {
  display: flex; align-items: center; gap: 1.75rem;
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 2rem 2.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.5), var(--glow-gold);
}
.cs-cta-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(212,160,23,.1); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); flex-shrink: 0;
}
.cs-cta-copy { flex: 1; }
.cs-cta-copy h2 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); margin-bottom: .3rem; }
.cs-cta-copy p { color: var(--text-2); font-size: .9rem; }
.cs-cta-btn {
  flex-shrink: 0; display: inline-flex; align-items: center;
  gap: .45rem; white-space: nowrap; padding: .85rem 1.6rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cs-fcards-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .cs-common-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cs-hero-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .cs-stats-row { gap: .6rem; }
  .cs-stat-val { font-size: .85rem; }
  .cs-fcards-grid { grid-template-columns: 1fr; }
  .cs-gallery-featured { grid-template-columns: 1fr; }
  .cs-gallery-feat-img { height: 190px; }
  .cs-gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .cs-common-grid { grid-template-columns: 1fr 1fr; }
  .cs-testimonials-grid { grid-template-columns: 1fr; }
  .cs-cta-inner { flex-direction: column; text-align: center; padding: 1.5rem; }
  .cs-cta-icon { margin: 0 auto; }
  .cs-cta-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .cs-gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .cs-common-grid { grid-template-columns: 1fr; }
  .cs-hero-btns { flex-direction: column; }
  .cs-hero-btn-primary, .cs-hero-btn-outline { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   META OFFER PAGE  (mo- prefix)
══════════════════════════════════════════════════════════ */
.meta-offer-page {
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(46,117,232,0.13) 0%, transparent 45%),
    radial-gradient(80% 50% at 100% 40%, rgba(212,160,23,0.07) 0%, transparent 42%),
    var(--bg-base);
}

/* ── Hero ──────────────────────────────────────────────── */
.mo-hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 2rem;
  border-bottom: 1px solid rgba(139,178,234,0.1);
  background: linear-gradient(180deg, rgba(4,14,32,0.98) 0%, rgba(2,8,20,0.9) 55%, rgba(1,7,19,0.5) 100%);
}
.mo-hero-glow {
  position: absolute; inset: -45% -20% auto;
  height: 92%; pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(240,202,114,0.11) 0%, transparent 72%),
    radial-gradient(closest-side, rgba(46,117,232,0.15) 0%, transparent 70%);
}
.mo-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 1.15rem; align-items: stretch;
}
.mo-hero-copy,
.mo-booking-card {
  border: 1px solid rgba(137,171,225,0.28);
  border-radius: 16px;
  background:
    radial-gradient(120% 96% at 90% 0%, rgba(53,125,238,0.15) 0%, rgba(53,125,238,0) 55%),
    linear-gradient(160deg, rgba(4,16,36,0.97) 0%, rgba(4,14,30,0.98) 100%);
  box-shadow: 0 20px 44px rgba(0,0,0,0.35);
}
.mo-hero-copy { padding: 1.35rem 1.25rem; }

.mo-eyebrow {
  margin: 0 0 0.48rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-light);
}
.mo-hero-copy h1 {
  margin: 0; color: #ffffff;
  font-size: clamp(1.3rem, 2.2vw, 2rem); line-height: 1.2; font-weight: 900;
}
.mo-hero-copy h1 em { color: var(--gold-light); font-style: normal; }
.mo-lead { font-size: 0.92rem; color: #dce8f5; line-height: 1.58; margin: 0.7rem 0 0; }
.mo-lead-secondary { margin-top: 0.65rem; color: #a8c0d8; border-left: 2px solid rgba(212,160,23,0.5); padding-left: 0.75rem; }

.mo-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.9rem; margin-bottom: 0.2rem; }
.mo-pills span {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.32rem 0.58rem; border-radius: 999px;
  border: 1px solid rgba(142,178,232,0.34);
  background: rgba(15,39,76,0.55);
  font-size: 0.73rem; color: #d7e8fb;
}
.mo-pills span svg { color: var(--gold); flex-shrink: 0; }

/* Offer box */
.mo-offer-box {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1rem;
  background: rgba(212,160,23,0.07);
  border: 1.5px solid rgba(212,160,23,0.5);
  border-radius: 10px; padding: 0.85rem 1rem;
  box-shadow: 0 0 20px rgba(212,160,23,0.08);
}
.mo-offer-tag {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
  background: linear-gradient(135deg, #e8b830 0%, #d4a017 100%);
  color: #1a0e00;
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 0.5rem 0.6rem;
  border-radius: 6px; flex-shrink: 0; text-align: center;
  box-shadow: 0 2px 8px rgba(212,160,23,0.3); line-height: 1.3;
}
.mo-offer-tag svg { margin-bottom: 0.2rem; }
.mo-offer-body { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.mo-offer-service { font-size: 0.85rem; font-weight: 700; color: #eaf0f8; }
.mo-offer-original { font-size: 0.8rem; color: #7a8fa0; }
.mo-offer-original strong { text-decoration: line-through; color: #7a8fa0; }
.mo-offer-new-col { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.mo-offer-first-month { font-size: 0.72rem; color: #aabbc8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.mo-offer-new-price { font-size: 0.82rem; color: var(--gold); font-weight: 700; }
.mo-offer-new-price strong { font-size: 1.15rem; font-weight: 900; }

/* ── Booking card / Calendar ───────────────────────────── */
.mo-booking-card { padding: 1.25rem 1.2rem; }
.mo-booking-link { display: block; color: inherit; text-decoration: none; }

.mo-cal-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  border: 1.5px solid rgba(212,160,23,0.6);
  border-radius: 999px; padding: 0.28rem 0.75rem;
  font-size: 0.68rem; font-weight: 600; color: var(--gold-light);
  margin-bottom: 1rem;
}
.mo-cal-badge svg { color: var(--gold-light); flex-shrink: 0; }

.mo-cal-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.6rem; margin-bottom: 0.9rem;
}
.mo-cal-head h2 { margin: 0; color: var(--gold-light); font-size: 1.1rem; font-weight: 700; }
.mo-cal-powered { color: #9dbfe9; font-size: 0.67rem; }

.mo-cal-info { margin-bottom: 1rem; }
.mo-cal-duration {
  margin: 0 0 0.3rem; color: #ffffff;
  font-size: 0.88rem; font-weight: 700;
}
.mo-cal-desc {
  margin: 0; color: #b9cfe8;
  font-size: 0.78rem; line-height: 1.5;
}

.mo-cal-widget {
  border: 1px solid rgba(145,181,234,0.22);
  border-radius: 10px; padding: 0.8rem 0.9rem;
  background: rgba(6,18,38,0.5);
}
.mo-cal-month {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.6rem;
}
.mo-cal-month span { color: #dbe8f9; font-size: 0.82rem; font-weight: 700; }
.mo-cal-arrow { color: #a8c6e9; font-size: 1rem; font-weight: 400; cursor: pointer; }

.mo-cal-weekdays, .mo-cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.2rem;
}
.mo-cal-weekdays span {
  text-align: center; color: #85a9d4;
  font-size: 0.6rem; font-weight: 600; padding: 0.15rem 0;
}
.mo-cal-days { margin-top: 0.3rem; gap: 0.25rem 0.2rem; }
.mo-cal-days span {
  height: 26px; display: inline-flex; align-items: center; justify-content: center;
  color: #c5d8ef; font-size: 0.72rem; border-radius: 999px;
  cursor: pointer; transition: background var(--transition);
}
.mo-cal-days span:hover:not(:empty) { background: rgba(212,160,23,0.2); color: var(--gold); }
.mo-cal-today {
  background: linear-gradient(140deg, #f0ca72, #d4a017) !important;
  color: #231708 !important; font-weight: 700;
}
.mo-cal-tz {
  margin: 0.65rem 0 0; color: #7a9bbf; font-size: 0.62rem;
  display: flex; align-items: center; gap: 0.3rem; flex-wrap: wrap;
}
.mo-cal-tz svg { color: #7a9bbf; flex-shrink: 0; }

/* ── Shared section styles ─────────────────────────────── */
.mo-section-title {
  text-align: center; font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 900; color: var(--text-1);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.mo-section-sub {
  text-align: center; font-size: 0.9rem; color: var(--text-2);
  max-width: 540px; margin: 0 auto 2rem; line-height: 1.65;
}

/* ── Video Montage ─────────────────────────────────────── */
.mo-montage { padding: 4rem 0 3rem; text-align: center; }

.mo-montage-header { margin-bottom: 2rem; }
.mo-montage-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(212,160,23,0.12); border: 1px solid rgba(212,160,23,0.35);
  color: var(--gold-light); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px; margin-bottom: 0.9rem;
}
.mo-montage-label svg { color: var(--gold); }

.mo-video-frame-wrap {
  position: relative; max-width: 860px; margin: 0 auto 2rem;
}
.mo-video-glow {
  position: absolute; inset: -2px; border-radius: 20px; z-index: 0;
  background: linear-gradient(135deg, rgba(212,160,23,0.45) 0%, rgba(212,160,23,0.08) 50%, rgba(212,160,23,0.35) 100%);
  filter: blur(8px); opacity: 0.7;
}
.mo-video-frame {
  position: relative; z-index: 1;
  border-radius: 16px; overflow: hidden;
  border: 1.5px solid rgba(212,160,23,0.5);
  background: #050d1a;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,160,23,0.1);
}
.mo-video-player {
  display: block; width: 100%;
  aspect-ratio: 16/9; background: #030912;
  object-fit: contain;
}

.mo-video-cta-block {
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
  margin-top: 0.5rem; margin-bottom: 1rem;
}
.mo-video-cta-text {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text-2); font-size: 1rem; font-weight: 500;
  letter-spacing: 0.01em; margin: 0;
}
.mo-video-cta-text svg { color: var(--gold); flex-shrink: 0; }
.mo-video-cta-btn { padding: 0.75rem 2rem; font-size: 0.95rem; }
.mo-montage-strip {
  background: rgba(212,160,23,0.1); border-top: 1px solid rgba(212,160,23,0.25);
  padding: 0.7rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.mo-montage-strip-item {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 700; color: var(--text-1);
}
.mo-montage-strip-item svg { color: var(--gold); }
.mo-montage-divider { color: var(--text-3); font-weight: 300; }
/* ── Review Video Cards ────────────────────────────────── */
.mo-review-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.mo-review-card {
  border-radius: 16px; overflow: hidden;
  background: #080f1e;
  border: 1px solid rgba(212,160,23,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.mo-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  border-color: rgba(212,160,23,0.5);
}

.mo-review-video-wrap {
  position: relative; width: 100%;
  aspect-ratio: 9/16; max-height: 355px;
  background: #060e1e; overflow: hidden;
}
.mo-review-video-wrap iframe {
  width: 100%; height: 100%; border: none; display: block;
}

.mo-review-meta {
  padding: 0.65rem 0.85rem 0.8rem;
  border-top: 1px solid rgba(212,160,23,0.12);
  background: rgba(4,12,28,0.85);
}
.mo-review-quote {
  margin: 0 0 0.55rem; color: #c8d8ec;
  font-size: 0.78rem; line-height: 1.55;
  font-style: italic;
}
.mo-review-name {
  margin: 0 0 0.18rem; color: #fff;
  font-size: 0.82rem; font-weight: 700;
}
.mo-review-role {
  margin: 0; color: #7a9bbf;
  font-size: 0.68rem; line-height: 1.4;
}

.mo-review-more-wrap { text-align: center; margin-top: 2rem; }
.mo-review-more-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.65rem 1.75rem; border-radius: 999px;
  border: 1.5px solid var(--gold); color: var(--gold-light);
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.03em;
}
.mo-review-more-btn:hover { background: var(--gold); color: #1a0e00; }

/* ── Benefits ──────────────────────────────────────────── */
.mo-benefits { padding: 4rem 0; }
.mo-benefits-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem; margin-top: 2rem;
}
.mo-benefit-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem 1rem; text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.mo-benefit-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.mo-benefit-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem; color: var(--gold);
}
.mo-benefit-icon svg { width: 22px; height: 22px; }
.mo-benefit-card h3 { font-size: 0.85rem; font-weight: 700; color: var(--gold); margin-bottom: 0.4rem; }
.mo-benefit-card p { font-size: 0.78rem; color: var(--text-2); line-height: 1.55; }

/* ── Proven Results ────────────────────────────────────── */
.mo-results { padding: 4rem 0; background: var(--bg-deeper); }
.mo-results-disclaimer {
  display: flex; align-items: flex-start; gap: 0.45rem;
  max-width: 640px; margin: 1.5rem auto 0;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #5a7a9a; font-size: 0.75rem; line-height: 1.55;
  text-align: left;
}
.mo-results-disclaimer svg { color: #4a6a8a; flex-shrink: 0; margin-top: 1px; }
.mo-results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.mo-result-card {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: 14px; overflow: hidden;
  transition: transform var(--transition);
}
.mo-result-card:hover { transform: translateY(-4px); }
.mo-result-ss { width: 100%; height: 145px; object-fit: cover; border-bottom: 1px solid var(--border); display: block; }
.mo-result-body { padding: 1rem 1.1rem; }
.mo-result-amount { font-size: 1.7rem; font-weight: 900; color: var(--gold); line-height: 1; }
.mo-result-label { font-size: 0.7rem; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.1rem; }
.mo-result-units { font-size: 1.1rem; font-weight: 700; color: var(--text-1); margin-top: 0.5rem; }
.mo-result-units-label { font-size: 0.7rem; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.06em; }
.mo-result-niche {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--text-2);
  margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--border);
}
.mo-result-niche svg { color: var(--gold); flex-shrink: 0; width: 13px; height: 13px; }

/* ── Testimonials ──────────────────────────────────────── */
.mo-testimonials { padding: 4rem 0; }
.mo-testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.mo-testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.4rem;
  transition: border-color var(--transition);
}
.mo-testi-card:hover { border-color: var(--border-gold); }
.mo-testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 1px; }
.mo-testi-quote { font-size: 0.86rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.mo-testi-author { display: flex; align-items: center; gap: 0.65rem; }
.mo-testi-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: rgba(212,160,23,0.15); border: 2px solid rgba(212,160,23,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--gold);
}
.mo-testi-name { font-size: 0.85rem; font-weight: 700; color: var(--text-1); }
.mo-testi-role { font-size: 0.72rem; color: var(--text-3); }

/* ── FAQ ───────────────────────────────────────────────── */
.mo-faq { padding: 4rem 0; background: var(--bg-deeper); }
.mo-faq-list {
  display: grid; gap: 0.5rem;
  margin: 2rem auto 2.5rem; max-width: 760px;
}
.mo-faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: border-color var(--transition);
}
.mo-faq-item[open] { border-color: var(--border-gold); }
.mo-faq-item summary {
  padding: 1rem 1.25rem; font-size: 0.88rem; font-weight: 600;
  color: var(--text-1); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.mo-faq-item summary::-webkit-details-marker { display: none; }
.mo-faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
.mo-faq-item[open] summary::after { content: '\2212'; }
.mo-faq-item p { padding: 0 1.25rem 1rem; font-size: 0.84rem; color: var(--text-2); line-height: 1.65; }

/* CTA box inside FAQ section */
.mo-cta-box {
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: center;
  background: linear-gradient(135deg, rgba(8,26,48,0.95) 0%, rgba(12,30,56,0.95) 100%);
  border: 1px solid rgba(212,160,23,0.45); border-radius: 16px;
  padding: 2rem 2rem; margin-top: 1rem;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.mo-cta-box h2 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 800; color: var(--text-1); margin-bottom: 0.4rem; }
.mo-cta-box p { font-size: 0.85rem; color: var(--text-2); }
.mo-cta-right { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.mo-cta-btn { white-space: nowrap; font-size: 0.88rem; padding: 0.7rem 1.4rem; }
.mo-cta-note {
  font-size: 0.72rem; color: var(--text-2);
  display: flex; align-items: center; gap: 0.3rem;
}
.mo-cta-note svg { color: var(--gold); flex-shrink: 0; }

/* ── Trust Strip ───────────────────────────────────────── */
.mo-trust-strip {
  background: var(--bg-deeper); border-top: 1px solid var(--border);
  padding: 0.85rem 0;
}
.mo-trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.mo-trust-item {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 500; color: var(--text-2);
}
.mo-trust-item svg { color: var(--gold); flex-shrink: 0; }
.mo-trust-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-3); flex-shrink: 0;
}

/* ══ META-OFFER ANIMATIONS ═══════════════════════════════ */

@keyframes moFadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes moFadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes moFlyFromLeft {
  0%   { opacity: 0; transform: translateX(-160px) scale(0.92); }
  65%  { opacity: 1; transform: translateX(14px)   scale(1.01); }
  80%  { transform: translateX(-6px) scale(0.99); }
  100% { opacity: 1; transform: translateX(0)      scale(1); }
}
@keyframes moHeroBreathe {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%       { transform: scale(1.1); opacity: 1;   }
}
@keyframes moFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes moScaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes moSlideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes moPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(212,160,23,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(212,160,23,0);   }
}

/* Hero elements animate on load */
.meta-offer-page .mo-eyebrow      { animation: moFadeInUp   0.65s ease both; animation-delay: 0.10s; }
.meta-offer-page #mo-hero-heading { animation: moFadeInUp   0.80s ease both; animation-delay: 0.24s; }
.meta-offer-page .mo-lead         { animation: moFadeInUp   0.70s ease both; animation-delay: 0.38s; }
.meta-offer-page .mo-lead-secondary { animation: moFadeInUp 0.65s ease both; animation-delay: 0.48s; }
.meta-offer-page .mo-pills        { animation: moFadeInUp   0.60s ease both; animation-delay: 0.58s; }
.meta-offer-page .mo-offer-box    { animation: moFadeInUp   0.75s ease both; animation-delay: 0.70s; }
.meta-offer-page .mo-booking-card { animation: moFlyFromLeft 0.95s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.20s; }

/* Continuous loops */
.meta-offer-page .mo-hero-glow    { animation: moHeroBreathe 5s ease-in-out infinite; }
.meta-offer-page .mo-booking-card { animation: moFlyFromLeft 0.95s cubic-bezier(0.22,1,0.36,1) both 0.20s, moFloat 3.8s ease-in-out infinite 1.3s; }
.meta-offer-page .mo-offer-tag    { animation: moPulse 2s ease-out infinite; }

/* Scroll-reveal base */
.mo-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.62s ease, transform 0.68s cubic-bezier(0.22,1,0.36,1);
}
.mo-reveal--scale  { transform: scale(0.88); }
.mo-reveal--left   { transform: translateX(-80px); }
.mo-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.mo-reveal[data-delay="1"] { transition-delay: 0.07s; }
.mo-reveal[data-delay="2"] { transition-delay: 0.14s; }
.mo-reveal[data-delay="3"] { transition-delay: 0.21s; }
.mo-reveal[data-delay="4"] { transition-delay: 0.28s; }
.mo-reveal[data-delay="5"] { transition-delay: 0.35s; }

/* Result amount pop */
.mo-result-amount { display: inline-block; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.mo-result-amount.mo-pop { transform: scale(1.08); }

/* Card hover lift */
.mo-benefit-card, .mo-result-card, .mo-review-card, .client-story-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.mo-benefit-card:hover, .mo-result-card:hover,
.mo-review-card:hover, .client-story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.55);
}

@media (prefers-reduced-motion: reduce) {
  .meta-offer-page .mo-eyebrow,
  .meta-offer-page #mo-hero-heading,
  .meta-offer-page .mo-lead,
  .meta-offer-page .mo-lead-secondary,
  .meta-offer-page .mo-pills,
  .meta-offer-page .mo-offer-box,
  .meta-offer-page .mo-booking-card { animation: none; opacity: 1; }
  .meta-offer-page .mo-hero-glow    { animation: none; }
  .meta-offer-page .mo-offer-tag    { animation: none; }
  .mo-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Meta Offer Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .mo-hero-grid       { grid-template-columns: 1fr; }
  .mo-benefits-grid   { grid-template-columns: repeat(3, 1fr); }
  .mo-results-grid    { grid-template-columns: repeat(2, 1fr); }
  .mo-testi-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  .mo-review-cards    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .mo-review-cards    { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .mo-review-video-wrap { max-height: 320px; }
}
@media (max-width: 600px) {
  /* Hero — top padding clears the fixed navbar (~70px) */
  .mo-hero              { padding: 5.5rem 0 1.5rem; }
  .mo-hero-copy         { padding: 1rem; }
  .mo-hero-copy h1      { font-size: 1.35rem; line-height: 1.25; }
  .mo-lead              { font-size: 0.85rem; }

  /* Pills — stack neatly */
  .mo-pills             { gap: 0.4rem; }
  .mo-pills span        { font-size: 0.7rem; padding: 0.28rem 0.5rem; }

  /* Offer box — 2 rows: tag+service top, price bottom */
  .mo-offer-box         { flex-wrap: wrap; gap: 0.6rem; padding: 0.75rem 0.85rem; }
  .mo-offer-tag         { font-size: 0.55rem; padding: 0.42rem 0.55rem; }
  .mo-offer-body        { flex: 1; min-width: 0; }
  .mo-offer-service     { font-size: 0.8rem; }
  .mo-offer-original    { font-size: 0.74rem; }
  .mo-offer-new-col     { width: 100%; flex-direction: row; align-items: center;
                          justify-content: flex-end; gap: 0.4rem; border-top: 1px solid rgba(212,160,23,0.15);
                          padding-top: 0.45rem; }
  .mo-offer-first-month { font-size: 0.68rem; }
  .mo-offer-new-price   { font-size: 0.78rem; }
  .mo-offer-new-price strong { font-size: 1rem; }

  /* Other sections */
  .mo-benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .mo-results-grid    { grid-template-columns: 1fr; }
  .mo-testi-grid      { grid-template-columns: 1fr; }
  .mo-montage-photos  { grid-template-columns: repeat(3, 1fr); height: 180px; }
  .mo-montage-photos .mo-montage-photo:nth-child(n+4) { display: none; }
  .mo-review-cards    { grid-template-columns: 1fr; max-width: 380px;
                        margin-left: auto; margin-right: auto; }
  .mo-cta-box         { grid-template-columns: 1fr; text-align: center; }
  .mo-cta-box p       { margin: 0 auto; }
  .mo-trust-inner     { gap: 0.75rem; }
  .mo-trust-sep       { display: none; }
}

/* ── Scrollbar ────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-card-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
