/* ================================================================
   OXIFY QUANTITY BREAKS - LIGHT THEME
   Inspired by skailama.com
   ================================================================ */

/* ── Design Tokens ── */
:root {
  /* Backgrounds - WHITE THEME */
  --bg:              #ffffff;
  --bg-soft:         #f8f8fc;
  --bg-card:         #ffffff;
  --bg-card-hover:   #fafafa;
  --bg-elevated:     #ffffff;
  --bg-glass:        rgba(255, 255, 255, 0.85);

  /* Surfaces & Borders - LIGHT */
  --surface:         rgba(0, 0, 0, 0.03);
  --surface-strong:  rgba(0, 0, 0, 0.06);
  --border:          rgba(0, 0, 0, 0.08);
  --border-strong:   rgba(0, 0, 0, 0.12);
  --border-accent:   rgba(30, 75, 216, 0.2);

  /* Brand Colors - BLUE */
  --brand:           #1e4bd8;
  --brand-deep:      #112a79;
  --brand-glow:      rgba(30, 75, 216, 0.15);

  /* Accent - lime for CTAs */
  --accent:          #d8ff57;
  --accent-ink:      #162300;
  --accent-soft:     rgba(30, 75, 216, 0.08);
  --accent-glow:     rgba(30, 75, 216, 0.12);

  /* Secondary */
  --blue:            #1e4bd8;
  --blue-glow:       rgba(30, 75, 216, 0.15);
  --coral:           #ff8e6a;
  --coral-soft:      rgba(255, 142, 106, 0.1);
  --red-soft:        rgba(255, 90, 90, 0.1);
  --red-muted:       #ff5a5a;

  /* Text - DARK on white */
  --text-primary:    #1a1a2e;
  --text-secondary:  #525252;
  --text-muted:      #6b6b7b;
  --text-faint:      #8a8a9a;
  --white:           #ffffff;

  /* Shadows - LIGHT, subtle */
  --shadow-xl:       0 40px 120px rgba(0, 0, 0, 0.08);
  --shadow-lg:       0 24px 64px rgba(0, 0, 0, 0.06);
  --shadow-md:       0 16px 40px rgba(0, 0, 0, 0.05);
  --shadow-sm:       0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-glow-brand: 0 0 40px rgba(30, 75, 216, 0.1);

  /* Radii */
  --radius-xl:       32px;
  --radius-lg:       24px;
  --radius-md:       18px;
  --radius-sm:       12px;
  --radius-btn:      14px;
  --radius-pill:     999px;

  /* Spacing */
  --section-space:   clamp(4.5rem, 9vw, 8rem);
  --gutter:          clamp(1.25rem, 3vw, 2rem);
  --container:       1200px;

  /* Motion */
  --transition:      220ms ease;
  --transition-slow: 400ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(ellipse 80% 50% at 15% 8%, rgba(30, 75, 216, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 85% 12%, rgba(30, 75, 216, 0.04), transparent),
    var(--bg);
  color: var(--text-primary);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
summary {
  font: inherit;
}


/* ── Accessibility ── */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

::selection {
  background: rgba(30, 75, 216, 0.15);
  color: var(--text-primary);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}


/* ── Breadcrumb ── */
.breadcrumb {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
  padding: 0.6rem 0 0;
}

.breadcrumb ol {
  display: flex;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.4rem;
  opacity: 0.4;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--brand-deep);
}


/* ── Page Shell ── */
.page-shell {
  position: relative;
  overflow-x: clip;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 70%);
  opacity: 0.5;
  z-index: 0;
}


/* ── Container widths ── */
.topbar,
.section-grid,
.social-bar,
.pillar-grid,
.result-ribbon,
.integration-panel,
.stats-grid,
.testimonial-grid,
.pricing-grid,
.pricing-footnote,
.final-cta__panel,
.site-footer,
.section-heading--center,
.steps-grid,
.industries-grid,
.feature-card-grid,
.before-after-grid,
.compare-section__inner,
.trust-strip,
.pricing-trust-strip,
.problem-cards,
.overview-grid {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}


