@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --blue:       #0F4C81;
  --blue-mid:   #1A6AB5;
  --blue-light: #3B82F6;
  --blue-50:    #E8F1FA;
  --blue-100:   #C5D9F0;
  --white:      #FFFFFF;
  --bg:         #F5F7FA;
  --bg-section: #EEF4FB;
  --text:       #0F172A;
  --text-2:     #475569;
  --text-3:     #94A3B8;
  --border:     #E2E8F0;
  --green:      #10B981;
  --r:          14px;
  --r-lg:       22px;
  --shadow:     0 1px 3px rgba(0,0,0,.06), 0 8px 24px -4px rgba(0,0,0,.08);
  --shadow-blue: 0 8px 32px -4px rgba(15,76,129,.28);
  --transition: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Utilities ─────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── NAV ────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-cta {
  background: var(--blue); color: #fff;
  padding: 9px 20px; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15,76,129,.3);
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 90px;
  text-align: center;
  color: #fff;
  background: var(--blue);
}

/* Mesh gradient animado */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(59,130,246,.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(26,106,181,.6) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at 60% 90%, rgba(15,76,129,.8) 0%, transparent 60%),
    linear-gradient(135deg, #0a3259 0%, #0F4C81 50%, #1A6AB5 100%);
  animation: meshShift 12s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: .92; transform: scale(1.04); }
}

/* Bolinhas flutuantes */
.hero-orb {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.06);
  animation: float linear infinite;
}
.hero-orb-1 { width: 320px; height: 320px; top: -100px; right: -80px; animation-duration: 20s; }
.hero-orb-2 { width: 200px; height: 200px; bottom: -60px; left: -40px; animation-duration: 14s; animation-delay: -7s; }
.hero-orb-3 { width: 120px; height: 120px; top: 40%; right: 15%; animation-duration: 18s; animation-delay: -3s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-20px) rotate(5deg); }
  66%      { transform: translateY(10px) rotate(-3deg); }
}

/* Grade sutil */
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  color: #fff; padding: 6px 18px;
  border-radius: 100px; font-size: 13px; font-weight: 500;
  margin-bottom: 28px;
  animation: fadeDown .7s var(--transition) both;
}
.hero h1 {
  font-size: clamp(30px, 5.5vw, 60px);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 22px; letter-spacing: -.02em;
  animation: fadeUp .8s var(--transition) .1s both;
}
.hero h1 span { color: #93C5FD; }

.hero p {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,.85);
  max-width: 600px; margin: 0 auto 38px;
  line-height: 1.7;
  animation: fadeUp .8s var(--transition) .2s both;
}

.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--blue);
  padding: 16px 36px; border-radius: 12px;
  font-weight: 800; font-size: 16px; text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  transition: transform .2s var(--transition), box-shadow .2s;
  animation: fadeUp .8s var(--transition) .3s both;
}
.btn-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,.28);
}

.hero-sub-cta {
  display: block; margin-top: 16px;
  color: rgba(255,255,255,.6); font-size: 13px;
  animation: fadeUp .8s var(--transition) .4s both;
}

/* ── STATS BAR ───────────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 4px; }
.stat-num {
  display: block; font-size: 30px; font-weight: 900;
  color: var(--blue); line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px; color: var(--text-2);
  margin-top: 5px; display: block;
}
.stat-label i { color: var(--blue-light); margin-right: 4px; }

/* ── SECTIONS SHARED ─────────────────────────────────────────────── */
section { padding: 90px 24px; }
.section-bg { background: var(--bg-section); }

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-50); color: var(--blue);
  padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 16px;
  border: 1px solid var(--blue-100);
}
.section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900; color: var(--text);
  line-height: 1.2; margin-bottom: 14px;
  letter-spacing: -.02em;
}
.section-title span { color: var(--blue); }
.section-sub {
  font-size: 17px; color: var(--text-2);
  max-width: 560px; line-height: 1.7;
}

/* ── BENEFITS ───────────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 52px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .3s var(--transition), box-shadow .3s, border-color .2s;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-50) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); border-color: var(--blue-100); }
.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 50px; height: 50px;
  background: var(--blue-50); color: var(--blue);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
  border: 1px solid var(--blue-100);
  position: relative; z-index: 1;
}
.benefit-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; position: relative; z-index: 1; }
.benefit-card p  { font-size: 14px; color: var(--text-2); line-height: 1.65; position: relative; z-index: 1; }

/* ── STEPS ──────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-top: 52px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 32px;
  left: calc(16.6% + 20px); right: calc(16.6% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-100), var(--blue-light), var(--blue-100));
}
.step-card { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(15,76,129,.3);
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover .step-num { transform: scale(1.1); box-shadow: 0 8px 28px rgba(15,76,129,.4); }
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ── CHECK LIST ─────────────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-2); }
.check-list li i { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.check-list li strong { color: var(--text); }

/* ── FREE CREDITS BANNER ────────────────────────────────────────── */
.free-credits-banner {
  background: linear-gradient(135deg, #E8F1FA, #dbeafe);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  text-align: center;
  margin-top: 52px;
  position: relative; overflow: hidden;
}
.free-credits-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,.12), transparent 70%);
  top: -100px; right: -80px;
  border-radius: 50%;
}
.free-credits-banner h3 { font-size: 22px; font-weight: 800; color: var(--blue); margin-bottom: 10px; position: relative; }
.free-credits-banner p  { color: var(--text-2); margin-bottom: 26px; font-size: 15px; position: relative; }
.btn-free {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 14px 32px; border-radius: var(--r);
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  position: relative;
}
.btn-free:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,76,129,.3);
}

