/* ============================================================
   RetailAssured — Design System (InfinitaLab Theme)
   Dark: #111111 | Light: #f5f5f0 | Accent: #FFC107
   ============================================================ */

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

/* ---- CSS Tokens ---- */
:root {
  --bg-dark:       #111111;
  --bg-dark-2:     #1a1a1a;
  --bg-dark-3:     #222222;
  --bg-light:      #f5f5f0;
  --bg-white:      #ffffff;
  --accent:        #E1C921;
  --accent-dark:   #C6B11D;
  --text-light:    #ffffff;
  --text-muted-l:  #aaaaaa;
  --text-dark:     #111111;
  --text-muted-d:  #555555;
  --font-heading:  'Plus Jakarta Sans', sans-serif;
  --font-body:     'Inter', sans-serif;
  --radius:        4px;
  --transition:    0.2s ease;
  --container:     1200px;
  --shadow:        0 4px 24px rgba(0,0,0,0.4);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; font-weight: 700; }
p  { line-height: 1.7; }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section-dark  { background: var(--bg-dark);  color: var(--text-light); }
.section-dark2 { background: var(--bg-dark-2); color: var(--text-light); }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-white { background: var(--bg-white); color: var(--text-dark); }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* Section headings */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.1rem;
  opacity: 0.7;
  margin-bottom: 48px;
  max-width: 600px;
}
.section-header { margin-bottom: 48px; }
.section-header .accent-line {
  width: 48px; height: 4px;
  background: var(--accent);
  margin-bottom: 16px;
  border-radius: 2px;
}
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-center .accent-line { margin-left: auto; margin-right: auto; }

/* ---- Grid Utilities ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #111111;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--text-light);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---- Site Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}
.nav-wrapper {
  display: flex; align-items: center; gap: 8px;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  color: #111; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 18px;
  border-radius: var(--radius);
}
.logo-text {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem;
  color: var(--text-light);
}
.logo-text span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px;
  color: var(--text-muted-l);
  font-size: 0.9rem; font-weight: 500;
  border-radius: var(--radius);
  transition: color var(--transition);
  cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--text-light); }
.caret { font-size: 0.65rem; opacity: 0.6; }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 8px;
  z-index: 200;
}
.dropdown-inner {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.nav-item:hover .dropdown { display: block; }
.dropdown-header {
  padding: 10px 16px 6px;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted-l); font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  color: var(--text-muted-l); font-size: 0.88rem;
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: rgba(225,201,33,0.08); color: var(--accent); }
.dd-icon { font-size: 0.95rem; width: 20px; text-align: center; }

/* Mega menu — multi-column dropdowns */
.dropdown-mega .dropdown-inner { min-width: 460px; }
.dropdown-columns { display: grid; grid-template-columns: 1fr 1fr; }
.dropdown-col { border-right: 1px solid rgba(255,255,255,0.07); }
.dropdown-col:last-child { border-right: none; }
/* Right-align for items near the end of the nav */
.dropdown-end { right: 0; left: auto; }

.nav-actions { margin-left: 16px; flex-shrink: 0; }

/* Mobile toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--bg-dark);
  overflow-y: auto; z-index: 999;
  padding: 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav-group { margin-bottom: 28px; }
.mobile-nav-label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 10px;
}
.mobile-nav a {
  display: block; padding: 10px 0;
  color: var(--text-muted-l); font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-cta { margin-top: 24px; }

/* ---- Hero / Slider ---- */
.hero-slider {
  position: relative; height: 90vh; min-height: 540px; max-height: 800px;
  overflow: hidden; background: var(--bg-dark);
}
.slider-track {
  display: flex; height: 100%;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  flex: 0 0 100%; height: 100%;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.slide-1 { background: linear-gradient(135deg, #0a0e1a 0%, #111827 50%, #1a1a2e 100%); }
.slide-2 { background: linear-gradient(135deg, #0a1a0a 0%, #0d1f0d 50%, #111111 100%); }
.slide-3 { background: linear-gradient(135deg, #1a0a1a 0%, #1f0d2e 50%, #111111 100%); }

.slide::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(225,201,33,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.slide-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 0 24px;
}
.slide-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.slide-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--accent);
}
.slide-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.1; color: var(--text-light);
  margin-bottom: 20px;
}
.slide-title .accent { color: var(--accent); }
.slide-body {
  font-size: 1.1rem; color: var(--text-muted-l);
  margin-bottom: 36px; max-width: 520px;
  line-height: 1.7;
}
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider controls */
.slider-controls {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 24px; z-index: 10;
}
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.25); cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.dot.active { background: var(--accent); transform: scaleX(1.3); }
.slider-counter { color: var(--text-muted-l); font-size: 0.8rem; font-weight: 500; }
.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 20px; pointer-events: none; z-index: 5;
}
.slider-arrow {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all; color: white; font-size: 1.1rem;
  transition: all var(--transition); backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); color: #111; }
.slider-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; background: var(--accent);
  animation: progress 6s linear infinite;
}
@keyframes progress { from { width: 0; } to { width: 100%; } }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: space-evenly;
  gap: 16px; flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-muted-l); font-size: 0.85rem; font-weight: 500;
  white-space: nowrap;
}
.trust-item strong { color: var(--text-light); }
svg.ti-icon {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ---- Stats ---- */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0;
}
.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading); font-size: 3.2rem; font-weight: 800;
  color: var(--accent); line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem; color: var(--text-muted-l); line-height: 1.4;
}

/* ---- Cards ---- */
.card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card-icon {
  font-size: 2rem; margin-bottom: 16px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(225,201,33,0.1); border-radius: var(--radius);
}
.card-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card-body { color: var(--text-muted-l); font-size: 0.9rem; line-height: 1.6; }

