/* ==========================================================================
   marketing.css — Shared Marketing Page Styles
   Shared across home, pricing, how-it-works, results, signup, about, etc.
   Depends on: tokens.css, typography.css, layout.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Base Reset for Marketing
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

/* --------------------------------------------------------------------------
   Navigation Logo Text
   -------------------------------------------------------------------------- */
/* Logo text styling handled by components/nav.css (shimmer gradient) */
/* Only override font-size here if needed */
.site-nav__logo:hover .site-nav__logo-text {
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Footer Logo Text
   -------------------------------------------------------------------------- */
.site-footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Section Header (centered heading + subheadline)
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12); /* 48px */
}

.section-header .overline {
  color: var(--color-electric);
  margin-bottom: var(--space-3);
}

.section-header .h2-section {
  margin-bottom: var(--space-4);
}

.section-header .body-large {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* Dark section header */
.section-header--dark .h2-section {
  color: var(--color-white);
}

.section-header--dark .body-large {
  color: rgba(255, 255, 255, 0.85);
}

.section-header--dark .overline {
  color: var(--color-electric);
}

/* --------------------------------------------------------------------------
   Hero Section — Dark with radial gradient
   -------------------------------------------------------------------------- */
.hero-dark {
  background: radial-gradient(ellipse at 30% 0%, rgba(47, 128, 237, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 100%, rgba(139, 92, 246, 0.10) 0%, transparent 50%), var(--gradient-dark-radial);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Grid overlay pattern */
.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-dark .container {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Hero Overline
   -------------------------------------------------------------------------- */
.hero-overline {
  font-family: var(--font-body);
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60B4FF;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, #60B4FF, #B794F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   Hero Headline + Sub
   -------------------------------------------------------------------------- */
.hero-headline {
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.hero-subheadline {
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto var(--space-8);
}

/* --------------------------------------------------------------------------
   Hero Button Group
   -------------------------------------------------------------------------- */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

@media (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary-dark {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Trust Bar (below hero CTA)
   -------------------------------------------------------------------------- */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-bar__stars {
  display: flex;
  gap: 2px;
  color: var(--color-star);
}

.trust-bar__stars i {
  width: 14px;
  height: 14px;
}

/* --------------------------------------------------------------------------
   Feature Grid (3-column, used in multiple sections)
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-feature-grid); /* 32px */
}

.feature-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.feature-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1023px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-card-grid); /* 24px */
  }

  .feature-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .feature-grid,
  .feature-grid--2col,
  .feature-grid--4col {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .feature-grid .card-feature,
  .feature-grid--2col .card-feature {
    text-align: center;
  }

  .feature-grid .card-feature .card-feature__icon-premium,
  .feature-grid--2col .card-feature .card-feature__icon-premium {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------------------------------------------------------------------------
   Pricing Cards Grid
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card-grid); /* 24px */
  align-items: start;
}

@media (max-width: 1023px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .pricing-card--featured {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Step Cards (How It Works)
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-feature-grid);
  position: relative;
}

/* Dashed connector line between steps (desktop only) */
.steps-grid::after {
  content: '';
  position: absolute;
  top: 26px; /* center of step number circle */
  left: calc(33.33% - 16px);
  right: calc(33.33% - 16px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-electric) 0,
    var(--color-electric) 8px,
    transparent 8px,
    transparent 16px
  );
  pointer-events: none;
  opacity: 0.4;
}

@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .steps-grid::after {
    display: none;
  }
}

/* Step number circle */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-electric-light);
  color: var(--color-electric);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Metrics / Count-up row
   -------------------------------------------------------------------------- */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card-grid);
  margin-bottom: var(--space-12);
}