/* ── PRICING ────────────────────────────────────────────────────── */
.pricing-wrap { max-width: 500px; margin: 52px auto 0; }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-blue);
  transition: transform .3s var(--transition), box-shadow .3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(15,76,129,.32); }
.pricing-header {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff; text-align: center; padding: 30px 24px 26px;
}
.pricing-header .plan-name { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .75; margin-bottom: 14px; }
.pricing-price { display: flex; align-items: flex-end; justify-content: center; gap: 2px; line-height: 1; }
.price-currency { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.price-value    { font-size: 68px; font-weight: 900; letter-spacing: -.04em; }
.price-cents    { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.price-period   { font-size: 13px; opacity: .75; margin-top: 10px; }
.pricing-body   { padding: 32px 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-2); }
.pricing-features li i { color: var(--green); font-size: 16px; flex-shrink: 0; }
.btn-subscribe {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff; padding: 16px; border-radius: var(--r);
  font-weight: 700; font-size: 16px; text-decoration: none;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(15,76,129,.25);
}
.btn-subscribe:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,76,129,.35); }
.guarantee-note {
  text-align: center; margin-top: 14px;
  font-size: 13px; color: var(--text-3);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.guarantee-note i { color: var(--green); }

/* ── CTA FINAL ──────────────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, #0a3259 0%, var(--blue) 50%, var(--blue-mid) 100%);
  padding: 100px 24px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(59,130,246,.2), transparent);
}
.final-cta h2 { font-size: clamp(28px, 4.5vw, 48px); font-weight: 900; margin-bottom: 18px; position: relative; letter-spacing: -.02em; }
.final-cta h2 span { color: #93C5FD; }
.final-cta p  { font-size: 17px; color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 38px; position: relative; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: #0a1628; color: rgba(255,255,255,.5);
  text-align: center; padding: 44px 24px; font-size: 13px;
}
footer img { height: 38px; width: auto; background: rgba(255,255,255,.08); border-radius: 10px; padding: 5px 12px; margin: 0 auto 18px; display: block; }
.footer-links { margin-bottom: 14px; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; }
footer a { color: rgba(255,255,255,.5); text-decoration: none; padding: 0 12px; border-right: 1px solid rgba(255,255,255,.1); }
footer a:last-child { border-right: none; }
footer a:hover { color: #fff; }
footer strong { color: rgba(255,255,255,.8); }

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeDown{ from { opacity:0; transform: translateY(-16px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }

/* Scroll-triggered */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--transition), transform .65s var(--transition);
}
.reveal.visible   { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity:0; transform: translateX(-32px); transition: opacity .65s var(--transition), transform .65s var(--transition); }
.reveal-right { opacity:0; transform: translateX(32px);  transition: opacity .65s var(--transition), transform .65s var(--transition); }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform: translateX(0); }

/* Stagger delays */
.stagger-1 { transition-delay: .05s; }
.stagger-2 { transition-delay: .12s; }
.stagger-3 { transition-delay: .19s; }
.stagger-4 { transition-delay: .26s; }
.stagger-5 { transition-delay: .33s; }
.stagger-6 { transition-delay: .40s; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 10px 16px; }
  .nav-logo img { height: 30px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }

  .hero { padding: 72px 20px 64px; }
  .hero p { font-size: 15px; }
  .btn-hero { padding: 14px 28px; font-size: 15px; width: 100%; max-width: 360px; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num   { font-size: 24px; }

  section { padding: 64px 20px; }

  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }

  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid::before { display: none; }
  .step-card { display: flex; align-items: flex-start; gap: 20px; text-align: left; }
  .step-num  { width: 48px; height: 48px; font-size: 18px; margin: 0; flex-shrink: 0; }

  .section-sub { font-size: 15px; }

  .free-credits-banner { padding: 32px 22px; }

  .pricing-wrap { max-width: 100%; }

  .for-who-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  .final-cta { padding: 72px 20px; }
  .final-cta p { font-size: 15px; }
}