/* Cards on light sections */
.section-light .card, .section-white .card {
  background: var(--bg-white);
  border-color: #e8e8e0;
  color: var(--text-dark);
}
.section-light .card:hover { border-color: var(--accent); }
.section-light .card-body { color: var(--text-muted-d); }

/* ---- Platform Cards ---- */
.platform-card {
  background: var(--bg-white);
  border: 1px solid #e8e8e0;
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.platform-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.platform-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-3px); }
.platform-icon { font-size: 2.4rem; margin-bottom: 16px; }
.platform-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); }
.platform-subtitle { color: var(--text-muted-d); font-size: 0.9rem; margin-bottom: 20px; }
.platform-features { list-style: none; margin-bottom: 28px; }
.platform-features li {
  padding: 7px 0;
  border-bottom: 1px solid #f0f0e8;
  font-size: 0.88rem; color: var(--text-dark);
  display: flex; align-items: center; gap: 8px;
}
.platform-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ---- Service Cards ---- */
.service-card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.service-card:hover { border-color: rgba(225,201,33,0.4); transform: translateY(-2px); }
.service-icon { font-size: 1.8rem; margin-bottom: 16px; color: var(--accent); }
.service-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-desc { color: var(--text-muted-l); font-size: 0.88rem; line-height: 1.6; }

/* ---- How It Works ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.step-item { text-align: center; }
.step-number {
  width: 64px; height: 64px;
  background: var(--accent); color: #111;
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-desc { color: var(--text-muted-l); font-size: 0.88rem; line-height: 1.6; }

/* ---- Industries ---- */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.industry-card {
  background: var(--bg-white); border: 1px solid #e8e8e0;
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
  transition: all var(--transition); text-decoration: none; color: var(--text-dark);
  display: block;
}
.industry-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.industry-icon { font-size: 2rem; margin-bottom: 10px; }
.industry-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; }

/* ---- Two-column layout utility ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.two-col.align-center { align-items: center; }
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Comparison Table ---- */
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  padding: 16px 20px; text-align: left;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  background: rgba(255,255,255,0.05);
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.comparison-table th:first-child { color: var(--text-muted-l); }
.comparison-table th:last-child { color: var(--accent); }
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: #22c55e; font-size: 1rem; }
.comparison-table .cross { color: #ef4444; font-size: 1rem; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 32px;
}
.testimonial-quote { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted-l); margin-bottom: 24px; }
.testimonial-quote::before { content: '"'; color: var(--accent); font-size: 2rem; line-height: 0; vertical-align: -0.6rem; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #111;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1rem;
}
.author-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; }
.author-role { font-size: 0.8rem; color: var(--text-muted-l); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  align-items: start;
}
.faq-col { min-width: 0; }
@media (max-width: 720px) {
  .faq-2col { grid-template-columns: 1fr; }
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.section-light .faq-item { border-bottom: 1px solid #e8e8e0; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0; background: none; border: none; cursor: pointer;
  text-align: left; color: inherit;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
}
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(225,201,33,0.1); border-radius: 50%; color: var(--accent); font-size: 1rem;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; color: var(--text-muted-l); line-height: 1.7; font-size: 0.95rem; }
.section-light .faq-answer { color: var(--text-muted-d); }
.faq-item.open .faq-answer { display: block; }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 36px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--bg-dark-3);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #111;
  padding: 4px 16px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; font-family: var(--font-heading);
  white-space: nowrap;
}
.pricing-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.pricing-price {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800;
  color: var(--accent); margin: 16px 0 4px; line-height: 1;
}
.pricing-period { font-size: 0.85rem; color: var(--text-muted-l); margin-bottom: 24px; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem; display: flex; align-items: center; gap: 8px;
  color: var(--text-muted-l);
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 0.85rem; }