@media (max-width: 767px) {
  .metrics-row {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.metric-card {
  text-align: center;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #E8F1FD 0%, #EDE9FE 100%);
  border: 1px solid rgba(47, 128, 237, 0.10);
}

.metric-card__value {
  font-family: var(--font-display);
  font-size: 3.5rem; /* 56px */
  font-weight: 700;
  color: var(--color-midnight);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.metric-card__label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Testimonial Cards
   -------------------------------------------------------------------------- */
.testimonial-card {
  background-color: var(--bg-surface);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 16px;
  padding: var(--space-8);
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.06);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10, 37, 64, 0.10);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
  color: var(--color-star);
}

.testimonial-stars i {
  width: 16px;
  height: 16px;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17px */
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-electric-light);
  color: var(--color-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author__name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.testimonial-author__biz {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Pricing Toggle (Monthly / Annual)
   -------------------------------------------------------------------------- */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  background-color: var(--bg-muted);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: var(--space-10);
}

.pricing-toggle__option {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-default);
  white-space: nowrap;
  border: none;
  background: none;
}

.pricing-toggle__option.is-active {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

.pricing-toggle__badge {
  background-color: var(--color-success-light);
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}

/* --------------------------------------------------------------------------
   Country Selector
   -------------------------------------------------------------------------- */
.country-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.country-selector__label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.country-selector select {
  padding: 8px 40px 8px 16px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background-color: var(--bg-surface);
  cursor: pointer;
  min-width: 200px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%234A5568' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* --------------------------------------------------------------------------
   All Plans Include (4-item grid below pricing cards)
   -------------------------------------------------------------------------- */
.all-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  padding-top: var(--space-12);
  border-top: 1px solid var(--border-default);
}

@media (max-width: 1023px) {
  .all-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .all-plans-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.all-plans-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.all-plans-item__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background-color: var(--color-electric-light);
  color: var(--color-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.all-plans-item__icon i {
  width: 16px;
  height: 16px;
}

.all-plans-item__title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.all-plans-item__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Section Divider (arrow)
   -------------------------------------------------------------------------- */
.section-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) 0;
  color: var(--border-default);
}

.section-arrow i {
  width: 32px;
  height: 32px;
}

/* --------------------------------------------------------------------------
   Cookie Banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-toast);
  background-color: var(--color-midnight);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.cookie-banner__text {
  color: rgba(255,255,255,0.75);
  flex: 1;
  min-width: 200px;
}

.cookie-banner__link {
  color: var(--color-electric);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Solution List (green check items)
   -------------------------------------------------------------------------- */
.solution-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 600px;
  margin: 0 auto;
}

.solution-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.solution-list__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-success-light);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-list__check i {
  width: 14px;
  height: 14px;
}

/* Problem list (red X) */
.problem-card__x {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-error-light);
  color: var(--color-error);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--space-4);
}

.problem-card__x i {
  width: 14px;
  height: 14px;
}

/* --------------------------------------------------------------------------
   Countries Section (flags)
   -------------------------------------------------------------------------- */
.countries-section {
  text-align: center;
  padding-top: var(--space-12);
  border-top: 1px solid var(--border-default);
  margin-top: var(--space-12);
}

.countries-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  font-size: 1.75rem;
}

/* --------------------------------------------------------------------------
   Final CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  background: var(--gradient-dark-radial);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(47,128,237,0.20) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-trust {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  margin-top: var(--space-5);
}

/* --------------------------------------------------------------------------
   How It Works — Step Alternating Layout
   -------------------------------------------------------------------------- */
.how-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.how-step--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.how-step--reverse > *:first-child {
  order: 2;
}

.how-step--reverse > *:last-child {
  order: 1;
}

@media (max-width: 1023px) {
  .how-step,
  .how-step--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  /* On mobile, always show text above visual for reversed steps */
  .how-step--reverse > *:first-child {
    order: 2;
  }
  .how-step--reverse > *:last-child {
    order: 1;
  }
}

