/* ═══════════════════════════════════════
   ClinicAI 24h — style.css
   Design System: Dark mode, glassmorphism,
   gradients azul-roxo, Outfit + Inter
═══════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #060914;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TOKENS ── */
:root {
  --bg:        #060914;
  --bg2:       #0d1224;
  --bg3:       #121830;
  --blue:      #4f8ef7;
  --purple:    #7c3aed;
  --cyan:      #06b6d4;
  --green:     #22c55e;
  --text:      #e2e8f0;
  --muted:     #94a3b8;
  --border:    rgba(255,255,255,0.08);
  --glass:     rgba(255,255,255,0.04);
  --glass2:    rgba(255,255,255,0.07);
  --grad:      linear-gradient(135deg, #4f8ef7, #7c3aed);
  --grad2:     linear-gradient(135deg, #06b6d4, #4f8ef7);
  --shadow:    0 20px 60px rgba(0,0,0,0.4);
  --radius:    16px;
  --radius-sm: 10px;
  --container: 1200px;
  --transition: 0.3s ease;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2d3748; border-radius: 3px; }

/* ── UTILITIES ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.section { padding: 100px 0; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79,142,247,0.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(79,142,247,0.5); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--xl { padding: 18px 36px; font-size: 17px; }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}
.badge--green { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.badge--blue  { background: rgba(79,142,247,0.12); border: 1px solid rgba(79,142,247,0.3); color: #93c5fd; }
.badge--purple{ background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.3); color: #c4b5fd; }

/* ── SECTION HEADER ── */
.section__head { text-align: center; margin-bottom: 64px; }
.section__label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
}
.section__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.section__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition), border-bottom var(--transition);
}
.header.scrolled {
  background: rgba(6,9,20,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
}
.logo__icon {
  width: 40px; height: 40px;
  background: var(--grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.logo__accent { color: var(--blue); }
.logo__tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  background: rgba(79,142,247,0.15);
  color: var(--blue);
  margin-left: 4px;
  vertical-align: middle;
}
.nav__links { display: flex; gap: 8px; margin-left: auto; }
.nav__link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--text); background: var(--glass); }
.nav__cta { margin-left: auto; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: rgba(6,9,20,0.98);
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.nav__mobile a { padding: 10px 0; color: var(--muted); transition: color var(--transition); }
.nav__mobile a:hover { color: var(--text); }
.nav__mobile.hidden { display: none; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.orb--1 { width: 600px; height: 600px; background: rgba(79,142,247,0.12); top: -200px; right: -200px; }
.orb--2 { width: 500px; height: 500px; background: rgba(124,58,237,0.1); bottom: -150px; left: -150px; animation-delay: -4s; }
.orb--3 { width: 300px; height: 300px; background: rgba(6,182,212,0.08); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero__badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__sub strong { color: var(--text); }
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 32px 40px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  max-width: 900px;
  margin: 0 auto;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 32px;
}
.hstat strong {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.hstat span { font-size: 13px; color: var(--muted); max-width: 140px; line-height: 1.4; }
.hstat__div { width: 1px; height: 60px; background: var(--border); }

.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); }
.scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}
.scroll-dot::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: 6px; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* ══════════════════════════════════════
   PROBLEM