/* ---- Info Boxes ---- */
.info-box {
  padding: 20px 24px; border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  background: rgba(225,201,33,0.06);
  margin: 24px 0;
}
.info-box.success { border-color: #22c55e; background: rgba(34,197,94,0.06); }
.info-box.warning { border-color: #f59e0b; background: rgba(245,158,11,0.06); }
.info-box.danger  { border-color: #ef4444; background: rgba(239,68,68,0.06); }

/* ---- Contact Form ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted-l); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg-dark-2); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); color: var(--text-light); font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-dark-2); }

/* ---- Page Hero ---- */
.page-hero {
  background: var(--bg-dark);
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 16px;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--accent); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-muted-l); font-size: 1.1rem; max-width: 640px; }

/* ---- CTA Section ---- */
.cta-section {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center; padding: 80px 0;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--text-muted-l); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.22s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(225,201,33,0.35);
  background: rgba(225,201,33,0.03);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.blog-card-stripe { height: 3px; }
.blog-card-stripe.cat-supply-chain    { background: #E1C921; }
.blog-card-stripe.cat-retail-platform { background: #3b82f6; }
.blog-card-stripe.cat-regulation-safety  { background: #ef4444; }
.blog-card-stripe.cat-product-technology { background: #8b5cf6; }
.blog-card-stripe.cat-industry-structure { background: #10b981; }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-category-tag {
  display: inline-block;
  padding: 3px 10px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.cat-supply-chain    + .blog-card-body .blog-category-tag,
.blog-card[data-category="supply-chain"] .blog-category-tag    { background: rgba(225,201,33,0.1); color: #E1C921; }
.blog-card[data-category="retail-platform"] .blog-category-tag { background: rgba(59,130,246,0.12); color: #60a5fa; }
.blog-card[data-category="regulation-safety"] .blog-category-tag { background: rgba(239,68,68,0.12); color: #f87171; }
.blog-card[data-category="product-technology"] .blog-category-tag { background: rgba(139,92,246,0.12); color: #a78bfa; }
.blog-card[data-category="industry-structure"] .blog-category-tag { background: rgba(16,185,129,0.12); color: #34d399; }
.blog-card-title {
  font-family: var(--font-heading); font-size: 0.98rem; font-weight: 700;
  color: #fff; margin-bottom: 10px; line-height: 1.42;
}
.blog-card-excerpt { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-card-link {
  color: rgba(255,255,255,0.5); font-size: 0.82rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
.blog-card-link:hover { color: var(--accent); }

/* Blog post page */
.blog-post-hero { padding: 72px 0 56px; }
.blog-post-meta { margin-bottom: 16px; }
.blog-post-title { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; margin-bottom: 20px; }
.blog-post-excerpt { font-size: 1.15rem; color: var(--text-muted-l); max-width: 720px; line-height: 1.7; }
.blog-post-body .container {
  display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start;
}
.blog-article { padding: 48px 0; }
.blog-article h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--text-dark); }
.blog-article h3 { font-size: 1.15rem; margin: 28px 0 12px; color: var(--text-dark); }
.blog-article p { margin-bottom: 16px; color: var(--text-muted-d); font-size: 0.95rem; line-height: 1.8; }
.blog-article ul, .blog-article ol { margin: 16px 0 16px 24px; color: var(--text-muted-d); }
.blog-article li { margin-bottom: 8px; font-size: 0.95rem; line-height: 1.7; }
.blog-article table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.blog-article th, .blog-article td { padding: 10px 14px; border: 1px solid #e8e8e0; font-size: 0.88rem; }
.blog-article th { background: #f5f5f0; font-weight: 700; text-align: left; }
.sidebar-cta-card {
  background: var(--bg-dark); color: var(--text-light);
  border-radius: var(--radius); padding: 28px;
  position: sticky; top: 90px; margin-top: 48px;
}
.sidebar-cta-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.sidebar-cta-card p { font-size: 0.88rem; color: var(--text-muted-l); margin-bottom: 20px; line-height: 1.6; }

/* Blog filters */
.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 20px; border-radius: 20px;
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted-l); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition); font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); border-color: var(--accent); color: #111;
}
.blog-search {
  width: 100%; max-width: 400px; padding: 12px 16px;
  background: var(--bg-dark-2); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); color: var(--text-light); font-size: 0.95rem;
  font-family: var(--font-body); margin-bottom: 24px;
}
.blog-search:focus { outline: none; border-color: var(--accent); }

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted-l); font-size: 0.88rem; line-height: 1.7; margin-top: 12px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted-l); font-size: 0.85rem; font-weight: 700;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #111; }
.footer-col h4 {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted-l); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 16px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; color: var(--text-muted-l);
}
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  padding: 4px 10px; border-radius: 2px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted-l); letter-spacing: 0.05em;
}
.footer-bottom a { color: var(--text-muted-l); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ---- Utilities ---- */
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gap-y-2 > * + * { margin-top: 8px; }

/* ---- Scroll Reveal ---- */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="100"] { transition-delay: 0.1s; }
[data-reveal][data-delay="200"] { transition-delay: 0.2s; }
[data-reveal][data-delay="300"] { transition-delay: 0.3s; }
[data-reveal][data-delay="400"] { transition-delay: 0.4s; }
[data-reveal][data-delay="500"] { transition-delay: 0.5s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
  .blog-post-body .container { grid-template-columns: 1fr; }
  .sidebar-cta-card { position: static; margin-top: 0; }
  .hero-slider { height: 70vh; }
  .slide-title { font-size: 1.8rem; }
  .section { padding: 60px 0; }
  /* Hero 2-col grid → stack on mobile */
  .page-hero .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .page-hero svg { max-width: 320px !important; margin: 24px auto 0; }
  .checklist-page-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .slider-arrows { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO SLIDER — Full component styles
   ============================================================ */

/* Slide counter (top-left) */
.slide-counter {
  position: absolute; top: 20px; left: 24px; z-index: 10;
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
  color: rgba(255,255,255,0.4); letter-spacing: 0.05em;
}

/* Inner layout: left content + right visual (2 columns) */
.slide-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 60px;
}
.slide-content {
  flex: 0 0 52%; max-width: 640px;
  position: relative; z-index: 2;
}
.slide-visual {
  flex: 1;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}

/* Slide text classes */
.slide-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.slide-kicker::before {
  content: ''; display: block; width: 22px; height: 2px; background: var(--accent);
}
.slide-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  color: var(--text-light); margin-bottom: 20px;
}
.slide-headline em {
  font-style: italic; color: var(--accent);
}
.slide-subtext {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 32px; max-width: 500px;
}
.slide-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px;
}
.slide-proof {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(255,255,255,0.45); font-weight: 500;
}
.slide-proof-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.25); flex-shrink: 0;
}

/* White outline button for slides */
.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 12px 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-outline-white:hover {
  border-color: var(--accent); color: var(--accent);
}

/* Slider dots (HTML uses .slider-dot, controls use .slider-arrow) */
.slider-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.25); cursor: pointer; border: none;
  padding: 0; transition: background 0.3s ease, transform 0.3s ease;
}
.slider-dot.active { background: var(--accent); transform: scaleX(1.3); }

/* Slider controls layout */
.slider-controls {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 20px; z-index: 10;
}
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: white; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); color: #111; }

/* Progress bar */
.slider-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.1); z-index: 10;
}
.slider-progress-fill {
  height: 100%; background: var(--accent); width: 0;
  transition: width 0.1s linear;
}