/* Large watermark step number */
.how-step__number-watermark {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(47, 128, 237, 0.12);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: -20px;
  pointer-events: none;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Mock UI Mockups (CSS-only)
   -------------------------------------------------------------------------- */
.mock-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.mock-window__titlebar {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-default);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-window__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-window__dot--red   { background: #FF5F57; }
.mock-window__dot--yellow { background: #FEBC2E; }
.mock-window__dot--green  { background: #28C840; }

.mock-window__body {
  padding: var(--space-5);
}

/* DNS table mock */
.mock-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

.mock-table th {
  background: var(--bg-subtle);
  color: var(--text-secondary);
  font-weight: 600;
  padding: 8px 12px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mock-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-muted);
  color: var(--text-primary);
}

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

/* Blog card mock */
.mock-blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mock-blog-card__img {
  height: 120px;
  background: linear-gradient(135deg, var(--color-electric-light), var(--color-electric-20));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-electric);
}

.mock-blog-card__body {
  padding: var(--space-4);
}

.mock-blog-card__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.mock-blog-card__meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Notification card mock */
.mock-notification {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.mock-notification__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: var(--color-success-light);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-notification__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mock-notification__sub {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Results Page — Case Study Card
   -------------------------------------------------------------------------- */
.case-study-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--duration-normal) var(--ease-default),
              transform var(--duration-normal) var(--ease-default);
}

.case-study-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.case-study-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.case-study-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin: var(--space-5) 0;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
}

.case-study-stat__label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.case-study-stat__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.case-study-stat__value--growth {
  color: var(--color-success);
}

.case-study-card__quote {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Signup Page — Progress Steps
   -------------------------------------------------------------------------- */
.signup-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.signup-progress__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.20);
  transition: background-color var(--duration-fast) var(--ease-default),
              transform var(--duration-fast) var(--ease-default);
}

.signup-progress__dot.is-active {
  background-color: var(--color-white);
  transform: scale(1.3);
}

.signup-progress__dot.is-complete {
  background-color: var(--color-electric);
}

/* --------------------------------------------------------------------------
   Password Strength Bar
   -------------------------------------------------------------------------- */
.password-strength {
  margin-top: var(--space-2);
}

.password-strength__bar {
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--bg-muted);
  overflow: hidden;
  margin-bottom: 4px;
}

.password-strength__fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width var(--duration-normal) var(--ease-default),
              background-color var(--duration-normal) var(--ease-default);
  width: 0;
}

.password-strength__fill--weak   { background: var(--color-error); width: 25%; }
.password-strength__fill--fair   { background: var(--color-warning); width: 50%; }
.password-strength__fill--good   { background: var(--color-info); width: 75%; }
.password-strength__fill--strong { background: var(--color-success); width: 100%; }

.password-strength__label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Tag/Chip Input
   -------------------------------------------------------------------------- */
.tag-input-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-3);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  min-height: 52px;
  cursor: text;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px 3px 12px;
  border-radius: var(--radius-full);
  background: var(--color-electric-light);
  color: var(--color-electric);
  font-size: 0.8125rem;
  font-weight: 500;
}

.tag-chip__remove {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  color: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.7;
}

.tag-chip__remove:hover {
  opacity: 1;
  background: var(--color-electric-20);
}

/* --------------------------------------------------------------------------
   Upload Drop Zone
   -------------------------------------------------------------------------- */
.upload-dropzone {
  border: 2px dashed var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--ease-default),
              background-color var(--duration-fast) var(--ease-default);
}

.upload-dropzone:hover,
.upload-dropzone.is-dragover {
  border-color: var(--color-electric);
  background-color: var(--color-electric-10);
}

.upload-dropzone__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Theme Preview Cards
   -------------------------------------------------------------------------- */
.theme-card {
  border: 2px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--ease-default);
}

.theme-card.is-selected {
  border-color: var(--color-electric);
  box-shadow: var(--shadow-glow);
}

.theme-card__preview {
  height: 80px;
}