@media (max-width: 480px) {
  .hero-orb { display: none; }
  .stats-grid { gap: 12px; }
  .stat-num   { font-size: 22px; }
  .benefit-card { padding: 22px 18px; }
  .footer-links a { font-size: 12px; }
}

/* ── Plan icon (substitui preço) ────────────────────────────── */
.plan-icon-wrap {
  font-size: 52px; color: rgba(255,255,255,.9);
  margin: 14px 0 10px;
  animation: pulse-icon 2.4s ease-in-out infinite;
}
@keyframes pulse-icon {
  0%,100% { transform: scale(1); opacity:.9; }
  50%      { transform: scale(1.08); opacity:1; }
}

/* ── CTA pulse glow ──────────────────────────────────────────── */
.btn-hero, .btn-subscribe, .btn-free {
  position: relative;
}
.btn-hero::after {
  content: '';
  position: absolute; inset: -3px; border-radius: inherit;
  background: rgba(255,255,255,.35);
  animation: btn-glow 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-glow {
  0%,100% { opacity:0; transform: scale(1); }
  50%      { opacity:1; transform: scale(1.04); }
}

/* ── Shimmer on benefit cards ────────────────────────────────── */
.benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  transition: none;
}
.benefit-card:hover::after {
  animation: shimmer .6s ease forwards;
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 150%; }
}

/* ── Nav link underline slide ────────────────────────────────── */
.nav-cta { overflow: hidden; }
.nav-cta::before {
  content: '';
  position: absolute; bottom: 0; left: -100%; width: 100%; height: 2px;
  background: rgba(255,255,255,.6);
  transition: left .3s;
}
.nav-cta:hover::before { left: 0; }

/* ── Wave no CTA final ───────────────────────────────────────── */
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%230a1628' d='M0,30 C360,60 1080,0 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}


/* ── Section label shimmer ───────────────────────────────────── */
.section-label {
  background-size: 200% 100%;
  animation: label-shine 4s linear infinite;
}
@keyframes label-shine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── Floating dots decoration ────────────────────────────────── */
.dot-pattern {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.dot-pattern span {
  position: absolute; border-radius: 50%;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  animation: dot-float linear infinite;
}
@keyframes dot-float {
  0%   { transform: translateY(0) scale(1); opacity:.6; }
  50%  { transform: translateY(-18px) scale(1.1); opacity:1; }
  100% { transform: translateY(0) scale(1); opacity:.6; }
}

/* ── "Para quem é" section grid ───────────────────────────────── */
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .for-who-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Banner pricing inline ────────────────────────────────────── */
.banner-promo {
  margin-top: 20px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   CRO ADDITIONS
   ══════════════════════════════════════════════════════════ */

/* ── Urgency bar ─────────────────────────────────────────── */
.urgency-bar {
  background: #dc2626; color: #fff;
  text-align: center; padding: 9px 20px;
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; position: sticky; top: 0; z-index: 201;
}
.urgency-bar i { font-size: 12px; }
.urgency-bar strong { font-weight: 800; }
.ub-divider { opacity: .45; }
@media (max-width: 480px) { .ub-divider { display: none; } .urgency-bar { flex-direction: column; gap: 4px; padding: 8px 16px; } }

/* ── Nav links ───────────────────────────────────────────── */
.nav-links {
  display: flex; align-items: center; gap: 24px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  text-decoration: none; transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); }
@media (max-width: 768px) { .nav-links { display: none; } }

/* ── Badge dot in hero ───────────────────────────────────── */
.badge-dot {
  width: 8px; height: 8px; background: #ef4444;
  border-radius: 50%; display: inline-block; flex-shrink: 0;
  animation: dotPulse 1.5s ease infinite;
}
@keyframes dotPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: .7; }
}

/* ── Hero social proof row ───────────────────────────────── */
.hero-social-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin: 30px auto; flex-wrap: wrap;
}
.hsp-item { text-align: center; }
.hsp-stars { color: #fbbf24; font-size: 18px; line-height: 1; margin-bottom: 3px; }
.hsp-num { font-size: 22px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 3px; }
.hsp-text { font-size: 12px; color: rgba(255,255,255,.6); }
.hsp-sep { width: 1px; height: 44px; background: rgba(255,255,255,.18); flex-shrink: 0; }
@media (max-width: 480px) { .hsp-sep { display: none; } .hero-social-proof { gap: 20px; } }

/* ── Hero countdown timer ────────────────────────────────── */
.hero-timer {
  margin-top: 36px;
  display: inline-block;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; padding: 18px 30px;
  backdrop-filter: blur(8px);
}
.ht-label {
  font-size: 11px; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px; justify-content: center;
}
.ht-blocks {
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ht-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.1); border-radius: 12px;
  padding: 10px 18px; min-width: 62px;
}
.ht-block span {
  font-size: 32px; font-weight: 900; color: #fff; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ht-block label {
  font-size: 9px; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .06em; margin-top: 4px;
}
.ht-colon { font-size: 26px; font-weight: 700; color: rgba(255,255,255,.4); margin-bottom: 16px; }
@media (max-width: 480px) {
  .hero-timer { padding: 14px 18px; }
  .ht-block { padding: 8px 12px; min-width: 50px; }
  .ht-block span { font-size: 24px; }
}