/* ---- VIS: Amazon compliance card (Slide 1) ---- */
.vis-amazon {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 28px;
  width: 100%; max-width: 520px;
  font-size: 0.88rem;
  backdrop-filter: blur(8px);
}
.vis-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vis-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--text-light); }
.vis-badge {
  padding: 4px 12px; border-radius: 20px; font-size: 0.76rem; font-weight: 700;
}
.vis-badge.live { background: rgba(34,197,94,0.15); color: #4ade80; }
.vis-badge.alert { background: rgba(239,68,68,0.15); color: #f87171; }
.vis-sku-list { margin-bottom: 16px; }
.vis-sku-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vis-sku-row:last-child { border-bottom: none; }
.vis-sku-icon {
  width: 36px; height: 36px; border-radius: 8px; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vis-sku-icon.amazon-bg { background: rgba(255,153,0,0.15); }
.vis-sku-info { flex: 1; min-width: 0; }
.sku-name { font-weight: 600; color: var(--text-light); font-size: 0.88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sku-tests { color: rgba(255,255,255,0.4); font-size: 0.78rem; margin-top: 3px; }
.vis-status { padding: 4px 10px; border-radius: 4px; font-size: 0.76rem; font-weight: 700; white-space: nowrap; }
.vis-status.ok { background: rgba(34,197,94,0.12); color: #4ade80; }
.vis-status.review { background: rgba(250,204,21,0.12); color: #fbbf24; }
.vis-bar {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08);
}
.vis-bar-label { color: rgba(255,255,255,0.45); font-size: 0.73rem; white-space: nowrap; }
.vis-bar-track {
  flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden;
}
.vis-bar-fill { height: 100%; background: var(--accent); border-radius: 3px; }
.vis-bar-pct { color: var(--accent); font-weight: 700; font-size: 0.8rem; white-space: nowrap; }

/* ---- VIS: Walmart audit steps (Slide 2) ---- */
.vis-walmart {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 20px;
  width: 100%; max-width: 420px;
  backdrop-filter: blur(8px);
}
.vis-audit-steps { display: flex; flex-direction: column; gap: 0; }
.vis-audit-step {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vis-audit-step:last-child { border-bottom: none; padding-bottom: 0; }
.vis-step-circle {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.vis-step-circle.done { background: rgba(34,197,94,0.15); color: #4ade80; border: 1.5px solid rgba(34,197,94,0.3); }
.vis-step-circle.active { background: rgba(225,201,33,0.15); color: var(--accent); border: 1.5px solid rgba(225,201,33,0.4); }
.vis-step-circle.pending { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.3); border: 1.5px solid rgba(255,255,255,0.1); font-size: 0.75rem; }
.vis-step-body { flex: 1; }
.step-label { font-size: 0.82rem; font-weight: 600; color: var(--text-light); }
.step-sublabel { font-size: 0.73rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.step-sublabel.active-text { color: var(--accent); }

/* ---- VIS: Multi-platform dashboard (Slide 3) ---- */
.vis-multi {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 20px;
  width: 100%; max-width: 420px;
  backdrop-filter: blur(8px);
}
.vis-platform-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vis-platform-row:last-of-type { border-bottom: none; }
.vis-platform-logo {
  width: 60px; height: 28px; border-radius: 4px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; letter-spacing: -0.02em;
}
.vis-platform-logo.amazon { background: rgba(255,153,0,0.15); color: #ff9900; }
.vis-platform-logo.walmart { background: rgba(0,119,200,0.15); color: #0077c8; }
.vis-platform-logo.costco { background: rgba(0,103,177,0.15); color: #0067b1; }
.vis-platform-info { flex: 1; min-width: 0; }
.pl-skus { font-size: 0.8rem; font-weight: 600; color: var(--text-light); }
.pl-status { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.vis-platform-score {
  padding: 3px 8px; border-radius: 4px; font-size: 0.78rem; font-weight: 700;
}
.vis-platform-score.full { background: rgba(34,197,94,0.12); color: #4ade80; }
.vis-platform-score.partial { background: rgba(250,204,21,0.12); color: #fbbf24; }
.vis-summary {
  display: flex; gap: 0; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.vis-summary-item { flex: 1; text-align: center; }
.sv-num { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--accent); }
.sv-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* Responsive hero */
@media (max-width: 900px) {
  .slide-inner { gap: 30px; padding-top: 60px; }
  .slide-content { flex: 1; }
  .slide-visual { display: none; }
}
@media (max-width: 600px) {
  .slide-headline { font-size: 1.7rem; }
}

/* ============================================================
   REDESIGN — stackbyte.dev inspired UI/UX
   Dark theme · Dot grid · Glow effects · Glassmorphism
   ============================================================ */

/* ---- Base overrides ---- */
body { background: #090909; }

/* ---- Nav: frosted glass ---- */
.site-header {
  background: rgba(9,9,9,0.8) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}

/* ---- Eyebrow pill badge ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(225,201,33,0.22);
  background: rgba(225,201,33,0.05);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ---- New Hero ---- */
.hero-new {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  background: #090909;
  overflow: hidden;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Canvas grid background */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-top {
  position: absolute;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
  height: 700px;
  background: radial-gradient(ellipse at center top, rgba(225,201,33,0.12) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.hero-new-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero left content */
.hero-content { max-width: 560px; }

/* Pill badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 16px 6px 10px;
  border: 1px solid rgba(225,201,33,0.28);
  background: rgba(225,201,33,0.05);
  border-radius: 9999px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  cursor: default;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0;
  animation: badge-pulse 2.2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50%       { opacity: 0.45; box-shadow: 0 0 3px var(--accent); }
}

/* Hero title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 22px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.85;
}
.hero-eyebrow-dash {
  font-size: 1rem;
  line-height: 1;
}

.hero-accent {
  font-style: italic;
  color: var(--accent);
  text-shadow: 0 0 48px rgba(225,201,33,0.3);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 38px;
}

/* Hero CTAs */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}

.btn-glow {
  box-shadow: 0 0 22px rgba(225,201,33,0.3), 0 4px 16px rgba(0,0,0,0.4);
}
.btn-glow:hover {
  box-shadow: 0 0 38px rgba(225,201,33,0.5), 0 8px 24px rgba(0,0,0,0.5) !important;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: rgba(225,201,33,0.38);
  color: var(--accent);
  background: rgba(225,201,33,0.05);
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.27);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-trust-sep { opacity: 0.4; }

/* Hero right — visual cards */
.hero-visual { position: relative; }

.hero-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.hero-card-wrap::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(225,201,33,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Main vis card upgrades */
.hero-vis-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px !important;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06) !important;
  position: relative;
  overflow: hidden;
}

.hero-vis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(225,201,33,0.45) 50%, transparent 95%);
}

/* Step strip */
.hero-step-strip {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-step-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
}

.hero-step-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  margin: 0 14px;
  flex-shrink: 0;
}

.hero-step-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-step-icon.done {
  background: rgba(34,197,94,0.14);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.24);
}
.hero-step-icon.active {
  background: rgba(225,201,33,0.14);
  color: var(--accent);
  border: 1px solid rgba(225,201,33,0.3);
}

.hero-step-label {
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255,255,255,0.52);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hero responsive */
@media (max-width: 960px) {
  .hero-new-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-new { min-height: auto; padding: 90px 0 70px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-ghost { width: 100%; justify-content: center; }
}

/* ---- Dark sections: subtle dot grid ---- */
.section-dark {
  background-image: radial-gradient(circle, rgba(255,255,255,0.038) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
}

/* ---- Card hover glow ---- */
.card:hover {
  border-color: rgba(225,201,33,0.22) !important;
  box-shadow: 0 0 28px rgba(225,201,33,0.06), 0 8px 32px rgba(0,0,0,0.35) !important;
  transform: translateY(-3px);
}

/* ---- Section headers centered layout ---- */
.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header h2 { max-width: 680px; }
.section-header p  { max-width: 580px; color: rgba(255,255,255,0.5); margin-top: 14px; }
.section-light .section-header p { color: rgba(17,17,17,0.55); }

/* ---- CTA section glow ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle, rgba(255,255,255,0.038) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center top, rgba(225,201,33,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- Comparison table on light bg override ---- */
.section-light .comparison-table th { background: rgba(0,0,0,0.04); }
.section-light .comparison-table td { border-bottom: 1px solid rgba(0,0,0,0.07); }

/* ---- Platform cards: top accent line glow ---- */
.platform-card::before {
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0.7;
}

/* ---- Checklist style ---- */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
}
.checklist li::before {
  content: '✓';
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(225,201,33,0.12);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
}

/* ============================================================
   FULL DARK THEME UNIFICATION
   All section-light sections become a slightly offset dark (#0c0c0c)
   so they alternate subtly with section-dark (#111)
   ============================================================ */

/* Override section-light to dark */
.section-light {
  background: #0c0c0c !important;
  color: var(--text-light) !important;
  background-image: radial-gradient(circle, rgba(255,255,255,0.028) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
}
.section-light h2,
.section-light h3,
.section-light h4 { color: #fff; }
.section-light p   { color: rgba(255,255,255,0.55); }

/* Trust bar: border separator, very subtle */
.trust-bar {
  background: rgba(255,255,255,0.025) !important;
  border-top: 1px solid rgba(255,255,255,0.055) !important;
  border-bottom: 1px solid rgba(255,255,255,0.055) !important;
}
.trust-item       { color: rgba(255,255,255,0.38) !important; }
.ti-icon          { color: var(--accent) !important; opacity: 0.85; }

/* Section-header paragraph in light sections (was dark text) */
.section-light .section-header p { color: rgba(255,255,255,0.48) !important; }

/* Cards in light sections: glassmorphism */
.section-light .card,
.section-white .card {
  background: rgba(255,255,255,0.035) !important;
  border-color: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.65) !important;
}
.section-light .card h3,
.section-light .card h4 { color: #fff !important; }
.section-light .card p  { color: rgba(255,255,255,0.52) !important; }
.section-light .card:hover {
  border-color: rgba(225,201,33,0.22) !important;
  box-shadow: 0 0 28px rgba(225,201,33,0.06), 0 8px 32px rgba(0,0,0,0.4) !important;
  transform: translateY(-3px);
}
.section-light .card-body { color: rgba(255,255,255,0.5) !important; }

/* Platform cards */
.platform-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  color: rgba(255,255,255,0.65) !important;
}
.platform-card h3 { color: #fff; }
.platform-card p  { color: rgba(255,255,255,0.5); }
.platform-card:hover {
  border-color: rgba(225,201,33,0.28) !important;
  box-shadow: 0 0 32px rgba(225,201,33,0.08), 0 8px 40px rgba(0,0,0,0.4) !important;
  transform: translateY(-3px);
}
.platform-link { color: var(--accent) !important; }

/* btn-outline-dark on dark background */
.btn-outline-dark {
  color: rgba(255,255,255,0.72) !important;
  border-color: rgba(255,255,255,0.2) !important;
  background: transparent !important;
}
.btn-outline-dark:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,0.45) !important;
  background: rgba(255,255,255,0.06) !important;
  transform: translateY(-1px);
}

/* btn-outline-white in CTA */
.btn-outline-white {
  background: transparent !important;
  color: rgba(255,255,255,0.82) !important;
  border: 2px solid rgba(255,255,255,0.28) !important;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
}

/* FAQ on dark */
.section-light .faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}
.faq-question {
  color: rgba(255,255,255,0.82) !important;
  background: transparent !important;
}
.faq-question:hover { color: #fff !important; }
.section-light .faq-answer {
  color: rgba(255,255,255,0.48) !important;
}

/* Comparison table on dark */
.comparison-table th {
  background: rgba(255,255,255,0.04) !important;
  color: rgba(255,255,255,0.75) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
.comparison-table td {
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.62) !important;
}
.comparison-table tr:hover td { background: rgba(255,255,255,0.02) !important; }

/* Why-us text */
.section-dark p,
.section-dark .text-medium { color: rgba(255,255,255,0.55) !important; }
.section-dark h3           { color: #fff; }

/* Card icons in problem section (red bg icons) */
.section-light .card-icon  { filter: brightness(1.1); }

/* Platform logo text badges */
.platform-logo.amazon { color: var(--accent) !important; }
.platform-logo.Walmart,
.platform-logo { color: rgba(255,255,255,0.7) !important; }

/* ---- Checklist on dark sections ---- */
.section-light .checklist li { color: rgba(255,255,255,0.7) !important; }
.section-light .checklist li::before { filter: none; }

/* ============================================================
   COMPLIANCE SHIELD — HERO VISUAL
   ============================================================ */

.shield-orbit-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

.orbit-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Compliance bubbles */
.comp-bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 10px;
  background: rgba(15,15,15,0.85);
  border: 1px solid rgba(225,201,33,0.28);
  border-radius: 20px;
  font-size: 0.71rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  backdrop-filter: blur(12px);
  z-index: 4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.cb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(225,201,33,0.7);
}

/* Bubble positions */
.cb-tl { top: 7%;  left: 4%;  animation: bfloat 3.5s ease-in-out infinite 0s; }
.cb-tr { top: 7%;  right: 4%; animation: bfloat 3.5s ease-in-out infinite 0.6s; }
.cb-r  { top: 46%; right: 0;  animation: bfloat-mid 3.5s ease-in-out infinite 1.1s; }
.cb-br { bottom: 7%; right: 4%; animation: bfloat 3.5s ease-in-out infinite 1.7s; }
.cb-bl { bottom: 7%; left: 4%;  animation: bfloat 3.5s ease-in-out infinite 2.3s; }
.cb-l  { top: 46%; left: 0;   animation: bfloat-mid 3.5s ease-in-out infinite 2.8s; }

@keyframes bfloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes bfloat-mid {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}

/* Pulse rings */
.pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(225,201,33,0.1);
  pointer-events: none;
  z-index: 2;
}
.pr1 { width: 210px; height: 210px; margin: -105px 0 0 -105px; animation: ring-pulse 4s ease-in-out infinite 0s; }
.pr2 { width: 280px; height: 280px; margin: -140px 0 0 -140px; animation: ring-pulse 4s ease-in-out infinite 1.2s; }
@keyframes ring-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 0.12; transform: scale(1.04); }
}

/* Shield core */
.shield-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.shield-svg {
  width: 148px;
  height: 175px;
  filter: drop-shadow(0 0 24px rgba(225,201,33,0.28)) drop-shadow(0 0 8px rgba(225,201,33,0.15));
}

/* Category label below shield */
.shield-category-wrap {
  margin-top: 12px;
  text-align: center;
}
.shield-for-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.shield-cat-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 140px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.shield-cat-text.fading {
  opacity: 0;
  transform: translateY(6px);
}

/* Bottom cert badge */
.shield-cert-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(225,201,33,0.06);
  border: 1px solid rgba(225,201,33,0.2);
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  z-index: 4;
}
.scb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1080px) {
  .shield-orbit-wrap { width: 360px; height: 360px; }
}

/* ============================================================
   VALUE PROPS STRIP
   ============================================================ */

.value-props-strip {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 48px 0;
}

.vps-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0 32px;
  align-items: start;
}

.vps-sep {
  background: rgba(255,255,255,0.07);
  height: 100%;
  min-height: 80px;
}

.vps-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 8px 16px;
}

.vps-icon-wrap {
  flex-shrink: 0;
  opacity: 0.9;
}

.vps-body h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.vps-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .vps-grid { grid-template-columns: 1fr; gap: 24px; }
  .vps-sep { display: none; }
}

/* ============================================================
   HOW IT WORKS — STEP TIMELINE
   ============================================================ */

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.step-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
  position: relative;
}

.step-bubble {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(225,201,33,0.07);
  border: 1.5px solid rgba(225,201,33,0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.step-bubble:hover {
  background: rgba(225,201,33,0.15);
  border-color: rgba(225,201,33,0.6);
  transform: scale(1.07);
  box-shadow: 0 0 24px rgba(225,201,33,0.18);
}
.step-num {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.06em;
  line-height: 1;
}
.step-emoji { font-size: 1.35rem; line-height: 1; }
.step-svg-icon { display: block; flex-shrink: 0; }

/* Connecting line between steps — absolutely positioned so bubble stays centered */
.step-line {
  position: absolute;
  top: 50%;
  left: calc(50% + 38px);
  right: -50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(225,201,33,0.25), rgba(225,201,33,0.08));
  pointer-events: none;
}

.step-detail h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-detail p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .steps-timeline { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .step-line { display: none; }
}
@media (max-width: 560px) {
  .steps-timeline { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPLIANCE PACK — STICKY LEFT / SCROLL RIGHT
   ============================================================ */

.sticky-pack-section { overflow: visible !important; }

.sticky-pack-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.sticky-pack-left {
  position: sticky;
  top: 90px;
}

/* Step progress sidebar */
.spl-progress {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 20px;
}

.spl-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  cursor: default;
  transition: all 0.25s;
  opacity: 0.38;
  border-left: 2px solid transparent;
  margin-left: -21px;
  padding-left: 19px;
}
.spl-step.active {
  opacity: 1;
  border-left-color: var(--accent);
}
.spl-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 24px;
}
.spl-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* Scroll right cards */
.sticky-pack-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pack-step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.pack-step-card.active {
  background: rgba(255,255,255,0.05);
  border-color: rgba(225,201,33,0.28);
  box-shadow: 0 0 32px rgba(225,201,33,0.07), 0 8px 40px rgba(0,0,0,0.3);
}

.psc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.psc-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(225,201,33,0.18);
  line-height: 1;
  min-width: 52px;
}
.psc-icon { font-size: 1.8rem; }

.pack-step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.pack-step-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; }

.psc-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.psc-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}
.psc-list li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.pack-outcome {
  background: rgba(225,201,33,0.04);
  border: 1px solid rgba(225,201,33,0.14);
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
}
.pack-outcome p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 900px) {
  .sticky-pack-layout { grid-template-columns: 1fr; }
  .sticky-pack-left { position: relative; top: auto; }
  .spl-progress { display: none; }
}

/* ============================================================
   CATEGORIES — STICKY LEFT / HORIZONTAL SCROLL RIGHT
   ============================================================ */

.cat-section { padding: 0 !important; }

.cat-layout {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

.cat-sticky-left {
  flex: 0 0 320px;
  position: sticky;
  top: 90px;
  padding-right: 48px;
  z-index: 1;
}

.cat-sticky-left .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(225,201,33,0.1);
  border: 1px solid rgba(225,201,33,0.2);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.cat-sticky-left h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #fff;
}

.cat-sticky-left p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cat-left-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cat-left-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.cat-left-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.cat-scroll-right {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(225,201,33,0.25) transparent;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.cat-scroll-right::-webkit-scrollbar { height: 4px; }
.cat-scroll-right::-webkit-scrollbar-track { background: transparent; }
.cat-scroll-right::-webkit-scrollbar-thumb { background: rgba(225,201,33,0.3); border-radius: 2px; }

.cat-cards-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 4px 0 4px 4px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 240px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.cat-card:hover {
  border-color: rgba(225,201,33,0.35);
  background: rgba(225,201,33,0.04);
  transform: translateY(-4px);
}

.cat-card-visual {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  padding: 24px;
}
.cat-card-visual svg { width: 100%; height: 100%; }

.cat-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat-card-body h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cat-tags span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: rgba(225,201,33,0.1);
  border-radius: 4px;
  padding: 2px 7px;
}
.cat-card-body p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 860px) {
  .cat-layout {
    flex-direction: column;
    padding: 48px 20px;
  }
  .cat-sticky-left {
    flex: none;
    position: static;
    padding-right: 0;
    margin-bottom: 32px;
  }
  .cat-scroll-right { width: 100%; }
}

