/* ============================================================
   3STOUR — Premium Design System
   Manrope | Navy #0B2A51 | Accent #3AABE4
   ============================================================ */

/* ── TOKENS ── */
:root {
  --navy:          #0B2A51;
  --navy-dark:     #0f1a2e;
  --navy-mid:      #243660;
  --accent:        #3AABE4;
  --accent-dark:   #2990c9;
  --accent-light:  #e8f6fd;
  --accent-glow:   rgba(58,171,228,0.35);
  --white:         #ffffff;
  --gray-50:       #f7f9fc;
  --gray-100:      #eef1f6;
  --gray-200:      #dde3ed;
  --gray-400:      #8f9ab0;
  --gray-600:      #556070;
  --text:          #141e2e;
  --text-muted:    #556070;

  --font:          'Manrope', sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-full: 9999px;

  --shadow-sm:  0 1px 4px rgba(20,30,46,.06), 0 1px 2px rgba(20,30,46,.04);
  --shadow-md:  0 4px 20px rgba(20,30,46,.08), 0 2px 8px rgba(20,30,46,.05);
  --shadow-lg:  0 12px 40px rgba(20,30,46,.12), 0 4px 16px rgba(20,30,46,.06);
  --shadow-accent: 0 8px 32px rgba(58,171,228,.3);

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 70px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(221,227,237,0.6);
  transition: box-shadow 0.3s var(--ease-out), background 0.3s;
}

.nav.is-scrolled {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 24px rgba(20,30,46,.08);
  border-bottom-color: transparent;
}

.nav__inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo { height: 26px; width: auto; border-radius: 4px; object-fit: contain; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 16px;
  flex: 1;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--navy); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--r-md);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s, opacity 0.2s;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.98) !important; }

.btn--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  border: none;
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--glass {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn--sm  { font-size: 13px; padding: 9px 18px; }
.btn--lg  { font-size: 15px; padding: 14px 28px; }
.btn--xl  { font-size: 16px; padding: 18px 36px; border-radius: var(--r-lg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-block: 80px;
  background: var(--white);
  overflow: hidden;
}

/* Animated blobs */
.hero__blobs { position: absolute; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.blob--1 {
  width: 700px; height: 700px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(58,171,228,0.18) 0%, transparent 70%);
  animation: blob-float 12s ease-in-out infinite;
}

.blob--2 {
  width: 600px; height: 600px;
  top: 20%; right: -150px;
  background: radial-gradient(circle, rgba(26,43,74,0.1) 0%, transparent 70%);
  animation: blob-float 15s ease-in-out infinite reverse;
  animation-delay: -4s;
}

.blob--3 {
  width: 500px; height: 500px;
  bottom: -100px; left: 40%;
  background: radial-gradient(circle, rgba(58,171,228,0.12) 0%, transparent 70%);
  animation: blob-float 10s ease-in-out infinite;
  animation-delay: -7s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.06); }
  66% { transform: translate(-25px, 25px) scale(0.94); }
}

/* Hero background image */
.hero__bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% top;
  display: block;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.55) 28%,
    rgba(0,0,0,0.9) 58%,
    black 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.55) 28%,
    rgba(0,0,0,0.9) 58%,
    black 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

/* Hero bg-img mobile */
@media (max-width: 900px) {
  .hero__bg-img { width: 100%; opacity: 0.18; }
  .hero__bg-img img { opacity: 1; -webkit-mask-image: none; mask-image: none; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 24px;
}

.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58,171,228,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(58,171,228,0); }
}

.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 60%, var(--navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item svg { color: var(--accent); flex-shrink: 0; }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-inline: auto;
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  30% { opacity: 1; transform: scaleY(1); }
  70% { opacity: 0.5; }
}

/* ── PARTNERS BAR ── */
.partners-bar {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding-block: 20px;
  background: var(--gray-50);
  overflow: hidden;
}

.partners-bar__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 16px;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

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

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

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

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 64px;
  border-radius: 10px;
  padding: 10px 20px;
  opacity: 0.88;
  transition: opacity 0.25s, transform 0.25s;
  cursor: default;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.04);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.partner-logo--latam    { background: #E31837; }
.partner-logo--gol      { background: #E87B24; }
.partner-logo--azul     { background: #003DA5; }
.partner-logo--localiza { background: #00A859; }
.partner-logo--movida   { background: #E8312A; }

/* ── SECTIONS ── */
.section { padding-block: 96px; }
.section--subtle { background: var(--gray-50); }

.section--gradient {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy) 100%);
  color: var(--white);
}

/* ── LEAD MAGNET SECTION ── */
.section--lead {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2244 60%, #162d56 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--lead::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,171,228,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left column */
.lead-info .eyebrow--light {
  color: rgba(255,255,255,0.7);
}

.lead-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.lead-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 32px;
}

.lead-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.lead-list li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Right column — card */
.lead-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 32px 64px rgba(0,0,0,0.3);
}

.lead-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lead-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #2580b3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.lead-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.lead-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* Form fields */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lead-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-family: var(--font);
}

.lead-form__field input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.lead-form__field input::placeholder {
  color: rgba(255,255,255,0.3);
}

.lead-form__field input:focus {
  border-color: var(--accent);
  background: rgba(58,171,228,0.08);
}

.lead-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.lead-form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font);
  margin-top: 4px;
}

/* Success state */
.lead-success {
  text-align: center;
  padding: 32px 16px;
}

.lead-success__check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 12px rgba(34,197,94,0.12);
}

.lead-success__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--font);
}