.theme-card__label {
  padding: var(--space-2) var(--space-3);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  background: var(--bg-surface);
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Comparison Table
   -------------------------------------------------------------------------- */
.table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

.comparison-table th {
  padding: var(--space-4) var(--space-5);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 2px solid var(--border-default);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table th.col-recommended {
  background-color: var(--color-electric-light);
  color: var(--color-midnight);
}

.comparison-table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-muted);
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-table td.col-recommended {
  background-color: rgba(47, 128, 237, 0.04);
}

.comparison-table tr:hover td {
  background-color: var(--bg-subtle);
}

.comparison-table tr:hover td.col-recommended {
  background-color: rgba(47, 128, 237, 0.07);
}

.check-yes {
  color: var(--color-success);
}

.check-no {
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   ROI Calculator
   -------------------------------------------------------------------------- */
.roi-calculator {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.roi-output {
  background: var(--gradient-dark-radial);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-top: var(--space-6);
  text-align: center;
}

.roi-output__value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.roi-output__label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
}

/* --------------------------------------------------------------------------
   Tab Filter (Results page)
   -------------------------------------------------------------------------- */
.tab-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.tab-filter__btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-default);
  white-space: nowrap;
}

.tab-filter__btn:hover {
  border-color: var(--color-electric);
  color: var(--color-electric);
}

.tab-filter__btn.is-active {
  background: var(--color-midnight);
  border-color: var(--color-midnight);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Carousel
   -------------------------------------------------------------------------- */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform var(--duration-slow) var(--ease-default);
}

.carousel__slide {
  flex-shrink: 0;
  width: 100%;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.carousel__dot.is-active {
  background: var(--color-electric);
  transform: scale(1.4);
}

.carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-default);
  color: var(--text-secondary);
}

.carousel__btn:hover {
  border-color: var(--color-electric);
  color: var(--color-electric);
  background: var(--color-electric-light);
}

/* UI-1054: Carousel Pause/Play button */
.carousel__pause-btn {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.90);
  color: var(--text-secondary);
  cursor: pointer;
  z-index: var(--z-raised);
  transition: background-color var(--duration-fast) var(--ease-default),
              color var(--duration-fast) var(--ease-default);
}

.carousel__pause-btn:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.carousel__pause-btn:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
}

.carousel__pause-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hide the play icon by default (carousel starts playing) */
.carousel__play-icon {
  display: none;
}

/* --------------------------------------------------------------------------
   Aggregate Stats Bar (Results hero)
   -------------------------------------------------------------------------- */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin-top: var(--space-8);
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.stats-bar__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.80);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Tone Radio Cards (Signup Step 2)
   -------------------------------------------------------------------------- */
.tone-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.tone-card {
  position: relative;
  cursor: pointer;
}

.tone-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.tone-card__label {
  display: block;
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  cursor: pointer;
  transition: border-color var(--duration-fast), background-color var(--duration-fast);
}

.tone-card input[type="radio"]:checked + .tone-card__label {
  border-color: var(--color-electric);
  background-color: var(--color-electric-light);
}

.tone-card__title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.tone-card__desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Signup Card
   -------------------------------------------------------------------------- */
.signup-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .signup-card {
    padding: var(--space-6);
  }
}

.signup-step {
  display: none;
}

.signup-step.is-active {
  display: block;
}


/* --------------------------------------------------------------------------
   Premium Section Spacing
   -------------------------------------------------------------------------- */
.section-premium {
  padding: clamp(80px, 10vw, 128px) 0;
}

.section-premium-lg {
  padding: clamp(96px, 12vw, 160px) 0;
}

.section-premium-sm {
  padding: clamp(48px, 6vw, 80px) 0;
}