/* ============================================================
   PLATFORM LOGOS (Amazon & Walmart SVG)
   ============================================================ */

.platform-logo-wrap {
  margin-bottom: 20px;
}
.plat-logo-svg {
  display: block;
  height: 44px;
  width: auto;
}

/* ============================================================
   TESTIMONIALS — 2-ROW MARQUEE
   ============================================================ */

.tm-track-wrap {
  overflow: hidden;
  margin: 0 -20px 20px;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.tm-track-wrap:last-of-type { margin-bottom: 0; }

.tm-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.tm-left .tm-track  { animation: tmScrollLeft 40s linear infinite; }
.tm-right .tm-track { animation: tmScrollRight 40s linear infinite; }

.tm-track-wrap:hover .tm-track { animation-play-state: paused; }

@keyframes tmScrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes tmScrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.tm-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 24px 20px;
  transition: border-color 0.25s, background 0.25s;
}
.tm-card:hover {
  border-color: rgba(225,201,33,0.28);
  background: rgba(225,201,33,0.04);
}

.tm-stars {
  color: #E1C921;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.tm-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.tm-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tm-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.tm-role {
  font-size: 0.74rem;
  color: rgba(225,201,33,0.7);
}

/* ============================================================
   INSIDE PAGES — MISSING / PATCH CSS
   ============================================================ */

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.22); }

