/* ============================================
   Chipp Site Base Styles (platform-injected)
   ============================================ */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* --- Mobile Navigation (hamburger) --- */

/* Hidden checkbox that powers the toggle */
.nav-toggle { display: none; }

/* Hamburger icon — hidden on desktop, visible on mobile */
.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav-toggle-label .hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s ease;
}

.nav-toggle-label .hamburger::before,
.nav-toggle-label .hamburger::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: absolute;
  transition: transform 0.3s ease, top 0.3s ease;
}

.nav-toggle-label .hamburger::before { top: -7px; }
.nav-toggle-label .hamburger::after { top: 7px; }

/* Animate to X when open */
.nav-toggle:checked + .nav-toggle-label .hamburger { background: transparent; }
.nav-toggle:checked + .nav-toggle-label .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle:checked + .nav-toggle-label .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile: show hamburger, collapse nav links */
@media (max-width: 768px) {
  .nav-toggle-label { display: flex; align-items: center; }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    /* Use the site's background color -- falls back to white/dark */
    background: var(--site-bg, var(--site-surface, #ffffff));
    border-bottom: 1px solid rgba(128, 128, 128, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  /* Dark mode: opaque dark background + stronger shadow */
  @media (prefers-color-scheme: dark) {
    .nav-links {
      background: var(--site-bg, var(--site-surface, #0f0f1a));
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
  }

  .nav-toggle:checked ~ .nav-links { display: flex !important; }

  /* Make nav links full-width tappable targets on mobile */
  .nav-links a {
    padding: 12px 16px;
    border-radius: 8px;
    text-align: left;
    width: 100%;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(128, 128, 128, 0.08);
  }

  /* CTA button in mobile nav — full width */
  .nav-links .cta-primary,
  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }
}

/* --- Nav Logo Image --- */

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* --- CTA Button Safety --- */

/* Prevent nav link hover from overriding CTA text color.
   LLM-generated .nav-links a:hover can set color to --site-primary,
   making text invisible against the same-color CTA background. */
.nav-links .cta-primary:hover,
.nav-links .cta-primary:focus,
.cta-primary:hover,
.cta-primary:focus {
  color: white;
}

/* --- FAQ Accordion (<details>/<summary>) --- */

details {
  border: 1px solid rgba(128, 128, 128, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.2s ease;
}

details + details { margin-top: 8px; }

details[open] {
  background: rgba(128, 128, 128, 0.03);
}

summary {
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker { display: none; }
summary::marker { display: none; }

/* Chevron indicator */
summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  opacity: 0.5;
}

details[open] > summary::after {
  transform: rotate(-135deg);
}

details > div,
details > p {
  padding: 0 24px 18px;
  line-height: 1.7;
  opacity: 0.85;
}

/* --- Chat Container Responsive --- */

[data-chipp="chat"] {
  min-height: 500px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 768px) {
  [data-chipp="chat"] {
    min-height: 400px;
    border-radius: 12px;
  }
}

/* === Custom Site Styles === */
/* ===== DESIGN TOKENS ===== */
:root {
  --site-primary: #2E7D5E;
  --site-primary-light: #3a9970;
  --site-primary-dark: #1f5c44;
  --site-primary-glow: rgba(46, 125, 94, 0.18);
  --site-primary-surface: rgba(46, 125, 94, 0.07);

  --site-bg: #ffffff;
  --site-bg-alt: #f7faf8;
  --site-surface: #ffffff;
  --site-text: #2d3748;
  --site-heading: #1a2e25;
  --site-muted: #6b7c74;
  --site-border: #dce8e2;

  --site-section-pad: clamp(4rem, 9vw, 7rem);
  --site-content-max: 1160px;

  --font-display: 'Merriweather', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 18px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--site-text);
  background: var(--site-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--site-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--site-content-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--site-heading);
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--site-primary);
  margin-bottom: 0.75rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--site-primary), var(--site-primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-sub {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--site-muted);
  line-height: 1.75;
}

/* ===== BUTTONS ===== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--site-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 4px 18px var(--site-primary-glow);
  text-decoration: none;
}
.cta-primary:hover {
  background: var(--site-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--site-primary-glow);
  text-decoration: none;
}
.cta-large { padding: 1.1rem 2.4rem; font-size: 1.0625rem; }
.cta-white {
  background: #fff;
  color: var(--site-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.cta-white:hover {
  background: #f0faf5;
  color: var(--site-primary-dark);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.5rem;
  color: var(--site-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--site-border);
  transition: all 0.2s ease;
  text-decoration: none;
}
.cta-secondary:hover {
  border-color: var(--site-primary);
  background: var(--site-primary-surface);
  text-decoration: none;
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  height: 68px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--site-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--site-heading);
  text-decoration: none;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--site-text);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--site-primary); }
  .nav-cta { color: #fff; }
  .nav-cta:hover { color: #fff; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 6rem);
  background: linear-gradient(160deg, #f7faf8 0%, var(--site-bg) 60%, #eef7f2 100%);
}

.hero-bg-accent {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--site-primary-glow), transparent 68%);
  pointer-events: none;
}
.hero-bg-accent--2 {
  top: auto;
  right: auto;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46,125,94,0.08), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--site-primary-surface);
  border: 1px solid rgba(46,125,94,0.22);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--site-primary-dark);
  margin-bottom: 1.75rem;
}

.hero-headline {
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-sub-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: var(--site-heading);
  max-width: 640px;
  margin: 0 auto 0.85rem;
  line-height: 1.4;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--site-muted);
  max-width: 640px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--site-muted);
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--site-primary-dark);
  font-weight: 500;
}
.signal-divider { color: var(--site-border); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--site-primary);
  padding: 2.25rem 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 0;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
  text-align: center;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.trust-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  display: none;
}

@media (min-width: 600px) {
  .trust-divider { display: block; }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: var(--site-section-pad) 0;
  background: var(--site-bg);
}

.steps-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.step-card {
  background: var(--site-bg-alt);
  border: 1px solid var(--site-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  text-align: center;
  max-width: 320px;
  width: 100%;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px -8px var(--site-primary-glow);
}

.step-number {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 38px;
  height: 38px;
  background: var(--site-primary);
  color: #fff;
  border-radius: var(--radius-md) 0 var(--radius-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--site-primary-surface), var(--site-primary-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--site-primary);
  margin: 0 auto 1.25rem;
}

.step-card h3 { margin-bottom: 0.6rem; color: var(--site-heading); }
.step-card p { font-size: 0.96rem; color: var(--site-muted); }

.step-connector {
  color: var(--site-primary);
  opacity: 0.5;
  transform: rotate(90deg);
}

.section-cta {
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 860px) {
  .steps-grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
  .step-card { flex: 1; max-width: 300px; }
  .step-connector {
    transform: none;
    margin-top: 3.5rem;
    flex-shrink: 0;
  }
}

/* ===== TRUST CARDS ===== */
.trust-section {
  padding: var(--site-section-pad) 0;
  background: var(--site-bg-alt);
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-card {
  background: var(--site-surface);
  border: 1px solid var(--site-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px var(--site-primary-glow), 0 4px 12px rgba(0,0,0,0.04);
}

.trust-card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--site-primary-surface), var(--site-primary-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--site-primary);
  margin-bottom: 1.25rem;
}

.trust-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.trust-card p { font-size: 0.96rem; color: var(--site-muted); }

@media (min-width: 768px) {
  .trust-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-cards-grid--5 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .trust-cards-grid--5 { grid-template-columns: repeat(5, 1fr); }
}

/* ===== CHAT SECTION ===== */
.chat-section {
  padding: var(--site-section-pad) 0;
  background: linear-gradient(160deg, #f0f8f4 0%, var(--site-bg) 50%, #eef7f2 100%);
  position: relative;
  overflow: hidden;
}

.chat-bg-accent {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, var(--site-primary-glow), transparent 70%);
  pointer-events: none;
}

.chat-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.chat-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: #fff;
  border: 1px solid var(--site-border);
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--site-primary-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.suggested-questions {
  margin-top: 2rem;
  text-align: center;
}

.suggested-label {
  font-size: 0.9rem;
  color: var(--site-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.suggested-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.suggested-question {
  padding: 0.6rem 1.1rem;
  background: #fff;
  border: 1px solid var(--site-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--site-text);
  cursor: pointer;
  transition: all 0.2s ease;
}
.suggested-question:hover {
  border-color: var(--site-primary);
  color: var(--site-primary);
  background: var(--site-primary-surface);
}

/* ===== COMING SOON ===== */
.coming-soon {
  padding: var(--site-section-pad) 0;
  background: var(--site-bg);
}

.coming-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.coming-card {
  background: var(--site-bg-alt);
  border: 1px solid var(--site-border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.coming-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px -6px var(--site-primary-glow);
}

.coming-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--site-primary-surface), var(--site-primary-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--site-primary);
  margin-bottom: 1rem;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(46,125,94,0.1);
  color: var(--site-primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.coming-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.coming-card p { font-size: 0.94rem; color: var(--site-muted); }

@media (min-width: 600px) {
  .coming-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .coming-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  background: var(--site-primary-dark);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.06), transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.shield-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 1.5rem;
}

.final-cta-inner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 1rem;
}

.final-cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.final-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--site-heading);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.powered-by a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.powered-by a:hover { color: #fff; }

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --site-bg: #0d1f17;
    --site-bg-alt: #111f18;
    --site-surface: #162b1f;
    --site-text: #d1e8db;
    --site-heading: #e8f5ee;
    --site-muted: #7eab92;
    --site-border: #213d2d;
    --site-primary-glow: rgba(46, 125, 94, 0.28);
    --site-primary-surface: rgba(46, 125, 94, 0.14);
  }

  .site-nav {
    background: rgba(13, 31, 23, 0.92);
    border-bottom-color: var(--site-border);
  }

  .hero {
    background: linear-gradient(160deg, #0d1f17 0%, #0d1f17 60%, #111f18 100%);
  }

  .step-card, .trust-card, .coming-card {
    background: var(--site-surface);
  }

  .suggested-question, .chat-trust-badge {
    background: var(--site-surface);
    border-color: var(--site-border);
    color: var(--site-text);
  }

  .trust-bar { background: var(--site-primary-dark); }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (max-width: 599px) {
  .trust-stat { padding: 0 1.25rem; }
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 1.25rem; }
}