/* Section header with generous bottom margin */
.section-header-premium {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header-premium .overline {
  margin-bottom: var(--space-4);
}

.section-header-premium .h2-section {
  margin-bottom: var(--space-5);
}

.section-header-premium .body-large {
  max-width: 640px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Hero Premium Background (multi-layer depth)
   -------------------------------------------------------------------------- */
.hero-dark-premium {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(99,102,241, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(47,128,237, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 30%, rgba(47,128,237, 0.20) 0%, transparent 55%),
    linear-gradient(180deg, #070E1A 0%, #0C1E35 35%, #111B33 65%, #0A1628 100%);
  position: relative;
  overflow: clip;
  text-align: center;
}

.hero-dark-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(148, 197, 253, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 10%, transparent 50%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 10%, transparent 50%);
  pointer-events: none;
}

.hero-dark-premium::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse,
    rgba(47, 128, 237, 0.15) 0%,
    rgba(30, 80, 180, 0.08) 40%,
    transparent 70%);
  pointer-events: none;
  animation: hero-glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes hero-glow-pulse {
  from { opacity: 0.7; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

.hero-dark-premium .container {
  position: relative;
  z-index: 1;
}

/* Headline glow (behind text) */
.hero-headline-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(96,180,255,0.12) 0%, rgba(139,92,246,0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: headline-glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes headline-glow-pulse {
  from { opacity: 0.8; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.05); }
}

/* --------------------------------------------------------------------------
   Hero Gradient Headline (shimmer animation)
   -------------------------------------------------------------------------- */
.hero-headline--gradient {
  display: inline-block;
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #60B4FF 25%,
    #A78BFA 50%,
    #60B4FF 75%,
    #FFFFFF 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: headline-shimmer 8s ease-in-out infinite;
  text-shadow: none !important;
}

@keyframes headline-shimmer {
  0%   { background-position: 100% 50%; }
  50%  { background-position: 100% 50%; }
  60%  { background-position: -100% 50%; }
  100% { background-position: -100% 50%; }
}

/* --------------------------------------------------------------------------
   Trust Badges (below CTAs)
   -------------------------------------------------------------------------- */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-5);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-badge i {
  width: 16px;
  height: 16px;
  color: var(--color-success);
}

.trust-badges--dark .trust-badge {
  color: rgba(255, 255, 255, 0.90);
}

.trust-badges--dark .trust-badge i {
  color: rgba(255, 255, 255, 0.95);
}

/* --------------------------------------------------------------------------
   Value Anchor Pill
   -------------------------------------------------------------------------- */
.value-anchor {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  color: var(--color-success);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.value-anchor--dark {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.35);
  color: #34D399;
}

/* --------------------------------------------------------------------------
   Logo Bar (infinite scroll marquee)
   -------------------------------------------------------------------------- */
.logo-bar {
  overflow: hidden;
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.logo-bar::before,
.logo-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}

.logo-bar::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--bg-dark) 100%);
}

.logo-bar__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.logo-bar__track {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  animation: logo-scroll 40s linear infinite;
  width: max-content;
}

.logo-bar__item {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

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

/* --------------------------------------------------------------------------
   Bento Grid
   -------------------------------------------------------------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--space-6);
}

.bento-grid__hero {
  grid-column: span 1;
}

.bento-grid__cell {
  grid-column: span 1;
}

.bento-grid__full {
  grid-column: span 3;
}

@media (max-width: 1023px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-grid__hero { grid-column: span 1; }
  .bento-grid__full { grid-column: span 2; }
}

@media (max-width: 767px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid__hero,
  .bento-grid__full { grid-column: span 1; }
}

/* --------------------------------------------------------------------------
   Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-out),
              transform 600ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 500ms; }

/* --------------------------------------------------------------------------
   Dark Section Variants
   -------------------------------------------------------------------------- */
.section-dark-deep {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(47, 128, 237, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #081C2E 0%, #060F1A 100%);
  color: var(--color-white);
}

.section-dark-glow {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 128, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0D2F4F 0%, #0A2540 100%);
  color: var(--color-white);
}

.section-subtle {
  background-color: var(--bg-subtle);
}

/* --------------------------------------------------------------------------
   Video Placeholder
   -------------------------------------------------------------------------- */
.video-placeholder {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.25);
  box-shadow: 0 20px 60px -12px rgba(10, 37, 64, 0.40), 0 0 0 1px rgba(47, 128, 237, 0.15);
  background: #0D1B2A;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2F80ED, #1A6ED8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: 0 0 0 8px rgba(47, 128, 237, 0.20), 0 8px 24px rgba(47, 128, 237, 0.30);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.video-placeholder:hover .video-placeholder__play {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(47, 128, 237, 0.25), 0 12px 32px rgba(47, 128, 237, 0.35);
}

.video-placeholder__text {
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Dashboard Mockup
   -------------------------------------------------------------------------- */
.mock-dashboard {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium-xl);
  max-width: 960px;
  margin: 0 auto;
}

.mock-dashboard__titlebar {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-default);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-dashboard__body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 400px;
}