.lead-success__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-family: var(--font);
}

/* Responsive */
@media (max-width: 768px) {
  .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .lead-card { padding: 28px 22px; }
}

.section--tax {
  background: linear-gradient(160deg, #091829 0%, var(--navy) 55%, #1a3560 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--tax::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,171,228,0.15) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}

.section--pilot {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--cta {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-block: 120px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  border: 1px solid rgba(58,171,228,0.25);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section-tag--light {
  color: var(--accent);
  background: rgba(58,171,228,0.12);
  border-color: rgba(58,171,228,0.2);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title--white { color: var(--white); }

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── PAIN GRID ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  opacity: 0;
  transition: opacity 0.3s;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}
.pain-card:hover::before { opacity: 1; }

.pain-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-light);
  border-radius: var(--r-md);
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.pain-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pain-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── SOLUTION ── */
.solution-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.solution-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 16px;
}

.solution-body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-highlight {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 20px 24px;
}

.solution-highlight strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
}

.solution-highlight p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.solution-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.channel-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
}

.channel-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.channel-card--highlight {
  border-color: rgba(58,171,228,0.4);
  background: rgba(58,171,228,0.08);
}

.channel-card__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(58,171,228,0.15);
  border-radius: var(--r-md);
  color: var(--accent);
}

.channel-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.channel-card__desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
  cursor: default;
}

.service-card__glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-light), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(58,171,228,0.3);
}
.service-card:hover .service-card__glow { opacity: 1; }

.service-card__icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent-light), #d0eefa);
  border-radius: var(--r-lg);
  color: var(--accent-dark);
  margin-bottom: 20px;
  position: relative;
}

.service-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

/* ── STATS ── */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
}

.stat-item__num {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-item__suffix {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: 2px;
}

.stat-item__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gray-200), transparent);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

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

.testimonial-card__stars { display: flex; gap: 3px; }

.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ── TAX SECTION ── */
.tax-wrap {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.tax-icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(58,171,228,0.12);
  border: 1px solid rgba(58,171,228,0.25);
  border-radius: var(--r-xl);
  color: var(--accent);
  margin-inline: auto;
  margin-bottom: 28px;
}

.tax-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 28px;
}

.tax-callout {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-bottom: 36px;
  text-align: left;
}

.tax-callout p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── STEPS ── */
.steps-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(58,171,228,0.25);
}

.step-card__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: var(--r-full);
  padding: 3px 10px;
  margin-bottom: 16px;
}

.step-card__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-50);
  border-radius: var(--r-lg);
  color: var(--navy);
  margin-inline: auto;
  margin-bottom: 20px;
}

.step-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card__text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  color: var(--accent);
  padding-inline: 20px;
  margin-bottom: 40px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── PILOT ── */
.pilot-wrap {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.pilot-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(58,171,228,0.12);
  border: 1px solid rgba(58,171,228,0.25);
  padding: 4px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}

.pilot-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: 48px;
}

.pilot-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.pilot-col {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 28px;
}

.pilot-col--yes { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.05); }
.pilot-col--no  { border-color: rgba(239,68,68,0.2); background: rgba(239,68,68,0.04); }

.pilot-col__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pilot-col--yes .pilot-col__title { color: #4ade80; }
.pilot-col--no  .pilot-col__title { color: #f87171; }

.pilot-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pilot-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.pilot-list li svg { flex-shrink: 0; margin-top: 2px; }
.pilot-col--yes .pilot-list li svg { color: #4ade80; }
.pilot-col--no  .pilot-list li svg { color: #f87171; }
.pilot-col--no  .pilot-list li span { text-decoration: line-through; opacity: 0.6; }

.pilot-micro {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item.is-open {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(58,171,228,0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background 0.2s;
}

.faq-trigger:hover { background: var(--gray-50); }
.faq-item.is-open .faq-trigger { color: var(--accent-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  color: var(--navy);
  transition: background 0.2s, transform 0.35s var(--ease-out);
}

.faq-item.is-open .faq-icon {
  background: var(--accent-light);
  color: var(--accent-dark);
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.is-open .faq-body { max-height: 400px; }

.faq-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 24px 20px;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* ── CTA FINAL ── */
.cta-wrap {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.cta-micro {
  font-size: 13px;
  color: var(--gray-400);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  padding-block: 32px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  height: 28px;
  width: auto;
  border-radius: 4px;
  opacity: 0.8;
}

.footer__legal {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer__link {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--white); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* stagger children */
.pain-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.pain-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.pain-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.pain-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.faq-list .reveal:nth-child(2) { transition-delay: 0.05s; }
.faq-list .reveal:nth-child(3) { transition-delay: 0.1s; }
.faq-list .reveal:nth-child(4) { transition-delay: 0.15s; }
.faq-list .reveal:nth-child(5) { transition-delay: 0.2s; }
.faq-list .reveal:nth-child(6) { transition-delay: 0.25s; }
.faq-list .reveal:nth-child(7) { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-wrap { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .step-connector { display: none; }
  .step-card { max-width: 260px; }
}

@media (max-width: 768px) {
  .section { padding-block: 64px; }
  .hero { padding-block: 60px; min-height: auto; }
  .nav__links { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; }
  .stat-divider { display: none; }
  .pilot-cols { grid-template-columns: 1fr; }
  .solution-channels { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .step-card { max-width: 100%; width: 100%; }
}

@media (max-width: 480px) {
  .btn--xl { padding: 16px 24px; font-size: 15px; }
  .stat-item { flex: 0 0 100%; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 10px; }
}
