/* ============================================================
   SUPER SWIFT SITES — Design System
   Mobile-first. Direct. No-fluff.
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colours */
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E45;
  --orange:     #F97316;
  --orange-hov: #EA6B0A;
  --white:      #FFFFFF;
  --offwhite:   #F8FAFC;
  --light:      #F1F5F9;
  --border:     #E2E8F0;
  --text:       #1E293B;
  --muted:      #64748B;

  /* Typography */
  --font:       'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-y:  5rem;
  --container:  1160px;
  --gap:        1.5rem;

  /* Radius */
  --radius:     0.75rem;
  --radius-sm:  0.375rem;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 66ch;
}
.text-center { text-align: center; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section--narrow { max-width: 780px; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover { background: var(--orange-hov); border-color: var(--orange-hov); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--nav {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
}
.btn--nav:hover { background: var(--orange-hov); border-color: var(--orange-hov); }

.btn--full { width: 100%; }

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }

.section--light    { background: var(--white); }
.section--dark     { background: var(--navy); color: var(--white); }
.section--offwhite { background: var(--offwhite); }
.section--cta      { background: var(--navy); color: var(--white); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}
.nav__logo {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__links a:not(.btn) {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav__links a:not(.btn):hover { color: var(--white); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    /* closed state */
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-inline: 1.25rem;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
      opacity    0.3s ease,
      padding    0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav__links.is-open {
    max-height: 300px;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    opacity: 1;
  }
  .btn--nav { width: 100%; justify-content: center; }
}

/* ---------- HERO ---------- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.hero__content { max-width: 680px; }
.hero__headline {
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero__sub {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  max-width: 52ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-strip__dot { color: var(--orange); }

/* ---------- STATS ROW ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--gap);
  margin-top: 2.5rem;
}
.stat-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border-left: 4px solid var(--orange);
}
.stat-card__number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card__label {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ---------- CARD GRID ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
  margin-top: 2.5rem;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.feature-card:hover { background: rgba(255,255,255,0.08); }
.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feature-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.feature-card p  { color: rgba(255,255,255,0.65); margin: 0; font-size: 0.9375rem; }

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
  margin-top: 2.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pricing-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.1);
}
.pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.875rem;
  border-radius: 99px;
  white-space: nowrap;
}
.pricing-card__name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}
.pricing-card__amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.pricing-card__freq {
  font-size: 0.9375rem;
  color: var(--muted);
}
.pricing-card__monthly {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.25rem;
}
.pricing-card__sub {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.pricing-card__list li {
  font-size: 0.9375rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}
.pricing-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.pricing-card__list li:nth-child(2):not(:only-child) {
  font-weight: 600;
}
.pricing-card__list li:nth-child(2)::before { content: ''; }

.pricing-footnote {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1.5rem;
}
.addon-box {
  margin-top: 1rem;
  background: var(--light);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  text-align: center;
  color: var(--text);
  max-width: 560px;
  margin-inline: auto;
}

/* ---------- TIMELINE ---------- */
.timeline {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline__item:not(.timeline__item--last)::before {
  content: '';
  position: absolute;
  left: 44px;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.15);
}
.timeline__marker {
  display: flex;
  justify-content: center;
  padding-top: 0.125rem;
}
.timeline__day {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-align: center;
  white-space: nowrap;
  height: fit-content;
}
.timeline__day--final {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.timeline__body h3 { color: var(--white); font-size: 1.0625rem; }
.timeline__body p  { color: rgba(255,255,255,0.65); font-size: 0.9375rem; margin: 0; }

/* ---------- COMPARISON TABLE ---------- */
.table-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 620px;
}
.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table thead th {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.comparison-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table thead th:last-child  { border-radius: 0 var(--radius) 0 0; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) { background: var(--offwhite); }
.comparison-table .row-label {
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.col--us { background: rgba(249,115,22,0.06) !important; }
.col--us.highlight strong { color: var(--orange); }
thead .col--us {
  color: var(--orange) !important;
  background: rgba(249,115,22,0.15) !important;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-item__q:hover { background: var(--offwhite); }
.faq-item__q[aria-expanded="true"] { background: var(--offwhite); }
.faq-item__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.2s;
  position: relative;
}
.faq-item__icon::before { content: '+'; }
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 1.5rem 1.25rem;
  background: var(--offwhite);
}
.faq-item__a p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* ---------- CTA FORM ---------- */
.cta__heading {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  max-width: 52ch;
  margin-inline: auto;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 560px;
  margin-inline: auto;
}
.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.cta-form__row--full { grid-template-columns: 1fr; }

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--white);
  transition: border-color 0.15s, background 0.15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.cta-form select option { background: var(--navy); color: var(--white); }
.cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form input:focus,
.cta-form select:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
}
.cta-form input.is-error,
.cta-form select.is-error {
  border-color: #F87171;
}
.cta-form .btn { margin-top: 0.5rem; }

.cta-form__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
}

.cta-form__success {
  max-width: 480px;
  margin-inline: auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.cta-form__success h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.cta-form__success p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  margin: 0;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #060D16;
  color: rgba(255,255,255,0.5);
  padding-block: 3rem;
  font-size: 0.875rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer__logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer__brand p { line-height: 1.5; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__nav a { transition: color 0.15s; }
.footer__nav a:hover { color: var(--white); }
.footer__legal { text-align: right; line-height: 1.8; }

@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer__legal { text-align: left; }
}

/* ---------- MOBILE COMPARISON CARDS ---------- */
/* Hidden on desktop; shown instead of the table on mobile */
.cmp-mobile { display: none; }

.cmp-us {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.cmp-us__name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.cmp-us__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.cmp-us__list li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}
.cmp-us__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.cmp-others {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cmp-other {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
}
.cmp-other__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
}
.cmp-other__note {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ---------- RESPONSIVE ---------- */


@media (max-width: 700px) {
  /* Swap table → mobile cards in comparison section */
  .table-wrap  { display: none; }
  .cmp-mobile  { display: block; margin-top: 2rem; }
}

@media (max-width: 640px) {
  :root { --section-y: 3rem; }

  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }

  /* Hero */
  .hero { padding-top: 3.5rem; padding-bottom: 3rem; }
  .hero__sub { font-size: 1rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; }

  /* Trust strip */
  .trust-strip { gap: 0.375rem 0.75rem; }
  .trust-strip__dot { display: none; }

  /* Testimonials */
  .testimonials-wrap { padding: 1.5rem 1.25rem 1.25rem; }
  .testimonial__quote { font-size: 0.9375rem; }

  /* Stats */
  .stats-row { grid-template-columns: 1fr; gap: 0.75rem; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr; }

  /* Timeline */
  .timeline__item { grid-template-columns: 68px 1fr; gap: 1rem; }
  .timeline__item::before { left: 28px; }
  .timeline__day { font-size: 0.75rem; padding: 0.2rem 0.4rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card__amount { font-size: 2rem; }

  /* Form */
  .cta-form__row { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-item__q { font-size: 0.9375rem; padding: 1rem 1.25rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__legal { text-align: left; }
}

@media (max-width: 400px) {
  h1 { font-size: 1.625rem; }
  .btn { padding: 0.75rem 1.25rem; font-size: 0.9375rem; }
  .hero { padding-top: 2.5rem; }
  .stat-card__number { font-size: 1.875rem; }
}

/* ---------- Utilities ---------- */
[hidden] { display: none !important; }

/* ============================================================
   ANIMATIONS & MOTION
   ============================================================ */

/* ---- Keyframes ---- */
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blobDrift {
  0%   { transform: translate(0, 0)    scale(1);    }
  100% { transform: translate(-60px, 80px) scale(1.22); }
}
@keyframes blobDrift2 {
  0%   { transform: translate(0, 0)    scale(1);    }
  100% { transform: translate(80px, -50px) scale(1.16); }
}

@keyframes featuredRing {
  0%, 100% { box-shadow: 0 0 0 4px rgba(249,115,22,0.14), 0 4px 24px rgba(0,0,0,0.07); }
  50%       { box-shadow: 0 0 0 9px rgba(249,115,22,0.05), 0 4px 24px rgba(0,0,0,0.07); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Nav entrance ---- */
.nav { animation: navSlideDown 0.55s cubic-bezier(0.16, 1, 0.3, 1) both; }

/* ---- Hero background globs ---- */
.hero { position: relative; overflow: hidden; }

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 720px;
  height: 720px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.2) 0%, transparent 68%);
  top: -240px;
  right: -180px;
  animation: blobDrift 12s ease-in-out infinite alternate;
}
.hero::after {
  width: 540px;
  height: 540px;
  background: radial-gradient(ellipse, rgba(96,165,250,0.08) 0%, transparent 68%);
  bottom: -140px;
  left: -120px;
  animation: blobDrift2 16s ease-in-out infinite alternate;
}
.hero__inner { position: relative; z-index: 1; }

/* ---- Hero text stagger ---- */
.hero__headline    { animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s  both; }
.hero__sub         { animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
.hero__ctas        { animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both; }
.trust-strip       { animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.60s both; }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity   0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Button shimmer ---- */
.btn--primary,
.btn--nav { position: relative; overflow: hidden; }

.btn--primary::after,
.btn--nav::after {
  content: '';
  position: absolute;
  inset: 0;
  left: -120%;
  width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}
.btn--primary:hover::after,
.btn--nav:hover::after { left: 170%; }

/* ---- Card hover lifts ---- */
.feature-card {
  transition: background 0.22s, transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.28);
  background: rgba(255,255,255,0.09);
}

.pricing-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0,0,0,0.13);
}

.stat-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.09);
}

/* ---- Featured pricing pulse ---- */
.pricing-card--featured {
  animation: featuredRing 2.8s ease-in-out infinite;
}
.pricing-card--featured:hover {
  animation: none;
  box-shadow: 0 28px 56px rgba(249,115,22,0.18);
}

/* ---- FAQ smooth transition ---- */
/* JS removes the [hidden] attr on init; max-height keeps items closed */
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition:
    max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    padding    0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__a.is-open {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

/* ---- Stat counter entrance ---- */
.stat-card.is-visible .stat-card__number {
  animation: countUp 0.45s ease both;
}

/* ---- Comparison table row hover ---- */
.comparison-table tbody tr {
  transition: background 0.15s;
}
.comparison-table tbody tr:hover td {
  background: rgba(249,115,22,0.04);
}
.comparison-table tbody tr:hover .col--us {
  background: rgba(249,115,22,0.12) !important;
}

/* ---- Trust strip item entrance ---- */
.trust-strip span {
  display: inline-block;
}

/* ---- Testimonial carousel ---- */
.testimonials-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 2rem 1.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.testimonials-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin: 0 0 1.25rem;
}

.testimonials {
  position: relative;
}
.testimonial {
  display: none;
}
.testimonial.is-active {
  display: block;
  animation: testimonialIn 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes testimonialIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.testimonial__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin: 0 0 0.875rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.testimonial__author strong {
  color: var(--white);
  font-weight: 700;
}
.testimonial__author span {
  color: rgba(255,255,255,0.45);
}
.testimonial__author::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Dot navigation */
.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
}
.testimonial-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}
.testimonial-dot.is-active {
  background: var(--orange);
  width: 22px;
}
.testimonial-dot:hover:not(.is-active) {
  background: rgba(255,255,255,0.45);
}

/* ---- Section heading underline accent ---- */
.section--dark h2,
.section--cta h2 {
  position: relative;
  display: inline-block;
}