.mock-dashboard__sidebar {
  background: var(--color-midnight);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mock-dashboard__sidebar-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

.mock-dashboard__sidebar-item.is-active {
  background: rgba(47, 128, 237, 0.15);
  color: var(--color-white);
}

.mock-dashboard__content {
  padding: var(--space-6);
}

.mock-dashboard__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.mock-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.mock-stat-card {
  padding: var(--space-4);
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-muted);
}

.mock-stat-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.mock-stat-card__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.mock-stat-card__trend {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-success);
  margin-top: 2px;
}

.mock-chart-bar {
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
  height: 80px;
  margin-bottom: var(--space-6);
}

.mock-chart-bar__col {
  flex: 1;
  background: linear-gradient(180deg, var(--color-electric) 0%, rgba(47, 128, 237, 0.4) 100%);
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

/* BEM-style aliases for how-it-works dashboard mockup */
.mock-dashboard__dots {
  display: flex;
  gap: 6px;
}
.mock-dashboard__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.35);
}
.mock-dashboard__dots span:first-child { background: #FF5F57; }
.mock-dashboard__dots span:nth-child(2) { background: #FEBC2E; }
.mock-dashboard__dots span:nth-child(3) { background: #28C840; }

.mock-dashboard__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: auto;
}

.mock-dashboard__main {
  padding: var(--space-5);
}

.mock-dashboard__stat-card {
  padding: var(--space-4);
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-muted);
}

.mock-dashboard__stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.mock-dashboard__stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.mock-dashboard__stat-change {
  font-size: 0.6875rem;
  font-weight: 600;
  margin-top: 2px;
}
.mock-dashboard__stat-change.positive {
  color: var(--color-success);
}

.mock-dashboard__chart {
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
  height: 80px;
  margin-top: var(--space-5);
}

.mock-dashboard__bar {
  flex: 1;
  background: linear-gradient(180deg, var(--color-electric) 0%, rgba(47, 128, 237, 0.4) 100%);
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

.mock-dashboard__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.mock-list {
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mock-list__header {
  padding: var(--space-3) var(--space-4);
  background: var(--bg-subtle);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-muted);
}

.mock-list__item {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-muted);
  font-size: 0.8125rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-list__item:last-child {
  border-bottom: none;
}

.mock-list__meta {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* Dashboard mockup responsive */
@media (max-width: 767px) {
  .mock-dashboard__body {
    grid-template-columns: 1fr;
  }
  .mock-dashboard__sidebar {
    display: none;
  }
  .mock-dashboard__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .mock-dashboard__lists {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Speed to Results Timeline
   -------------------------------------------------------------------------- */
.timeline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-electric), rgba(47, 128, 237, 0.3));
  z-index: 0;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-electric-light), #EDE9FE);
  border: 2px solid rgba(47, 128, 237, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
  position: relative;
  z-index: 1;
  color: var(--color-electric);
  font-size: 0.875rem;
  font-weight: 700;
}

.timeline-label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.timeline-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .timeline-row {
    flex-direction: column;
    gap: var(--space-6);
  }
  .timeline-item::after {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Premium card icon gradient bg
   -------------------------------------------------------------------------- */
.card-feature__icon-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg,
    rgba(47, 128, 237, 0.12) 0%,
    rgba(139, 92, 246, 0.08) 100%);
  color: var(--color-electric);
  margin-bottom: var(--space-5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.card-feature__icon-premium svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

/* --------------------------------------------------------------------------
   Premium Testimonial Card
   -------------------------------------------------------------------------- */
.testimonial-card-premium {
  background-color: var(--bg-surface);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 20px;
  padding: var(--space-8) var(--space-8) var(--space-6);
  box-shadow: 0 1px 3px rgba(10, 37, 64, 0.04);
  transition: transform 300ms var(--ease-default),
              box-shadow 300ms var(--ease-default);
  position: relative;
}

.testimonial-card-premium::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-electric);
  opacity: 0.15;
  pointer-events: none;
}

.testimonial-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.10);
}