/* ── Topbar (Light Glass, Sticky) ── */
.topbar {
  position: sticky;
  top: 0.6rem;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(calc(100% - 2rem), 1160px);
  margin-top: 0.7rem;
  padding: 0.65rem 0.8rem 0.65rem 1rem;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  transition: box-shadow 0.3s ease;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  z-index: -1;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 0.55rem 0 0.15rem;
  min-height: 42px;
  border-radius: var(--radius-pill);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.96rem;
  color: var(--text-primary);
}

.brandmark__spark {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent), var(--blue));
  box-shadow: 0 0 0 5px rgba(30, 75, 216, 0.08), 0 0 16px rgba(30, 75, 216, 0.15);
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* ── Mobile Menu Toggle ── */
.topbar__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 1.4rem;
  transition: background var(--transition);
}

.topbar__toggle:hover {
  background: var(--surface);
}

.topbar__toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.link-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.95rem;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.97rem;
  transition: color var(--transition);
}

.link-button:hover {
  color: var(--text-primary);
}


/* ── Buttons ── */
.button {
  min-height: 44px;
  padding: 0.78rem 1.18rem;
  border-radius: var(--radius-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

.button:hover,
.button:focus-visible,
.link-button:hover,
.link-button:focus-visible,
summary:hover,
summary:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.link-button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(30, 75, 216, 0.3);
  outline-offset: 3px;
}

.button--primary {
  color: var(--accent-ink);
  background: linear-gradient(135deg, var(--accent) 0%, #c4f02a 50%, var(--accent) 100%);
  box-shadow:
    0 18px 40px rgba(30, 75, 216, 0.15),
    0 0 0 1px rgba(30, 75, 216, 0.1);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow:
    0 24px 48px rgba(30, 75, 216, 0.2),
    0 0 0 1px rgba(30, 75, 216, 0.2),
    0 0 60px rgba(30, 75, 216, 0.1);
}

.button--secondary {
  color: var(--text-primary);
  background: var(--white);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--bg-soft);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: var(--shadow-md);
}

.button--lg {
  min-height: 52px;
  padding: 0.95rem 1.6rem;
  font-size: 1.05rem;
}


/* ── Typography ── */
h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text-primary);
  text-wrap: balance;
}

h1 {
  margin-top: 1.3rem;
  max-width: 20ch;
  font-size: clamp(3rem, 6vw, 4.7rem);
}

h2 {
  max-width: 28ch;
  font-size: clamp(2.2rem, 4.5vw, 3.65rem);
}

h3 {
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
}

p {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.4vw, 1.05rem);
}


