:root {
  --swiper-theme-color: #007aff;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  background-color: #030014;
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Orb */
.hero-orb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.75) 0%, rgba(99, 102, 241, 0.4) 38%, rgba(59, 130, 246, 0.15) 60%, transparent 75%);
  filter: blur(32px);
  pointer-events: none;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(3, 0, 20, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 62px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  justify-content: space-between;
}

/* Blur isolado no ::before — impede que backdrop-filter no nav
   crie containing block para position:fixed filhos (nav-links) */
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

.nav-logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: #007aff;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #0062cc;
}

/* Section label */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.25s;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

/* Dashboard mockup */
.dashboard-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.dashboard-header {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-text {
  color: #7c6fec;
}

/* FAQ accordion */
details summary {
  cursor: pointer;
  list-style: none;
}

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

details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  transition: transform 0.2s;
  display: inline-block;
}

/* Stat dividers */
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

/* Phase number */
.phase-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

/* Testimonial initial avatar */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d28d9, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

/* Pricing badge */
.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #030014;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

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

/* ─── Nav transition ────────────────────────────────────────── */
nav {
  transition: background 0.3s ease;
}

/* ─── Card glow on hover ────────────────────────────────────── */
.card {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  border-color: rgba(124, 111, 236, 0.3);
  box-shadow: 0 0 24px rgba(124, 111, 236, 0.08);
  transform: translateY(-2px);
}

/* ─── Hero orb parallax ─────────────────────────────────────── */
#hero-orb {
  transition: transform 0.12s ease-out;
}

/* ─── CTA pulse ─────────────────────────────────────────────── */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(0, 122, 255, 0); }
}
.cta-pulse {
  animation: cta-pulse 2.4s ease-in-out infinite;
}

/* ─── Gradient text shimmer ─────────────────────────────────── */
@keyframes shimmer-text {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.accent-text {
  color: unset;
  background: linear-gradient(90deg, #7c6fec, #a78bfa, #60a5fa, #7c6fec);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s linear infinite;
}

/* ─── Section fade-up (AOS fallback handled by JS) ──────────── */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(24px);
}
[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out-cubic, transform 0.7s ease-out-cubic;
}

/* ─── Stat number glow ──────────────────────────────────────── */
.stat-num {
  transition: color 0.3s;
}
.stat-num:hover {
  text-shadow: 0 0 24px currentColor;
}

/* ─── Phase num pulse on hover ──────────────────────────────── */
.phase-num {
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.phase-num:hover,
.card:hover .phase-num {
  background: rgba(124, 111, 236, 0.12);
  border-color: rgba(124, 111, 236, 0.4);
  color: #a78bfa;
}

/* ─── Avatar pop on hover ───────────────────────────────────── */
.avatar {
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover .avatar {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(124, 111, 236, 0.35);
}

/* ─── FAQ icon rotation smooth ──────────────────────────────── */
.faq-icon {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Details open animation ────────────────────────────────── */
details > p {
  overflow: hidden;
  animation: slide-down 0.3s ease-out;
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Nav CTA hover ─────────────────────────────────────────── */
.nav-cta {
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: #0062cc;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 122, 255, 0.35);
}

/* ─── Moving Border Button ──────────────────────────────────── */
.moving-border-wrap {
  display: inline-block;
  border-radius: 9999px;
  padding: 2px;
  background: linear-gradient(90deg, #7c6fec, #60a5fa, #007aff, #a78bfa, #7c6fec);
  background-size: 300% 100%;
  animation: moving-border-shift 3s linear infinite;
}

@keyframes moving-border-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.moving-border-inner {
  display: block;
  background: #007aff;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s;
}

.moving-border-inner:hover {
  background: #0062cc;
}

/* ─── Marketplace Logos Bar ─────────────────────────────────── */
.logos-marquee-wrap {
  overflow: hidden;
  padding: 12px 0;
  -webkit-mask: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: logos-scroll 28s linear infinite;
}

@keyframes logos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.logo-item:hover {
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.logo-item img {
  max-width: 120px;
  max-height: 30px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ─── Infinite Moving Cards ─────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

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

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-card {
  width: 340px;
  flex-shrink: 0;
}

.testimonial-card-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.testimonial-card-wrap:hover {
  border-color: rgba(124, 111, 236, 0.3);
  box-shadow: 0 0 24px rgba(124, 111, 236, 0.08);
}

.testimonial-content {
  position: relative;
  z-index: 1;
  padding: 28px;
}

/* ─── Glowing Stars ─────────────────────────────────────────── */
.stars-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-template-rows: repeat(7, 1fr);
  pointer-events: none;
  z-index: 0;
}

.star-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin: auto;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.star-dot.glow {
  background: #a78bfa;
  box-shadow: 0 0 6px rgba(167, 139, 250, 0.9), 0 0 14px rgba(167, 139, 250, 0.4);
}

/* ─── Tracing Beam ──────────────────────────────────────────── */
.tracing-beam-container {
  position: relative;
}

.tracing-beam-track {
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 2px;
}

.tracing-beam-line {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
}

.tracing-beam-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to bottom, #7c6fec, #60a5fa);
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(124, 111, 236, 0.7);
  transition: height 0.12s ease-out;
}

.tracing-beam-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7c6fec;
  box-shadow: 0 0 0 3px rgba(124, 111, 236, 0.2), 0 0 14px rgba(124, 111, 236, 0.8);
  top: 0;
  transition: top 0.12s ease-out;
}

/* ─── Profile Card Gradient Border ─────────────────────────── */
.profile-card {
  position: relative;
  isolation: isolate;
  background: #0a0720; /* fundo sólido escuro impede o ::before de vazar pelo card */
}

.profile-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 17px;
  background: linear-gradient(135deg, #4c3fa0, #6d28d9, #7c6fec, #3730a3);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradient-rotate 4s ease infinite;
}

.profile-card:hover::before {
  opacity: 1;
}

.profile-card.featured::before {
  opacity: 0.7;
}

@keyframes gradient-rotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── Aurora Section ────────────────────────────────────────── */
.aurora-section {
  position: relative;
  overflow: hidden;
}

.aurora-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.aurora-layer::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 130%;
  left: -25%;
  top: -15%;
  background: radial-gradient(ellipse at center, rgba(109, 40, 217, 0.14) 0%, rgba(99, 102, 241, 0.06) 45%, transparent 70%);
  animation: aurora-move-1 9s ease-in-out infinite alternate;
}

.aurora-layer::after {
  content: '';
  position: absolute;
  width: 75%;
  height: 110%;
  right: -20%;
  top: -5%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, rgba(124, 111, 236, 0.05) 45%, transparent 70%);
  animation: aurora-move-2 11s ease-in-out infinite alternate;
}

@keyframes aurora-move-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(6%, 8%) scale(1.12); }
}

@keyframes aurora-move-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-6%, -6%) scale(1.18); }
}