.card-pricing__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.card-pricing__trust i {
  width: 14px;
  height: 14px;
  color: var(--color-success);
}

/* --------------------------------------------------------------------------
   Responsive utilities for marketing pages
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show-mobile-only {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   How It Works — Mobile Responsive Fixes
   -------------------------------------------------------------------------- */

/* Tablet (768-1023px) — already has grid-template-columns: 1fr but needs refinement */
@media (max-width: 1023px) {
  .how-step,
  .how-step--reverse {
    gap: var(--space-6);
  }

  /* Watermark number smaller on tablet */
  .how-step__number-watermark {
    font-size: 5rem;
    top: -10px;
    left: -10px;
  }

  /* Mock blog cards 2-col still works on tablet */
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
  /* Step layout single column, tighter gap */
  .how-step,
  .how-step--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  /* On mobile, always show text above visual for reversed steps */
  .how-step--reverse > *:first-child {
    order: 2;
  }
  .how-step--reverse > *:last-child {
    order: 1;
  }

  /* Watermark number smaller */
  .how-step__number-watermark {
    font-size: 4rem;
    top: -8px;
    left: -8px;
  }

  /* Mock window fullwidth and tighter */
  .mock-window {
    border-radius: var(--radius-md);
  }

  .mock-window__body {
    padding: var(--space-3);
  }

  .mock-table {
    font-size: 0.75rem;
  }

  .mock-table th {
    padding: 6px 8px;
    font-size: 0.625rem;
  }

  .mock-table td {
    padding: 8px;
  }

  /* Mock blog cards stack to single column on phone */
  .how-step div[style*="grid-template-columns: 1fr 1fr"],
  .how-step div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: var(--space-3) !important;
  }

  .mock-blog-card__img {
    height: 80px;
  }

  .mock-blog-card__body {
    padding: var(--space-3);
  }

  .mock-blog-card__title {
    font-size: 0.8125rem;
  }

  /* Mock notifications tighter */
  .mock-notification {
    padding: var(--space-3);
  }

  .mock-notification__icon {
    width: 32px;
    height: 32px;
  }

  .mock-notification__icon i {
    width: 16px !important;
    height: 16px !important;
  }

  .mock-notification__title {
    font-size: 0.8125rem;
  }

  .mock-notification__sub {
    font-size: 0.75rem;
  }

  /* Video placeholder on how-it-works */
  .video-placeholder {
    border-radius: 12px;
  }

  .video-placeholder__play {
    width: 56px;
    height: 56px;
    box-shadow: 0 0 0 6px rgba(47, 128, 237, 0.15), 0 6px 18px rgba(47, 128, 237, 0.25);
  }

  .video-placeholder__text {
    font-size: 0.8125rem;
  }

  /* Section premium tighter on mobile */
  .section-premium {
    padding: clamp(48px, 6vw, 80px) 0;
  }

  /* CTA section tighter */
  .cta-section.section-premium {
    padding: clamp(40px, 5vw, 60px) 0 clamp(16px, 2vw, 24px);
  }

  .cta-trust {
    font-size: 0.75rem;
  }

  /* Solution list tighter */
  .solution-list {
    gap: var(--space-3);
  }

  .solution-list__item {
    font-size: 0.875rem;
  }

  /* Overline text */
  .overline {
    font-size: 0.6875rem;
  }

  /* h2 section headings */
  .h2-section {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  /* Body large text */
  .body-large {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

/* Small phones (below 375px) */
@media (max-width: 374px) {
  .how-step__number-watermark {
    font-size: 3rem;
  }

  .mock-table th,
  .mock-table td {
    padding: 5px 6px;
    font-size: 0.6875rem;
  }

  .mock-notification {
    padding: var(--space-2);
    gap: var(--space-2);
  }
}