/* ── Gradient Text Utility ── */
.gradient-text {
  background: linear-gradient(135deg, #1e4bd8, #3b7dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ── Sections ── */
.hero,
.overview-section,
.features-section,
.pricing-section,
.faq-section,
.final-cta,
.problem-section,
.proof-section,
.how-it-works,
.industries-section,
.compare-section,
.trust-strip-section,
.education-section {
  padding-block: var(--section-space);
}

/* ── Education Sections (What is / vs / native) ── */
.education-section {
  background: var(--bg);
}

.education-section--alt {
  background: var(--bg-soft);
}

.education-section__inner {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.education-section h2,
.education-section h3 {
  max-width: none;
  text-wrap: unset;
}

.education-section__body {
  max-width: 820px;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.78;
  color: var(--text-secondary);
}

.education-section__body p {
  margin-bottom: 1.25rem;
}

.education-section__body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
  max-width: none;
}

.education-section__body ul,
.education-section__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.education-section__body li {
  margin-bottom: 0.5rem;
}

.quantity-break-example {
  list-style: none;
  padding: 0 !important;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem !important;
  margin-bottom: 1.5rem;
}

.quantity-break-example li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.quantity-break-example li:last-child {
  border-bottom: none;
  color: var(--brand);
  font-weight: 600;
}

.education-list {
  counter-reset: edu;
  list-style: none;
  padding-left: 0 !important;
}

.education-list li {
  counter-increment: edu;
  padding-left: 2rem;
  position: relative;
}

.education-list li::before {
  content: counter(edu);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.education-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.education-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.education-table thead {
  background: var(--bg-soft);
}

.education-table th {
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-strong);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.education-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.education-table tbody tr:last-child td {
  border-bottom: none;
}

.education-table tbody tr:hover {
  background: var(--bg-soft);
}

.education-table td strong {
  color: var(--text-primary);
}

.cell-yes {
  color: #2e7d32 !important;
  font-weight: 600;
}

.cell-no {
  color: #c62828 !important;
  font-weight: 500;
}

.cell-partial {
  color: #e65100 !important;
  font-weight: 500;
}

.hero {
  padding-top: clamp(1rem, 2.4vw, 1.8rem);
}

.section-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}


/* ── Section Heading ── */
.section-heading {
  display: grid;
  gap: 1rem;
}

.section-heading--center {
  text-align: center;
  justify-items: center;
  margin-bottom: 2.4rem;
}

.section-heading--center h2 {
  max-width: 36ch;
}

.section-heading--center p {
  max-width: 62ch;
}


/* ── Hero ── */
.hero__grid,
.problem-section__grid,
.overview-section__grid,
.faq-section__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.eyebrow-row,
.hero__cta-group,
.hero__proof,
.hero__chips,
.pricing-footnote,
.final-cta__proof {
  display: flex;
  flex-wrap: wrap;
}

.eyebrow-row {
  align-items: center;
  gap: 0.85rem;
}

.eyebrow,
.hero-badge,
.feature-kicker,
.metric-card__label,
.price-card__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  font-size: 0.72rem;
}

.eyebrow {
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(30, 75, 216, 0.08);
  border: 1px solid rgba(30, 75, 216, 0.15);
  color: var(--brand);
}

.eyebrow--lime,
.price-card__badge {
  background: rgba(30, 75, 216, 0.08);
  border: 1px solid var(--border-accent);
  color: var(--brand);
}

.eyebrow--coral {
  background: var(--coral-soft);
  border: 1px solid rgba(255, 142, 106, 0.25);
  color: #c4522a;
}

.hero-badge {
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.hero__lede {
  margin-top: 1.4rem;
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.45vw, 1.18rem);
}

.hero__cta-group {
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__proof {
  gap: 1rem;
  margin-top: 1.8rem;
}


/* ── Proof Cards ── */
.proof-card,
.metric-card,
.hero-shot,
.problem-card,
.pillar-card,
.stat-card,
.testimonial-card,
.price-card,
.pricing-footnote > div,
.faq-list details,
.integration-panel,
.offer-card,
.feature-card,
.final-cta__panel,
.pivot-callout {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.proof-card {
  min-width: min(230px, 100%);
  flex: 1 1 0;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.proof-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 75, 216, 0.2);
  box-shadow: var(--shadow-md);
}

.proof-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.proof-card span,
.source-note,
.metric-card p,
.stat-card span,
.site-footer span,
.testimonial-card__merchant span,
.case-study span,
.price-card__amount span,
.pricing-footnote span {
  font-size: 0.92rem;
  color: var(--text-muted);
}


/* ── Hero Chips ── */
.hero__chips {
  gap: 0.7rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.hero__chips li,
.integration-list li {
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-secondary);
  transition:
    background var(--transition),
    border-color var(--transition);
}

.hero__chips li:hover,
.integration-list li:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--border-strong);
}


/* ── Source Note ── */
.source-note {
  display: inline-block;
  margin-top: 1rem;
  color: var(--text-muted);
}

.source-note--light {
  color: var(--text-faint);
}


/* ── Hero Visual ── */
.hero__visual {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-showcase {
  display: block;
}

.hero-shot {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(30, 75, 216, 0.04), rgba(30, 75, 216, 0.02));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
}