/* ---- Page hero subtitle alias ---- */
.hero-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.75;
  margin-top: 8px;
}

/* ---- CTA buttons alias ---- */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Vertical steps (process list) ---- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
/* .step-item defined above as horizontal — override to flex-row for vertical flow */
.steps .step-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 28px !important;
  padding: 32px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}
.steps .step-item:last-child { border-bottom: none !important; }
.steps .step-number {
  width: 44px !important;
  height: 44px !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  background: rgba(225,201,33,0.08) !important;
  border: 2px solid rgba(225,201,33,0.35) !important;
  color: var(--accent) !important;
  font-family: var(--font-heading) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}
.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step-content p {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  line-height: 1.72;
}

/* ---- Process flow (horizontal arrow chain) ---- */
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 900px;
}
.flow-stage {
  flex: 1;
  min-width: 130px;
  max-width: 200px;
  text-align: center;
  padding: 20px 12px;
}
.flow-icon {
  width: 56px;
  height: 56px;
  background: rgba(225,201,33,0.08);
  border: 1px solid rgba(225,201,33,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
}
.flow-label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.flow-stage p {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.42) !important;
  line-height: 1.5;
}
.flow-arrow {
  font-size: 1.2rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  padding-top: 32px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ---- Documentation checklist groups ---- */
.documentation-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.checklist-group {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 22px 24px;
  transition: border-color 0.2s;
}
.checklist-group:hover { border-color: rgba(225,201,33,0.2); }
.checklist-group h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 14px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.checklist-group .checklist { gap: 7px; }
.checklist-group .checklist li { font-size: 0.84rem !important; color: rgba(255,255,255,0.58) !important; }

/* ---- Card badges ---- */
.card-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.badge-primary { background: rgba(225,201,33,0.12); color: var(--accent); }
.badge-accent  { background: rgba(99,179,237,0.12);  color: #63b3ed; }
.badge-success { background: rgba(72,187,120,0.12);  color: #68d391; }
.badge-danger  { background: rgba(252,129,74,0.12);  color: #fc814a; }
.badge-purple  { background: rgba(159,122,234,0.12); color: #b794f4; }

/* ---- Form control aliases (for contact.html etc) ---- */
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 0.93rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
}
.form-control::placeholder { color: rgba(255,255,255,0.25); }
.form-control option { background: #111; }

/* ---- FAQ toggle alias (some pages use .faq-toggle instead of .faq-icon) ---- */
.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225,201,33,0.08);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 300;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(225,201,33,0.15);
}

/* ---- Info box: dark mode fix for light-bg info boxes ---- */
.info-box {
  background: rgba(225,201,33,0.05) !important;
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.info-box strong { color: #fff; }
.info-box.success { border-color: #4ade80 !important; background: rgba(74,222,128,0.05) !important; }
.info-box.warning { border-color: #fbbf24 !important; background: rgba(251,191,36,0.05) !important; }
.info-box.danger  { border-color: #f87171 !important; background: rgba(248,113,113,0.05) !important; }

/* ---- Comparison table: inside pages  ---- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ---- Two-column info strip (contact page) ---- */
.info-strip {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
}
.info-strip h3 {
  font-family: var(--font-heading);
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 16px !important;
}
.info-strip p { color: rgba(255,255,255,0.5) !important; font-size: 0.88rem !important; }

/* ---- Step process (numbered step in info strip) ---- */
.next-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.next-step:last-child { margin-bottom: 0; }
.next-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(225,201,33,0.1);
  border: 1px solid rgba(225,201,33,0.25);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.next-step-body { flex: 1; }
.next-step-body strong { font-size: 0.88rem; color: #fff; display: block; margin-bottom: 3px; }
.next-step-body p { font-size: 0.82rem !important; color: rgba(255,255,255,0.45) !important; margin: 0 !important; }

/* ---- Page hero: slight glow ---- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: #090909 !important;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center top, rgba(225,201,33,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { position: relative; z-index: 1; }
.page-hero p, .page-hero .hero-subtitle, .page-hero .breadcrumb { position: relative; z-index: 1; }

/* ============================================================
   WALMART SUPPLIER QUALIFICATION STEPS — CARD GRID
   ============================================================ */
.qual-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.qual-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.qual-step:hover {
  border-color: rgba(225,201,33,0.3);
  background: rgba(225,201,33,0.03);
}
.qual-step-full {
  grid-column: 1 / -1;
}
.qual-step-badge {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(225,201,33,0.06);
  position: absolute;
  top: 8px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.qual-step-icon {
  width: 42px;
  height: 42px;
  background: rgba(225,201,33,0.08);
  border: 1px solid rgba(225,201,33,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.qual-step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.qual-step p {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  line-height: 1.72;
  margin: 0 0 16px;
}
.qual-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(225,201,33,0.08);
  border: 1px solid rgba(225,201,33,0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
@media (max-width: 640px) {
  .qual-steps-grid { grid-template-columns: 1fr; }
  .qual-step-full { grid-column: 1; }
}

/* ============================================================
   BLOG — HERO WITH GRAPHIC
   ============================================================ */
.blog-hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  background: #090909;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1400&auto=format&fit=crop&q=60') center/cover no-repeat;
  opacity: 0.06;
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #090909);
}
.blog-hero .container { position: relative; z-index: 1; }
.blog-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.blog-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 32px;
}
.blog-hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.blog-hero-stat {
  text-align: center;
}
.blog-hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}
.blog-hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Blog filter section */
.blog-filters {
  background: #0c0c0c;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.filters-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}
.search-wrapper { flex-shrink: 0; }

/* Blog grid section */
.blog-grid-section { background: #090909; padding: 48px 0 72px; }

/* Blog card — fix body class */
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

/* Category stripe classes */
.blog-card-stripe.cat-supply-chain    { background: var(--accent); }
.blog-card-stripe.cat-retail-platform { background: #3b82f6; }
.blog-card-stripe.cat-regulation-safety { background: #ef4444; }
.blog-card-stripe.cat-product-technology { background: #8b5cf6; }
.blog-card-stripe.cat-industry-structure { background: #10b981; }

/* Resource page TOC — dark theme */
.toc-dark {
  margin-bottom: 32px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.toc-dark strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.toc-dark ol {
  margin: 0;
  padding-left: 20px;
}
.toc-dark ol li {
  margin-bottom: 6px;
}
.toc-dark ol li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.toc-dark ol li a:hover { color: var(--accent); }

/* Resource page sidebar */
.sidebar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-card ul li {
  margin-bottom: 6px;
}
.sidebar-card ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.sidebar-card ul li a:hover { color: var(--accent); }

/* Interactive checklist item (resource pages) */
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.checklist-item label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  cursor: pointer;
}
.checklist-item label strong { color: #fff; }
.checklist-item label small {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin-top: 2px;
}
.checklist-item input:checked ~ label { color: rgba(255,255,255,0.38); text-decoration: line-through; }
div.checklist {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
