/* ============================================================
   SELLTRU — Design System v2
   Marketplace Marketing Agency | Amazon & Walmart
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* === VARIABLES === */
:root {
  --navy:        #0D1B2A;
  --navy-light:  #162235;
  --navy-mid:    #1D3045;
  --blue:        #1A56DB;
  --blue-hover:  #1447BD;
  --blue-light:  #EFF6FF;
  --orange:      #FF6B35;
  --orange-hover:#E55A28;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-50:     #F9FAFB;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1E293B;
  --text:        #1E293B;
  --text-light:  #64748B;

  --font-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:    0 4px 8px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 20px -3px rgba(0,0,0,0.12), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 16px 40px -6px rgba(0,0,0,0.18), 0 6px 12px -3px rgba(0,0,0,0.07);
  --shadow-xl: 0 24px 60px -10px rgba(0,0,0,0.25);

  --transition: 200ms cubic-bezier(0.4,0,0.2,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--white); }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-head);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,107,53,0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 28px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta {
  margin-top: 16px;
  text-align: center;
  display: block;
  border-bottom: none;
  padding: 13px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,0.4);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn-outline-navy:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 38px; font-size: 17px; }

/* === HERO === */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(26,86,219,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(255,107,53,0.1) 0%, transparent 45%);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,86,219,0.15);
  border: 1px solid rgba(26,86,219,0.35);
  color: #93C5FD;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: #3B82F6;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--orange); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xs);
  padding: 8px 14px;
}
.trust-badge-icon { font-size: 16px; }
.trust-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}