/* ─── Spotlight Hero ────────────────────────────────────────── */
.spotlight-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

@keyframes spotlight-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

.spotlight-ellipse {
  animation: spotlight-pulse 5s ease-in-out infinite;
  transform-origin: center;
}

/* ─── Background Beams ──────────────────────────────────────── */
.beams-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.beam-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: beam-draw 5s ease-in-out infinite;
}

.beam-path:nth-child(1) { animation-delay: 0s; }
.beam-path:nth-child(2) { animation-delay: 1.2s; }
.beam-path:nth-child(3) { animation-delay: 2.4s; }
.beam-path:nth-child(4) { animation-delay: 3.6s; }

@keyframes beam-draw {
  0%   { stroke-dashoffset: 800; opacity: 0; }
  20%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

/* ─── Text Generate Effect ──────────────────────────────────── */
.tg-word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(6px);
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease;
}

.tg-word.tg-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   HAMBURGER MENU
   ═══════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ─── Overflow base ──────────────────────────────────── */
  body { overflow-x: hidden !important; }

  /* ─── Nav ─────────────────────────────────────────────── */
  nav {
    padding: 0 20px !important;
    height: 56px !important;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    /* display:none por padrão — JS seta display:flex na abertura */
    display: none !important;
    position: fixed !important;
    top: 56px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #030014 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 40px !important;
    gap: 4px !important;
    z-index: 9998 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    transition: opacity 0.28s ease, transform 0.28s ease !important;
  }

  .nav-links.open {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .nav-links li {
    width: 100% !important;
    text-align: center !important;
    opacity: 0 !important;
    transform: translateY(-6px) !important;
    transition: opacity 0.22s ease, transform 0.22s ease !important;
  }

  .nav-links.open li:nth-child(1) { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.07s !important; }
  .nav-links.open li:nth-child(2) { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.13s !important; }
  .nav-links.open li:nth-child(3) { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.19s !important; }
  .nav-links.open li:nth-child(4) { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.25s !important; }
  .nav-links.open li:nth-child(5) { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.31s !important; }

  .nav-links a {
    display: block !important;
    padding: 16px 20px !important;
    font-size: 17px !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .nav-cta {
    display: none !important;
  }

  /* ─── Mobile performance — desativa efeitos GPU pesados ── */
  /* Spotlight SVG tem feGaussianBlur stdDeviation=60 — muito pesado */
  .spotlight-svg {
    display: none !important;
  }
  /* Orb reduzido: menos área de blur para compor */
  .hero-orb {
    width: 320px !important;
    height: 320px !important;
    filter: blur(18px) !important;
  }

  /* ─── Section & footer paddings ──────────────────────── */
  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  section[style*="padding: 120px 48px"] {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  section[style*="padding: 0 48px 80px"],
  section[style*="padding: 0 48px 120px"],
  section[style*="padding: 0 0 120px"] {
    padding-top: 0 !important;
    padding-bottom: 64px !important;
  }

  footer {
    padding: 56px 20px 32px !important;
  }

  /* ─── Hero section ────────────────────────────────────── */
  .hero-section {
    padding: 96px 20px 60px !important;
    min-height: 100svh !important;
  }

  .hero-section h1 {
    font-size: clamp(30px, 8vw, 44px) !important;
  }

  .hero-section h1 span[style*="min-height"] {
    min-height: 40px !important;
  }

  #hero-subtext {
    font-size: 15px !important;
    max-width: 100% !important;
    margin-bottom: 28px !important;
  }

  /* ─── Stats bar ───────────────────────────────────────── */
  .stats-bar {
    flex-direction: column !important;
    max-width: 100% !important;
    border-radius: 12px !important;
  }

  .stats-bar > div[style*="width: 1px"],
  .stats-bar > div[style*="background: rgba(255,255,255,0.08)"] {
    width: auto !important;
    height: 1px !important;
    min-height: 1px !important;
    align-self: auto !important;
  }

  .stats-bar > div[style*="flex: 1"] {
    padding: 20px 24px !important;
  }

  /* ─── All 3-column grids ──────────────────────────────── */
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ─── All 2-column grids ──────────────────────────────── */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ─── Founder grid ────────────────────────────────────── */
  [style*="grid-template-columns: auto 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    justify-items: center !important;
    text-align: center !important;
  }

  [style*="grid-template-columns: auto 1fr"] > div > blockquote {
    text-align: left !important;
  }

  /* ─── Case R$1M result arrow ──────────────────────────── */
  [style*="grid-template-columns: 1fr auto 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  [style*="grid-template-columns: 1fr auto 1fr"] > div[style*="font-size: 28px"] {
    display: none !important;
  }

  /* ─── Footer grid ─────────────────────────────────────── */
  [style*="grid-template-columns: 2fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-bottom: 40px !important;
  }

  /* ─── Footer bottom bar ───────────────────────────────── */
  footer > div > div[style*="justify-content: space-between"] {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    align-items: flex-start !important;
  }

  /* ─── Method pillars ──────────────────────────────────── */
  .grid-method {
    grid-template-columns: 1fr !important;
    border-top: none !important;
    gap: 0 !important;
    margin-bottom: 48px !important;
  }

  .grid-method > div {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 20px 0 !important;
  }

  /* ─── Tracing beam (hide track on mobile) ─────────────── */
  .tracing-beam-track {
    display: none !important;
  }

  /* ─── Section headings ────────────────────────────────── */
  h2[style*="font-size: 44px"] {
    font-size: clamp(26px, 7.5vw, 36px) !important;
  }

  h2[style*="font-size: 48px"] {
    font-size: clamp(28px, 7.5vw, 40px) !important;
  }

  /* ─── CTA buttons full-width on mobile ───────────────── */
  .moving-border-wrap {
    display: block !important;
    width: 100% !important;
  }

  .moving-border-inner {
    text-align: center !important;
    font-size: 14px !important;
    padding: 14px 20px !important;
  }

  /* ─── Comparison table border fix ────────────────────── */
  [style*="grid-template-columns: 1fr 1fr"] > div[style*="border-left"] {
    border-left: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  /* ─── Cards section padding ───────────────────────────── */
  .card[style*="padding: 36px"] {
    padding: 24px !important;
  }

  .card[style*="padding: 28px 32px"] {
    padding: 20px !important;
  }

  /* ─── Hero CTA buttons — equal size, stacked ─────────── */
  .hero-cta-group {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .hero-btn-secondary {
    display: block !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* ─── Hero steps — column layout, no right arrows ────── */
  .hero-steps {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    max-width: 280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-step-arrow {
    display: none !important;
  }

  /* ─── Comparison table — keep 2 cols, reduce padding ─── */
  /* Higher specificity (0,2,0) overrides the general 1fr rule (0,1,0) */
  .comparison-table .comparison-row {
    grid-template-columns: 1fr 1fr !important;
  }

  .comparison-table .comparison-row > div {
    padding: 14px 16px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  /* Header row labels */
  .comparison-table .comparison-row > div > div {
    font-size: 11px !important;
    letter-spacing: 0.05em !important;
  }

  /* Restore the border-left on the LAFINE column (undo the general reset) */
  .comparison-table .comparison-row > div[style*="border-left"] {
    border-left: 1px solid rgba(124, 111, 236, 0.08) !important;
    border-top: none !important;
  }
}