.hero-shot--main {
  width: 100%;
}

.hero-shot img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.hero-shot figcaption {
  font-size: 0.92rem;
  color: var(--text-muted);
}


/* ── Hero Metrics ── */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  position: relative;
  width: 100%;
  padding: 1.1rem 1.15rem;
  background: #1a1a2e;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
  background: linear-gradient(135deg, #1e4bd8, #3b7dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-card__label {
  color: var(--accent);
}

.metric-card p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
}


/* ── Social Bar ── */
.social-bar {
  display: grid;
  gap: 0.95rem;
  align-items: center;
  padding: 1rem 1.2rem;
  min-height: 96px;
  margin-top: 1.4rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #1a1a2e;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
}

.social-bar__copy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
}

.social-bar__copy span,
.social-bar__copy strong {
  font-size: 0.94rem;
}


/* ── Logo Marquee ── */
.logo-marquee {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: max-content;
  animation: marquee 28s linear infinite;
}

.logo-track img {
  width: 132px;
  height: 44px;
  object-fit: contain;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  filter: brightness(0.95) contrast(0.95);
  opacity: 0.85;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.logo-track img:hover {
  transform: translateY(-2px);
  opacity: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}


/* ── Section Dark (dark contrast sections) ── */
.section-dark {
  position: relative;
  overflow: hidden;
  margin-top: var(--section-space);
  padding-block: var(--section-space);
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
  color: var(--white);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(30, 75, 216, 0.06) 72% 76%, transparent 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.section-dark h2,
.section-dark h3,
.section-dark strong,
.section-dark .proof-card strong,
.section-dark .pivot-callout strong,
.section-dark .result-ribbon strong {
  color: var(--white);
}

.section-dark p,
.section-dark span,
.section-dark .source-note,
.section-dark .proof-card span,
.section-dark .problem-card p,
.section-dark .stat-card span,
.section-dark .testimonial-card__merchant span,
.section-dark .pricing-footnote span {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .problem-card,
.section-dark .stat-card,
.section-dark .testimonial-card,
.section-dark .proof-card,
.section-dark .pillar-card,
.section-dark .pivot-callout,
.section-dark .result-ribbon,
.section-dark .pricing-footnote > div {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .problem-card:hover,
.section-dark .stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(30, 75, 216, 0.3);
}

.section-dark .eyebrow {
  background: rgba(30, 75, 216, 0.15);
  border-color: rgba(30, 75, 216, 0.3);
  color: #7ba3ff;
}

.section-dark .eyebrow--lime {
  background: rgba(216, 255, 87, 0.12);
  border-color: rgba(216, 255, 87, 0.2);
  color: var(--accent);
}

.section-dark .hero__chips li,
.section-dark .integration-list li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .testimonial-card blockquote {
  color: rgba(255, 255, 255, 0.9);
}


/* ── Problem Cards ── */
.problem-cards,
.pillar-grid,
.stats-grid,
.testimonial-grid,
.pricing-grid {
  display: grid;
  gap: 1.1rem;
}

.problem-cards,
.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-card,
.stat-card {
  padding: 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.problem-card__icon {
  width: fit-content;
  padding: 0.4rem 0.62rem;
  border-radius: var(--radius-pill);
  background: rgba(30, 75, 216, 0.08);
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.problem-card h3 {
  margin-top: 0.95rem;
  font-size: 1.45rem;
}

.problem-card p {
  margin-top: 0.75rem;
}

.problem-card,
.stat-card,
.testimonial-card {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.problem-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(30, 75, 216, 0.2);
  box-shadow: var(--shadow-glow-brand);
}


/* ── Pivot Callout ── */
.pivot-callout,
.result-ribbon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.pivot-callout {
  flex-wrap: wrap;
  justify-content: space-between;
}

.pivot-callout__copy {
  display: grid;
  gap: 0.35rem;
  flex: 1 1 300px;
}

.pivot-callout strong,
.result-ribbon strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: var(--text-primary);
}


/* ── Offer Cards ── */
.offer-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.offer-card__media,
.feature-card__media {
  padding: 0.7rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  overflow: hidden;
}

.offer-card__media img,
.feature-card__media img {
  width: min(100%, 520px);
  height: auto;
  margin-inline: auto;
  border-radius: 18px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-card:hover .offer-card__media img,
.feature-card:hover .feature-card__media img {
  transform: scale(1.03);
}

.offer-card__copy,
.feature-card__copy {
  display: grid;
  gap: 0.65rem;
}


/* ── Overview Section ── */
.overview-section__grid {
  align-items: center;
}

.overview-content {
  display: grid;
  gap: 1.8rem;
}

.offer-type-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.offer-type-item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.offer-type-item:hover {
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 75, 216, 0.2);
}

.offer-type-item strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.offer-type-item span {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.overview-visual {
  position: sticky;
  top: 6rem;
}


/* ── Pillar Grid ── */
.pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.1rem;
}

.pillar-card {
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 75, 216, 0.2);
}

.pillar-card p,
.result-ribbon p,
.price-card p,
.testimonial-card blockquote,
.faq-list p {
  margin-top: 0.75rem;
}


/* ── Result Ribbon ── */
.result-ribbon {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, rgba(30, 75, 216, 0.06), rgba(30, 75, 216, 0.03));
  border: 1px solid rgba(30, 75, 216, 0.1);
  position: relative;
}

.result-ribbon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1e4bd8, #3b7dff);
  border-radius: 2px 2px 0 0;
}


/* ── Feature Cards ── */
.feature-kicker {
  color: var(--blue);
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 75, 216, 0.2);
}