══════════════════════════════════════ */
.problem { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.problem__card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.problem__card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.15); }
.picon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(from var(--c) r g b / 0.12);
  background-color: color-mix(in srgb, var(--c) 15%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
}
.problem__card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.problem__card p { color: var(--muted); line-height: 1.7; font-size: 15px; }
.problem__card strong { color: var(--text); }

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features { background: var(--bg); position: relative; }
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79,142,247,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.feat__card {
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.feat__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad);
  opacity: 0;
  transition: opacity var(--transition);
}
.feat__card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); border-color: rgba(79,142,247,0.2); }
.feat__card:hover::before { opacity: 1; }
.feat__icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.feat__card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.feat__card p { color: var(--muted); line-height: 1.7; font-size: 15px; }

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.howto { background: linear-gradient(180deg, var(--bg2) 0%, var(--bg3) 100%); }
.howto__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}
.howto__step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step__num {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  min-width: 56px;
}
.step__body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.step__body p { color: var(--muted); line-height: 1.7; }
.step__line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--blue), var(--purple));
  margin-left: 68px;
  opacity: 0.4;
}

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats-sec {
  background: var(--bg);
  padding: 80px 0;
  position: relative;
}
.stats-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.stats__card {
  padding: 40px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition);
}
.stats__card:hover { transform: translateY(-4px); }
.stats__num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.stats__lbl { color: var(--muted); font-size: 14px; line-height: 1.4; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { background: var(--bg2); }
.test__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.test__card {
  padding: 36px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition);
}
.test__card:hover { transform: translateY(-6px); }
.test__stars { font-size: 18px; }
.test__card blockquote {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.test__card footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.test__av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.test__card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  font-size: 15px;
}
.test__card footer > div span {
  font-size: 13px;
  color: var(--muted);
  display: block;
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing {
  background: var(--bg);
  position: relative;
}
.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(79,142,247,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.price__card {
  padding: 40px 32px;
  border-radius: var(--radius);
  position: relative;
  transition: transform var(--transition);
}
.price__card:hover { transform: translateY(-8px); }
.price__featured {
  border-color: rgba(79,142,247,0.4);
  background: rgba(79,142,247,0.06);
  transform: scale(1.02);
}
.price__featured:hover { transform: scale(1.02) translateY(-8px); }
.price__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--grad);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  margin-bottom: 20px;
}
.price__head h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.price__head p { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.price__val {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 32px;
}
.p__cur { font-size: 20px; color: var(--muted); font-weight: 600; padding-bottom: 8px; }
.p__amt {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.p__per { font-size: 16px; color: var(--muted); padding-bottom: 10px; }

/* ROI block (replaces price__val) */
.price__roi {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 32px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: rgba(79,142,247,0.06);
  border: 1px solid rgba(79,142,247,0.2);
  position: relative;
  overflow: hidden;
}
.price__roi::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}
.roi__hook {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.roi__val {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
}
.roi__sub {
  font-size: 13px;
  color: var(--muted);
}
.price__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price__list li { color: var(--muted); font-size: 15px; }
.price__list li::first-letter { color: var(--green); }
.price__guarantee {
  text-align: center;
  margin-top: 48px;
  color: var(--muted);
  font-size: 15px;
  padding: 20px 32px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.price__guarantee strong { color: var(--text); }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq { background: var(--bg2); }
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item:hover { border-color: rgba(79,142,247,0.25); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq__q:hover, .faq__q[aria-expanded="true"] { color: var(--blue); }
.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: rgba(79,142,247,0.15);
  border-color: rgba(79,142,247,0.4);
}
.faq__a {
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.faq__a[hidden] { display: none; }

/* ══════════════════════════════════════
   FINAL CTA
══════════════════════════════════════ */
.cta-final {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}
.cta-final__orb {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,142,247,0.15) 0%, rgba(124,58,237,0.1) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}
.cta-final__inner { position: relative; z-index: 2; }
.cta-final__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}
.cta-final__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-final__note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer__top {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  padding-bottom: 64px;
}
.footer__brand {
  flex: 1;
  min-width: 280px;
}
/* ==========================================================================
   SOLUTION SECTION (SINGLE OFFER)
   ========================================================================== */
.solution__featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 60px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.solution__featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79,142,247,0.15) 0%, transparent 70%);
  z-index: -1;
}

.sol__title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.sol__desc {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.sol__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .sol__list { grid-template-columns: 1fr; }
}

.sol__list li {
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sol__list li::marker { content: none; }

.sol__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sol__note {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sol__note::before {
  content: '🔴';
  font-size: 8px;
}

/* Visual Side */
.sol__visual {
  background: rgba(0,0,0,0.2);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border);
}

.sol__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--grad);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.sol__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.sol__stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sol__stat-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
}

.sol__stat-item span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

@media (max-width: 992px) {
  .solution__featured {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  .sol__visual { margin-top: 20px; }
}
.footer__brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 320px;
}
.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}
.footer__wa:hover { background: rgba(34,197,94,0.18); border-color: rgba(34,197,94,0.5); }
.footer__nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer__col a { color: var(--muted); font-size: 14px; transition: color var(--transition); }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { color: var(--muted); font-size: 13px; }
.footer__bottom a { color: var(--blue); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--text); }

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #25D366;
  border-radius: 50px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__stats { padding: 24px 16px; gap: 0; }
  .hstat { padding: 16px 12px; width: 50%; }
  .hstat__div:nth-child(4) { display: none; }
  .howto__step { flex-direction: column; gap: 16px; }
  .step__line { margin-left: 36px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .price__featured { transform: none; }
  .price__featured:hover { transform: translateY(-8px); }
  .footer__top { flex-direction: column; gap: 40px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .wa-float span { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .features__grid { grid-template-columns: 1fr; }
  .test__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 36px; }
  .btn--xl { padding: 16px 24px; font-size: 15px; }
  .hstat { width: 100%; }
  .hstat__div { display: none; }
}