/* === STATS BAND === */
.stats-band {
  background: linear-gradient(135deg, var(--blue) 0%, #1447BD 100%);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 8px 48px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 4px;
}

/* === SECTION LABELS === */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-tag.light { color: rgba(255,255,255,0.45); }
.section-tag.orange { color: var(--orange); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title span { color: var(--orange); }

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 600px;
}
.section-sub.light { color: rgba(255,255,255,0.55); }
.section-sub.wide { max-width: 800px; }

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* === SERVICE FEATURE CARDS (Homepage) === */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.service-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.service-card.amazon {
  background: linear-gradient(150deg, #0D1B2A 0%, #0F2540 60%, #162B45 100%);
  border: 1px solid rgba(255,255,255,0.07);
}
.service-card.walmart {
  background: linear-gradient(150deg, #003087 0%, #0041A8 60%, #0052CC 100%);
  border: 1px solid rgba(255,255,255,0.07);
}

.service-card-inner { padding: 48px 44px 44px; }
.service-card-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-xs);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.service-card h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.service-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}
.service-bullet-list { margin-bottom: 36px; }
.service-bullet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-bullet-list li:last-child { border-bottom: none; }
.bullet-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.amazon .bullet-dot { background: #FF9900; }
.walmart .bullet-dot { background: #FFC220; }

/* === CARDS (Why SellTru etc.) === */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.why-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.why-icon.blue { background: rgba(26,86,219,0.1); }
.why-icon.orange { background: rgba(255,107,53,0.1); }
.why-icon.green { background: rgba(16,185,129,0.1); }
.why-icon.purple { background: rgba(139,92,246,0.1); }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

/* === PROCESS === */
.process-section { background: var(--navy); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.process-connector {
  position: absolute;
  top: 36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, rgba(26,86,219,0.4), rgba(26,86,219,0.2));
  pointer-events: none;
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(26,86,219,0.4);
  background: rgba(26,86,219,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #93C5FD;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}

/* === TESTIMONIALS === */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.testimonial-stars { color: #F59E0B; font-size: 17px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-role { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* === EMAIL STICKY BAR === */
.email-bar {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  z-index: 998;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--orange);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.email-bar.visible { transform: translateY(0); }
.email-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.email-bar-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.email-bar-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  background: rgba(255,107,53,0.12);
  padding: 3px 8px;
  border-radius: 100px;
}
.email-bar-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.email-bar-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.email-bar-input {
  height: 36px;
  padding: 0 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xs);
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-body);
  width: 220px;
  transition: border-color var(--transition);
}
.email-bar-input::placeholder { color: rgba(255,255,255,0.35); }
.email-bar-input:focus { outline: none; border-color: var(--orange); }
.email-bar-btn {
  height: 36px;
  padding: 0 16px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.email-bar-btn:hover { background: var(--orange-hover); }
.email-bar-dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.email-bar-dismiss:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 768px) {
  .email-bar-text { display: none; }
  .email-bar-input { width: 160px; }
  .email-bar-label { display: none; }
}
@media (max-width: 480px) {
  .email-bar { display: none; }
}

/* === EMAIL CAPTURE SECTION === */
.email-capture-section {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ec-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 12px 0 16px;
}
.ec-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.ec-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ec-bullets li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.ec-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #34D399;
  font-weight: 700;
}
.ec-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}
.ec-form-headline {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.ec-field { margin-bottom: 16px; }
.ec-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.ec-input {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  transition: border-color var(--transition);
}
.ec-input::placeholder { color: var(--gray-400); }
.ec-input:focus { outline: none; border-color: var(--blue); }
.ec-submit {
  width: 100%;
  height: 48px;
  margin-top: 4px;
  font-size: 15px;
}
.ec-privacy {
  font-size: 11px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 10px;
}
.ec-success {
  text-align: center;
  padding: 16px 0;
}
.ec-success-icon {
  width: 48px;
  height: 48px;
  background: #D1FAE5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 14px;
}
.ec-success-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.ec-success-link {
  font-size: 13px;
  color: var(--blue);
  text-decoration: underline;
}
@media (max-width: 900px) {
  .ec-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, #0D1B2A 0%, #112440 50%, #1A3A6B 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(26,86,219,0.3) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.08;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* === FOOTER === */
.footer { background: var(--navy); padding: 64px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 260px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-left p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-certs { display: flex; gap: 10px; }
.footer-cert {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xs);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.3px;
}

/* === PAGE HERO (Interior Pages) === */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(26,86,219,0.18) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 90%, rgba(255,107,53,0.08) 0%, transparent 45%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 700px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
}

/* === SERVICE DETAIL SECTIONS === */
.service-detail-section { background: var(--white); }
.service-detail-section.alt { background: var(--off-white); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.detail-grid.reverse .detail-visual { order: -1; }

.detail-content .section-tag { margin-bottom: 12px; }

.detail-list { margin-top: 28px; }
.detail-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.detail-item:last-child { border-bottom: none; }
.detail-check {
  width: 24px; height: 24px;
  background: rgba(26,86,219,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
}
.detail-item-text h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.detail-item-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.detail-visual {
  background: linear-gradient(145deg, var(--gray-50), var(--white));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.detail-visual.dark {
  background: linear-gradient(145deg, #0D1B2A, #162235);
  border-color: rgba(255,255,255,0.07);
}

.metric-card-group { display: flex; gap: 14px; margin-bottom: 14px; }
.metric-box {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.metric-box.dark-bg {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}
.metric-val {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.metric-val.green { color: #10B981; }
.metric-val.blue { color: var(--blue); }
.metric-val.orange { color: var(--orange); }
.metric-val.white { color: var(--white); }
.metric-lbl {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 500;
}
.metric-lbl.light { color: rgba(255,255,255,0.45); }

/* === SERVICES GRID (Service page) === */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-mini-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.smc-icon {
  font-size: 26px;
  margin-bottom: 14px;
}
.service-mini-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-mini-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* === ABOUT PAGE === */
.about-hero-visual {
  background: linear-gradient(145deg, #0D1B2A, #162B45);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cert-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: center;
}
.cert-item-icon { font-size: 24px; margin-bottom: 8px; }
.cert-item-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* === CONTACT === */
.contact-section { background: var(--off-white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.contact-info-sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon-wrap {
  width: 42px; height: 42px;
  background: rgba(26,86,219,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-item p {
  font-size: 14px;
  color: var(--text-light);
}

/* === FORM === */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
  background: var(--white);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2394A3B8' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-btn {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 4px;
}
.form-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.35);
}

/* === UTILITY === */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.pt-0 { padding-top: 0; }

/* === DIVIDER === */
.divider { height: 1px; background: var(--gray-200); margin: 0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .services-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .detail-grid.reverse .detail-visual { order: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-cards-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 8px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .stats-inner { flex-direction: column; gap: 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1px; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .service-card-inner { padding: 32px 28px; }
  .form-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; }
  .hero-ctas .btn, .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   V2 ENHANCEMENTS — Modern 2026 Design
   Animated orbs, glassmorphism, bento grid, dashboard mockup,
   marquee, gradient text, results counters, glow cards
   ============================================================ */

/* === ANIMATED GRADIENT ORBS === */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,86,219,0.35) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orb-move 16s ease-in-out infinite;
}
.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,107,53,0.22) 0%, transparent 70%);
  bottom: -120px; left: -80px;
  animation: orb-move 20s ease-in-out infinite;
  animation-delay: -10s;
}
.orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(99,102,241,0.28) 0%, transparent 70%);
  top: 45%; left: 28%;
  animation: orb-move 13s ease-in-out infinite;
  animation-delay: -5s;
}
@keyframes orb-move {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(50px, -40px) scale(1.04); }
  50%  { transform: translate(-25px, 50px) scale(0.96); }
  75%  { transform: translate(35px, 25px) scale(1.02); }
}

/* === FLOAT ANIMATIONS === */
@keyframes float-y  { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-18px); } }
@keyframes float-y2 { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-11px); } }
@keyframes float-y3 { 0%,100%{ transform:translateY(0) rotate(0deg); } 50%{ transform:translateY(-14px) rotate(1.5deg); } }
.float-a  { animation: float-y  6.5s ease-in-out infinite; }
.float-b  { animation: float-y2 5.2s ease-in-out infinite; animation-delay: -2.1s; }
.float-c  { animation: float-y3 7.8s ease-in-out infinite; animation-delay: -1.3s; }
.float-d  { animation: float-y2 9.1s ease-in-out infinite; animation-delay: -3.5s; }

/* === GLASSMORPHISM === */
.glass {
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.13);
}