.feature-card__copy p + p {
  margin-top: 0.7rem;
}


/* ── Integration Panel ── */
.integration-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  padding: 1.4rem;
  background: #1a1a2e;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.integration-panel h3 {
  margin-top: 0.6rem;
  color: var(--white);
}

.integration-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.integration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-self: start;
  padding: 0;
  margin: 0;
  list-style: none;
}

.integration-list li {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}


/* ── Stats Grid ── */
.stats-grid {
  margin-top: 2rem;
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  background: linear-gradient(135deg, #1e4bd8, #3b7dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ── Testimonials ── */
.testimonial-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  margin-top: 1.5rem;
  align-items: stretch;
}

.testimonial-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 75, 216, 0.2);
}

.testimonial-card--featured {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(30, 75, 216, 0.04), transparent 60%),
    var(--bg-card-hover);
}

.testimonial-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e4bd8, #3b7dff, var(--coral));
  border-radius: 3px 3px 0 0;
}

.testimonial-card__topline {
  display: flex;
  gap: 1rem;
  padding: 0 0.2rem 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.testimonial-card blockquote {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.testimonial-card__merchant,
.case-study {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.testimonial-card__merchant strong,
.case-study strong,
.site-footer strong {
  display: block;
  color: var(--text-primary);
}

.avatar-pill {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 75, 216, 0.7), rgba(59, 125, 255, 0.6));
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.stars {
  color: #f5a623;
  letter-spacing: 0.16em;
}


/* ── Pricing ── */
.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  align-content: start;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card--highlight {
  position: relative;
  background: linear-gradient(180deg, #1a1a2e, #0f0f1e);
  border-color: transparent;
  transform: translateY(-8px);
  overflow: hidden;
  color: var(--white);
}

.price-card--highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(180deg, #1e4bd8, #3b7dff);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.price-card--highlight:hover {
  transform: translateY(-14px);
}

.price-card--highlight .price-card__amount,
.price-card--highlight strong {
  color: var(--white);
}

.price-card--highlight p,
.price-card--highlight li,
.price-card--highlight .price-card__name,
.price-card--highlight .price-card__amount span {
  color: rgba(255, 255, 255, 0.65);
}

.price-card__badge {
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-pill);
}

.price-card__name {
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.price-card__amount {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.05rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0;
}

.price-card ul {
  padding-left: 1.1rem;
  margin: 0;
  display: grid;
  gap: 0.7rem;
  color: var(--text-secondary);
}


/* ── Pricing Footnote ── */
.pricing-footnote {
  gap: 1rem;
  margin-top: 1.3rem;
}

.pricing-footnote > div {
  flex: 1 1 280px;
  padding: 1.1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}


/* ── Pricing Trust Strip ── */
.pricing-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  width: min(calc(100% - 2rem), var(--container));
  margin: 1.8rem auto 0;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(30, 75, 216, 0.04);
  border: 1px solid rgba(30, 75, 216, 0.08);
}

.pricing-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brand);
}