/* ── Pain section ────────────────────────────────────────── */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.pain-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 18px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.pain-card:hover { transform: translateY(-3px); border-color: var(--blue-100); box-shadow: var(--shadow-blue); }
.pain-icon { font-size: 26px; flex-shrink: 0; line-height: 1.2; }
.pain-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; font-style: italic; }
.pain-bottom {
  text-align: center; margin-top: 52px;
  padding: 40px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.pain-bottom p { font-size: 18px; color: var(--text); margin-bottom: 22px; }
@media (max-width: 900px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pain-grid { grid-template-columns: 1fr; } }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 52px;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-blue); }
.tc-stars { color: #f59e0b; font-size: 17px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 14px; color: var(--text-2); line-height: 1.75;
  font-style: italic; flex: 1;
  border-left: 3px solid var(--blue-100); padding-left: 14px;
  margin: 0;
}
.tc-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.tc-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0;
}
.tc-name { font-weight: 700; font-size: 14px; color: var(--text); }
.tc-role { font-size: 12px; color: var(--text-2); margin-top: 1px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }

/* ── Pricing 2-column ────────────────────────────────────── */
.pricing-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 900px;
  margin: 52px auto 0;
}
.pricing-option {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s var(--transition), box-shadow .3s;
  display: flex; flex-direction: column;
}
.pricing-option:hover { transform: translateY(-4px); }
.pricing-featured { border-color: var(--blue); box-shadow: var(--shadow-blue); }
.pricing-featured:hover { box-shadow: 0 24px 60px rgba(15,76,129,.32); }
.po-badge-top {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff; text-align: center;
  font-size: 12px; font-weight: 700; padding: 9px 16px;
  letter-spacing: .04em;
}
.po-header {
  padding: 28px 24px 22px; text-align: center;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}
.po-header-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff; border-bottom: none;
}
.po-name {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  opacity: .65; margin-bottom: 12px;
}
.po-original { font-size: 12px; text-decoration: line-through; opacity: .5; margin-bottom: 4px; }
.po-price {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 2px; line-height: 1; margin-bottom: 6px;
}
.po-currency { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.po-value { font-size: 58px; font-weight: 900; letter-spacing: -.03em; }
.po-cents { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.po-period { font-size: 12px; opacity: .65; margin-top: 4px; }
.po-savings {
  display: inline-block; margin-top: 10px;
  background: rgba(255,255,255,.18);
  border-radius: 100px; padding: 4px 16px;
  font-size: 12px; font-weight: 700; color: #fff;
}
.po-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.po-body .pricing-features { margin-bottom: 20px; flex: 1; }
.po-spots {
  font-size: 13px; font-weight: 600; color: #dc2626;
  margin-bottom: 14px; display: flex; align-items: center; gap: 6px;
}
.btn-monthly {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: var(--white);
  border: 2px solid var(--blue); color: var(--blue);
  padding: 14px; border-radius: var(--r);
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  margin-bottom: 0;
}
.btn-monthly:hover {
  background: var(--blue); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,76,129,.25);
}
@media (max-width: 700px) { .pricing-cards { grid-template-columns: 1fr; } }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  max-width: 780px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item.open { box-shadow: var(--shadow-blue); border-color: var(--blue-100); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none;
  font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer; text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  font-size: 12px; color: var(--text-3); flex-shrink: 0;
  transition: transform .3s var(--transition), color .2s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--blue); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .38s ease;
}
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer p {
  padding: 0 22px 20px; margin: 0;
  font-size: 14px; color: var(--text-2); line-height: 1.75;
  border-top: 1px solid var(--border); padding-top: 14px;
}

/* ── Final CTA timer ─────────────────────────────────────── */
.fc-timer {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px; padding: 8px 20px;
  font-size: 13px; color: rgba(255,255,255,.75);
  margin-bottom: 28px; flex-wrap: wrap; justify-content: center;
}
.fc-blocks { display: flex; align-items: center; gap: 6px; }
.fc-b { font-weight: 700; color: #fff; }
.fc-b strong { font-size: 16px; }
.fc-sep { opacity: .5; }

/* ── Floating CTA mobile ─────────────────────────────────── */
.floating-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  padding: 14px 20px 18px;
  background: var(--blue);
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.floating-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff; text-decoration: none;
  font-weight: 700; font-size: 15px;
}
@media (max-width: 640px) {
  .floating-cta { display: block; }
  body { padding-bottom: 64px; }
}