/* === GRADIENT TEXT === */
.g-text-white {
  background: linear-gradient(160deg, #ffffff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g-text-orange {
  background: linear-gradient(135deg, #FF6B35 0%, #FFB347 85%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g-text-blue {
  background: linear-gradient(135deg, #60A5FA 0%, #818CF8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === MARQUEE TICKER === */
.marquee-bar {
  background: var(--navy-light);
  border-top:    1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  z-index: 10;
}
.marquee-inner { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.m-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.m-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.7;
  flex-shrink: 0;
}

/* === HERO V2 — SPLIT LAYOUT === */
.hero-v2 { min-height: 100vh; padding: 120px 0 80px; }
.hero-split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}
.hero-left { max-width: 600px; }

/* === DASHBOARD MOCKUP === */
.hero-visual {
  position: relative;
  height: 540px;
}

/* Main dashboard card */
.dash-main {
  position: absolute;
  top: 0; right: 0;
  width: 330px;
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
  z-index: 2;
}
.dm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.dm-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.38); letter-spacing: 0.8px; text-transform: uppercase; }
.dm-period {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3px 9px;
  border-radius: 100px;
}
.dm-rev-label { font-size: 11px; color: rgba(255,255,255,0.38); margin-bottom: 4px; }
.dm-rev-val {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
}
.dm-delta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16,185,129,0.14);
  border: 1px solid rgba(16,185,129,0.22);
  color: #34D399;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin: 8px 0 16px;
}
.dm-split { margin-bottom: 14px; }
.dm-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}
.dm-pname { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 600; width: 54px; }
.dm-bar-bg {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.dm-bar { height: 100%; border-radius: 3px; }
.dm-bar.amz { background: linear-gradient(90deg,#FF9900,#FFB347); width: 68%; }
.dm-bar.wmt { background: linear-gradient(90deg,#0071DC,#5BAAFF); width: 32%; }
.dm-pct { font-size: 10px; color: rgba(255,255,255,0.35); width: 26px; text-align: right; }
.dm-chart { width: 100%; height: 72px; display: block; margin-bottom: 8px; }
.dm-months {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}
.dm-months span { font-size: 9px; color: rgba(255,255,255,0.22); }

/* Floating mini cards */
.fc {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
  padding: 16px 18px;
  z-index: 3;
}
.fc-1 { top: 70px;  left: -10px; width: 148px; }
.fc-2 { bottom: 100px; left: 20px; width: 156px; }
.fc-3 { bottom: 14px; right: 30px; width: 168px; }

.fc-lbl { font-size: 10px; color: rgba(255,255,255,0.38); font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 5px; }
.fc-val {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.fc-val.green  { color: #34D399; }
.fc-val.orange { color: var(--orange); }
.fc-val.blue   { color: #60A5FA; }
.fc-sub { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 4px; }
.fc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.fc-badge.amz { background: rgba(255,153,0,0.18); color: #FFB347; border: 1px solid rgba(255,153,0,0.25); }
.fc-badge.wmt { background: rgba(0,113,220,0.18); color: #5BAAFF; border: 1px solid rgba(0,113,220,0.25); }
.fc-stars { color: #F59E0B; font-size: 11px; letter-spacing: 1px; margin-top: 5px; }

/* Listing card */
.listing-card {
  position: absolute;
  top: 300px; right: 0;
  width: 210px;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 2;
}
.lc-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.lc-dot { width: 6px; height: 6px; border-radius: 50%; background: #34D399; box-shadow: 0 0 8px #34D399; }
.lc-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.lc-stars { color: #F59E0B; font-size: 11px; letter-spacing: 1px; }
.lc-reviews { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.lc-stats { display: flex; gap: 12px; margin-top: 10px; }
.lc-stat-val { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: #34D399; }
.lc-stat-lbl { font-size: 9px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; }

/* === BENTO SERVICES GRID === */
.bento-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}
.b-amazon  { grid-column: span 7; }
.b-stats   { grid-column: span 5; }
.b-why     { grid-column: span 5; }
.b-walmart { grid-column: span 7; }

/* Stat bento card */
.bento-stat-card {
  background: linear-gradient(145deg, #111E2E, #0D1B2A);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 100%;
}
.bsc-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bsc-val {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
.bsc-val.g { color: #34D399; }
.bsc-val.b { color: #60A5FA; }
.bsc-val.o { color: var(--orange); }
.bsc-val.w { color: #fff; }
.bsc-lbl { font-size: 11px; color: rgba(255,255,255,0.38); line-height: 1.3; }
.bsc-context { font-size: 11px; color: rgba(255,255,255,0.22); line-height: 1.4; margin-top: 10px; }
.bsc-bar { height: 3px; background: rgba(255,255,255,0.07); border-radius: 100px; margin-top: auto; overflow: hidden; }
.bsc-fill { height: 100%; border-radius: 100px; }

/* "Why marketplace" bento card */
.bento-why-card {
  background: linear-gradient(145deg, var(--blue-light), rgba(239,246,255,0.5));
  border: 1px solid rgba(26,86,219,0.18);
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.bwc-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.bwc-sub { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.bwc-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.bwc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* === RESULTS SECTION === */
.results-section {
  background: linear-gradient(145deg, #0A1628 0%, #0D1B2A 40%, #112440 70%, #0F3460 100%);
  position: relative;
  overflow: hidden;
}
.results-section .orb-r1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.3) 0%, transparent 70%);
  top: -150px; left: -100px;
}
.results-section .orb-r2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  bottom: -100px; right: -80px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.result-col {
  padding: 52px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.result-col:last-child { border-right: none; }
.result-col::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.result-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 10px;
}
.result-lbl { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 500; line-height: 1.4; max-width: 130px; margin: 0 auto; }

/* === GLOW HOVER CARDS === */
.why-card-v2 {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.why-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
.why-card-v2:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); border-color: transparent; }
.why-card-v2:hover::before { transform: scaleX(1); }
.why-icon-v2 { font-size: 32px; margin-bottom: 16px; display: block; }
.why-card-v2 h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card-v2 p { font-size: 15px; color: var(--text-light); line-height: 1.65; }

/* === TESTIMONIALS V2 === */
.testi-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card-v2 {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.testi-card-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-platform {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}
.testi-platform.amz { background: rgba(255,153,0,0.1); color: #CC7A00; border: 1px solid rgba(255,153,0,0.2); }
.testi-platform.wmt { background: rgba(0,113,220,0.1); color: #0052CC; border: 1px solid rgba(0,113,220,0.2); }
.testi-platform.both { background: rgba(26,86,219,0.08); color: var(--blue); border: 1px solid rgba(26,86,219,0.18); }
.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 0.7;
  color: var(--gray-200);
  display: block;
  margin-bottom: 14px;
}
.testi-text-v2 {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-stars-v2 { color: #F59E0B; font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-author-v2 { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--text-light); margin-top: 1px; }

/* Metric result pill */
.result-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  color: #059669;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* === RESPONSIVE (V2 additions) === */
@media (max-width: 1100px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .bento-wrap { grid-template-columns: 1fr 1fr; }
  .b-amazon, .b-stats, .b-why, .b-walmart { grid-column: span 1; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bento-wrap { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 36px 24px; }
  .result-col:last-child { border-bottom: none; }
  .result-num { font-size: 44px; }
  .testi-grid-v2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   V3 ENHANCEMENTS — Hormozi Framework + Hero Visual Fix
   Pain points, value stack, FAQ accordion, guarantee card
   ============================================================ */

/* === HERO VISUAL V3 — Flex Column (eliminates overflow) === */
.hv-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}
.hv-main {
  width: 100%;
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
}
.hv-row {
  display: flex;
  gap: 10px;
}
.hv-card {
  flex: 1;
  min-width: 0;
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}
.hv-listing {
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}

/* === PAIN POINTS SECTION === */
.pain-section { background: var(--off-white); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pain-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.pain-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pain-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

.pain-bridge {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pain-bridge-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  max-width: 520px;
  line-height: 1.3;
}
.pain-bridge-text span { color: var(--blue); }

/* === VALUE STACK SECTION === */
.value-stack-section {
  background: linear-gradient(145deg, #0A1628 0%, #0D1B2A 50%, #112240 100%);
  position: relative;
  overflow: hidden;
}
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.vs-list {
  display: flex;
  flex-direction: column;
}
.vs-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.vs-item:last-child { border-bottom: none; }
.vs-check {
  width: 26px; height: 26px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #34D399;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.vs-item h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.vs-item p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.55; }

.vs-cta-card { position: sticky; top: 100px; }
.vs-cta-inner {
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  text-align: center;
}
.vs-badge {
  display: inline-block;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.vs-cta-inner h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.vs-cta-inner > p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
  line-height: 1.6;
}
.vs-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 22px 0; }
.vs-includes {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.vs-include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.vs-include-item::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(16,185,129,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #34D399;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.vs-cta-inner .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.vs-guarantee {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* === FAQ ACCORDION === */
.faq-section { background: var(--white); }
.faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-intro { position: sticky; top: 100px; }
.faq-intro .section-title { margin-bottom: 16px; }
.faq-intro p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.faq-q h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  transition: color 0.2s ease;
}
.faq-q:hover h3 { color: var(--blue); }
.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--gray-600);
  transition: all 0.25s ease;
}
.faq-item.open .faq-arrow {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 22px; }
.faq-a p { font-size: 15px; color: var(--text-light); line-height: 1.75; }

/* === GUARANTEE / RISK REVERSAL CARD === */
.guarantee-strip {
  background: linear-gradient(135deg, rgba(16,185,129,0.07) 0%, rgba(26,86,219,0.05) 100%);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.gc-icon { font-size: 44px; flex-shrink: 0; }
.gc-body { flex: 1; min-width: 220px; }
.gc-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.gc-text { font-size: 15px; color: var(--text-light); line-height: 1.65; }

/* === RESPONSIVE V3 === */
@media (max-width: 1100px) {
  .vs-grid { grid-template-columns: 1fr; }
  .vs-cta-card { position: static; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .hv-wrap { max-width: 100%; }
}
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .pain-bridge { flex-direction: column; text-align: center; }
  .guarantee-strip { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .hv-row { flex-direction: column; }
}

/* ============================================================
   V4 ENHANCEMENTS — Real images, certifications, case studies,
   founder strip, social proof upgrades
   ============================================================ */

/* === HERO CERT IMAGES (replaces emoji badges) === */
.trust-cert-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: opacity var(--transition);
}
.trust-cert-wrap:hover { opacity: 0.9; }
.trust-cert-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}
.trust-badge-wmt {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xs);
  padding: 8px 14px;
}
.wmt-spark { flex-shrink: 0; }
.trust-badge-wmt span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}

/* === CERTIFICATIONS BAND === */
.cert-band {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 36px 0;
}
.cert-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cert-band-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-400);
}
.cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.cert-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 36px;
  border-right: 1px solid var(--gray-200);
}
.cert-logo-item:last-child { border-right: none; }
.cert-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
.cert-logo-caption {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.3px;
  text-align: center;
  text-transform: uppercase;
}
/* Walmart cert badge (SVG-based, no official image) */
.cert-walmart-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cert-walmart-text { text-align: left; }
.cert-walmart-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: #0071DC;
  letter-spacing: -0.3px;
}
.cert-walmart-sub { font-size: 11px; color: var(--gray-400); font-weight: 500; }
/* Upwork badge */
.cert-upwork-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.upwork-label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: #14a800;
}
.upwork-sub { font-size: 10px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* === CASE STUDIES SECTION === */
.case-studies-section { background: var(--gray-50); }
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cs-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cs-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.cs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cs-card:hover .cs-img { transform: scale(1.03); }
.cs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 50%);
  pointer-events: none;
}
.cs-meta {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cs-platform {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cs-result {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: #10B981;
  white-space: nowrap;
}
.cs-footer {
  padding: 0 20px 18px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* === CLIENT STORIES === */
.stories-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.stories-section::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(26,86,219,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.story-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.story-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,107,53,0.28);
}
.story-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.story-hero-metric {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.story-hero-metric span {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
}
.story-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.story-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ss-val {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #34D399;
}
.ss-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.33);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.story-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  flex: 1;
}
.story-profile {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.sp-chip {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  padding: 4px 11px;
}
.stories-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.stories-cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .stories-grid { grid-template-columns: 1fr; }
  .story-hero-metric { font-size: 38px; }
}

/* === FOUNDER STRIP === */
/* === FOUNDER SECTION (rebuilt) === */
.founder-section {
  background: var(--white);
  padding: 96px 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
.founder-img-wrap {
  position: relative;
}
.founder-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}
.founder-img-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13,27,42,0.88);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  letter-spacing: 0.3px;
}
.founder-heading {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin: 10px 0 4px;
  line-height: 1.1;
}
.founder-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.founder-story {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.founder-story p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
}
.founder-creds {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.founder-cred {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xs);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
}
.founder-cred-img {
  height: 18px;
  width: auto;
  object-fit: contain;
}
.founder-cta { min-width: 200px; }
@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 320px 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-img { aspect-ratio: 4/3; }
  .founder-creds { justify-content: flex-start; }
  .founder-strip { flex-direction: column; text-align: center; }
  .founder-strip-old { flex-direction: column; text-align: center; }
}

/* === RESPONSIVE V4 === */
@media (max-width: 900px) {
  .cs-grid { grid-template-columns: 1fr 1fr; }
  .cert-logo-item { padding: 0 20px; }
}
@media (max-width: 640px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cert-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 0; width: 100%; }
  .cert-logo-item {
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 16px;
    width: auto;
    align-items: center;
    flex-direction: column;
  }
  .cert-logo-item:nth-child(2n) { border-right: none; }
  .cert-logo-item:last-child { grid-column: 1 / -1; border-bottom: none; border-right: none; flex-direction: row; gap: 20px; justify-content: center; }
  .founder-strip { flex-direction: column; text-align: center; }
  .founder-creds { justify-content: center; }
}

/* ============================================================
   V5 — STICKY CTA STRIP + LEAD MAGNET NAV LINK
   ============================================================ */

/* === STICKY AUDIT STRIP === */
.sticky-audit-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0D1F38 0%, #162A48 100%);
  border-top: 3px solid var(--orange);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -12px 48px rgba(0,0,0,0.45), 0 -3px 0 var(--orange), inset 0 1px 0 rgba(255,255,255,0.06);
}
.sticky-audit-strip.visible {
  transform: translateY(0);
}
.sticky-strip-text {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.sticky-strip-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,107,53,0.2);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.sticky-strip-copy {
  min-width: 0;
}
.sticky-strip-headline {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-strip-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-strip-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sticky-strip-cta {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}
.sticky-strip-cta:hover {
  background: #e55a25;
  transform: translateY(-1px);
}
.sticky-strip-dismiss {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.sticky-strip-dismiss:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Nav blog link */
.nav-link.blog-link { }

@media (max-width: 768px) {
  .sticky-audit-strip { padding: 12px 16px; gap: 12px; justify-content: flex-end; }
  .sticky-strip-text { display: none; }
  .sticky-strip-icon { display: none; }
  .sticky-strip-cta { font-size: 13px; padding: 10px 18px; }
}

/* === SVG ICON BOXES (replaces emojis) === */
.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; display: block; }
.icon-box.orange { background: rgba(255,107,53,0.1); color: var(--orange); }
.icon-box.blue { background: rgba(26,86,219,0.1); color: var(--blue); }
.icon-box.green { background: rgba(16,185,129,0.1); color: #10B981; }
.icon-box.navy { background: rgba(13,27,42,0.08); color: var(--navy); }

/* Sticky strip icon — SVG version */
.sticky-strip-icon svg { width: 18px; height: 18px; display: block; }