.pricing-trust-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--blue-glow);
  flex-shrink: 0;
}


/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.faq-list details:hover {
  border-color: rgba(30, 75, 216, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-list details[open] {
  background: var(--bg-soft);
  border-color: rgba(30, 75, 216, 0.15);
}

summary {
  list-style: none;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  color: var(--text-primary);
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-size: 1.2rem;
  transition: transform var(--transition);
}

details[open] summary::after {
  content: "\2212";
  transform: rotate(180deg);
}

.faq-list p {
  padding: 0 1.25rem 1.2rem;
}


/* ── FAQ CTA ── */
.faq-cta {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(30, 75, 216, 0.05), rgba(30, 75, 216, 0.02));
  border: 1px solid rgba(30, 75, 216, 0.08);
}

.faq-cta strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--text-primary);
}

.faq-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}


/* ── Final CTA ── */
.final-cta__panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.8rem, 5vw, 3rem);
  text-align: center;
  justify-items: center;
  background:
    radial-gradient(ellipse 70% 60% at top center, rgba(30, 75, 216, 0.15), transparent 50%),
    radial-gradient(ellipse 50% 40% at bottom center, rgba(59, 125, 255, 0.1), transparent 50%),
    #1a1a2e;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.final-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 75, 216, 0.4), rgba(59, 125, 255, 0.3));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.final-cta__panel h2 {
  color: var(--white);
}

.final-cta__panel p,
.final-cta__proof {
  color: rgba(255, 255, 255, 0.7);
}

.final-cta__proof {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  font-size: 0.95rem;
}


/* ── Mid-page CTA Strip ── */
.mid-cta-strip {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.mid-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(30, 75, 216, 0.06), rgba(30, 75, 216, 0.03));
  border: 1px solid rgba(30, 75, 216, 0.1);
  box-shadow: var(--shadow-md);
  position: relative;
}

.mid-cta-strip__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1e4bd8, #3b7dff, transparent);
}

.mid-cta-strip__copy {
  display: grid;
  gap: 0.25rem;
}

.mid-cta-strip__copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--text-primary);
}

.mid-cta-strip__copy span {
  font-size: 0.95rem;
  color: var(--text-secondary);
}


/* ── CTA Microcopy ── */
.cta-microcopy {
  margin-top: 0.65rem;
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cta-microcopy--light {
  color: rgba(255, 255, 255, 0.6) !important;
}


/* ── Site Footer ── */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  padding: 0 0 7rem;
  color: var(--text-secondary);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-left: auto;
}

.site-footer__links a {
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.site-footer__links a:hover {
  color: var(--brand);
}


/* ── Mobile CTA ── */
.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  display: none;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.9rem 0.95rem;
  border-radius: 22px;
  background: rgba(26, 26, 46, 0.95);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta strong,
.mobile-cta span {
  display: block;
}

.mobile-cta span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}


/* ================================================================
   NEW COMPONENTS
   ================================================================ */

/* ── How It Works ── */
.how-it-works {
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 75, 216, 0.2);
}

.step-card__number {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e4bd8, #3b7dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
}

.step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(30, 75, 216, 0.08);
  border: 1px solid rgba(30, 75, 216, 0.12);
  font-size: 1.4rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.95rem;
}


/* ── Who It's For (Industries) ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.industry-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(30, 75, 216, 0.2);
  box-shadow:
    var(--shadow-md),
    0 0 30px rgba(30, 75, 216, 0.06);
}

.industry-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: rgba(30, 75, 216, 0.08);
  border: 1px solid rgba(30, 75, 216, 0.12);
  font-size: 1.6rem;
}

.industry-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.industry-card p {
  font-size: 0.92rem;
}


/* ── Comparison Table ── */
.comparison-table-wrapper {
  margin-top: 2.4rem;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  -webkit-overflow-scrolling: touch;
}

.comparison-table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  position: sticky;
  top: 0;
  background: #1a1a2e;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.comparison-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #1a1a2e;
}

.comparison-table td:first-child {
  position: sticky;
  left: 0;
  background: var(--white);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.comparison-table td {
  background: var(--white);
  color: var(--text-secondary);
}

.comparison-table tbody tr {
  transition: background var(--transition);
}

.comparison-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.comparison-table tbody tr:hover td {
  background: rgba(0, 0, 0, 0.02);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .highlight-col {
  background: rgba(30, 75, 216, 0.04) !important;
}

.comparison-table th.highlight-col {
  background: rgba(30, 75, 216, 0.2) !important;
  color: #7ba3ff;
}

.comparison-table .check {
  color: var(--brand);
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table .cross {
  color: var(--text-faint);
  font-size: 1.1rem;
}

/* ── Wide comparison table (9-app) ── */
.comparison-table--wide {
  min-width: 900px;
}

.comparison-table .highlight-row td {
  background: var(--brand-glow);
  font-weight: 500;
}

.comparison-table .highlight-row td:first-child {
  border-left: 3px solid var(--brand);
}

/* ── Compare Recommendations ── */
.compare-recommendations {
  margin-top: 2rem;
  padding: 1.5rem 1.8rem;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.compare-recommendations h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  max-width: none;
  text-wrap: unset;
}

.compare-recommendations ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.compare-recommendations li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── Freshness Badge ── */
.freshness-badge {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* ── Proof Stat Strip ── */
.proof-stat-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem auto 2.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 700px;
}

.proof-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.proof-stat strong {
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.proof-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── How It Works Note ── */
.how-it-works__note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 2rem;
  font-style: italic;
}

/* ── Before & After ── */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.before-card,
.after-card {
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.before-card:hover,
.after-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.before-card {
  border-top: 3px solid var(--coral);
  background:
    radial-gradient(ellipse at top left, var(--coral-soft), transparent 60%),
    var(--bg-card);
}

.after-card {
  border-top: 3px solid var(--brand);
  background:
    radial-gradient(ellipse at top left, rgba(30, 75, 216, 0.05), transparent 60%),
    var(--bg-card);
}

.before-card h3,
.after-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.before-card ul,
.after-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
  color: var(--text-secondary);
}


/* ── Native Discounts Limitations ── */
.limitations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.limitation-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.limitation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 90, 90, 0.2);
}

.limitation-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: var(--red-soft);
  border: 1px solid rgba(255, 90, 90, 0.2);
  font-size: 1.2rem;
  color: var(--red-muted);
}

.limitation-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.limitation-card p {
  font-size: 0.92rem;
}


/* ── Trust Badge Strip ── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition:
    background var(--transition),
    border-color var(--transition);
}

.trust-badge:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}

.trust-badge__icon {
  font-size: 1.1rem;
}


/* ── Section Dividers (gradient lines) ── */
.overview-section::before {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 0 auto 2rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #1e4bd8, #3b7dff);
}

.features-section::before {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 0 auto 2rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #1e4bd8, var(--coral));
}


/* ── Content-visibility Performance ── */
.problem-section,
.overview-section,
.features-section,
.proof-section,
.pricing-section,
.faq-section,
.final-cta,
.how-it-works,
.industries-section,
.compare-section,
.trust-strip-section,
.education-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}


/* ================================================================
   ANIMATIONS
   ================================================================ */

/* ── Scroll Reveal ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
}

.reveal.visible {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
}

.reveal-scale.visible {
  animation: fadeInScale 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Staggered children */
.stagger-children.visible > * {
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.stagger-children.visible > *:nth-child(1) { animation-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { animation-delay: 80ms; }
.stagger-children.visible > *:nth-child(3) { animation-delay: 160ms; }
.stagger-children.visible > *:nth-child(4) { animation-delay: 240ms; }
.stagger-children.visible > *:nth-child(5) { animation-delay: 320ms; }
.stagger-children.visible > *:nth-child(6) { animation-delay: 400ms; }
.stagger-children.visible > *:nth-child(7) { animation-delay: 480ms; }
.stagger-children.visible > *:nth-child(8) { animation-delay: 560ms; }


/* ── CTA Pulse Glow ── */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 18px 40px rgba(30, 75, 216, 0.12),
      0 0 0 1px rgba(30, 75, 216, 0.1);
  }
  50% {
    box-shadow:
      0 18px 48px rgba(30, 75, 216, 0.18),
      0 0 0 6px rgba(30, 75, 216, 0.05),
      0 0 60px rgba(30, 75, 216, 0.08);
  }
}

.button--primary {
  animation: ctaPulse 3s ease-in-out infinite;
}

.button--primary:hover,
.button--primary:focus-visible {
  animation: none;
}


/* ── Card hover lift + glow ── */
.offer-card,
.feature-card,
.pillar-card,
.price-card,
.proof-card {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 75, 216, 0.2);
}


/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

@media (max-width: 1100px) {
  .hero__grid,
  .problem-section__grid,
  .overview-section__grid,
  .faq-section__grid,
  .integration-panel {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .feature-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pillar-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .steps-grid,
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    border-radius: 26px;
    flex-wrap: wrap;
  }

  .topbar__nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    padding: 0.5rem 0;
    gap: 0;
  }

  .topbar__nav.is-open {
    display: flex;
  }

  .topbar__nav .link-button {
    width: 100%;
    justify-content: flex-start;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
  }

  .topbar__nav .link-button:hover {
    background: var(--surface);
  }

  .topbar__toggle {
    display: flex;
  }

  .topbar__actions .link-button {
    display: none;
  }

  .problem-cards,
  .stats-grid,
  .pillar-grid,
  .feature-card-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .social-bar__copy,
  .pricing-footnote,
  .site-footer,
  .site-footer__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__links {
    margin-left: 0;
  }

  .steps-grid,
  .industries-grid,
  .before-after-grid,
  .limitations-grid {
    grid-template-columns: 1fr;
  }

  .mid-cta-strip__inner {
    flex-direction: column;
    text-align: center;
  }

  .mid-cta-strip__inner .button {
    width: 100%;
  }

  .pivot-callout {
    flex-direction: column;
    text-align: center;
  }

  .pivot-callout .button {
    width: 100%;
  }

  .faq-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .faq-cta__actions .button {
    width: 100%;
  }

  .pricing-trust-strip {
    justify-content: flex-start;
  }

  .overview-visual {
    position: static;
  }

  .trust-strip {
    justify-content: flex-start;
  }

  .comparison-table td:first-child,
  .comparison-table th:first-child {
    min-width: 160px;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: relative;
    padding: 0.8rem 0;
  }

  .topbar::before {
    border-radius: 26px;
  }

  .topbar__actions {
    width: auto;
  }

  .hero__cta-group,
  .button,
  .button--secondary,
  .button--primary {
    width: 100%;
  }

  .hero__cta-group {
    flex-direction: column;
  }

  .price-card--highlight {
    transform: none;
  }

  .mobile-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 10rem;
  }

  .trust-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-badge {
    justify-content: center;
  }
}


/* ================================================================
   ACCESSIBILITY - REDUCED MOTION
   ================================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .stagger-children > * {
    opacity: 1;
    transform: none;
  }

  .logo-track {
    animation: none;
  }
}
