/* ===== 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: #0a0b0f;
  color: #e8eaf0;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== VARIABLES ===== */
:root {
  --accent: #4f9cf9;
  --accent-light: #7ab8ff;
  --green: #22c55e;
  --gold: #f59e0b;
  --surface: #13151d;
  --surface-2: #1c1f2b;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-muted: #8892a4;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(79, 156, 249, 0.15);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

p {
  color: #b0b8c8;
}

strong {
  color: #e8eaf0;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 90px 0;
}

.section-light {
  background: #0e1018;
}

.section-dark {
  background: #090b10;
}

/* ===== LABELS & TITLES ===== */
.section-label {
  display: inline-block;
  background: rgba(79, 156, 249, 0.12);
  border: 1px solid rgba(79, 156, 249, 0.25);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.section-title {
  color: #f0f2f8;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: normal;
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.btn-secondary {
  background: var(--glass);
  color: #e8eaf0;
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.15rem;
}

.btn-nav {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.pulse-btn {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.05);
  }
}

.cta-center {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #f0f2f8;
  text-decoration: none;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-icon {
  font-size: 1.3rem;
}

.accent {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-nav-login {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b0b8c8;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  transition: all 0.2s;
}

.btn-nav-login:hover {
  color: #f0f2f8;
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--glass);
}

.btn-nav-signup {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #4f9cf9, #3a7bd5);
  border: none;
  border-radius: 50px;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(79, 156, 249, 0.3);
}

.btn-nav-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(79, 156, 249, 0.5);
}

.btn-nav-wa {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 50px;
}

@media (max-width: 640px) {
  .btn-nav-login {
    display: none;
  }

  .btn-nav-wa {
    display: none;
  }

  .btn-nav-signup {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: #07090e;
  padding: 100px 0 80px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 156, 249, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.badge-pill {
  display: inline-block;
  background: linear-gradient(135deg, rgba(79, 156, 249, 0.2), rgba(37, 211, 102, 0.1));
  border: 1px solid rgba(79, 156, 249, 0.3);
  color: var(--accent-light);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease;
}

.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: #f8faff;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.gradient-text {
  background: linear-gradient(135deg, #4f9cf9 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: #8892a4;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-muted);
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--surface-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4f9cf9, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS MINI ===== */
.testimonials-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--surface-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.3s;
}

.testi-card:hover {
  transform: translateY(-3px);
}

.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.testi-text {
  font-size: 0.93rem;
  color: #b0b8c8;
  margin-bottom: 1.2rem;
  font-style: italic;
  line-height: 1.6;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  font-size: 1.8rem;
}

.testi-author strong {
  display: block;
  color: #f0f2f8;
  font-size: 0.95rem;
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== QUIZ ===== */
.quiz-section {
  background: linear-gradient(135deg, #0d1528 0%, #091219 100%);
  border-top: 1px solid rgba(79, 156, 249, 0.15);
  border-bottom: 1px solid rgba(79, 156, 249, 0.15);
  text-align: center;
}

.quiz-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid rgba(79, 156, 249, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.quiz-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #4f9cf9, #22c55e);
  transition: width 0.4s ease;
}

.quiz-step {
  padding: 2.5rem 2rem;
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.quiz-question {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #f0f2f8;
  margin-bottom: 1.5rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quiz-opt {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: #e8eaf0;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}

.quiz-opt:hover {
  background: rgba(79, 156, 249, 0.12);
  border-color: rgba(79, 156, 249, 0.4);
  transform: translateX(4px);
}

.quiz-result {
  padding: 2.5rem 2rem;
  display: none;
}

.quiz-result:not(.hidden) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.4s ease;
}

.result-score-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.result-score-num {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4f9cf9, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-score-label {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.result-message {
  font-size: 1.05rem;
  color: #b0b8c8;
  text-align: center;
  line-height: 1.7;
}

.hidden {
  display: none !important;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.pain-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.06), rgba(239, 68, 68, 0.02));
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform 0.3s;
}

.pain-card:hover {
  transform: translateY(-3px);
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.pain-card h3 {
  color: #f87171;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.pain-card p {
  font-size: 0.9rem;
}

.agitation-block {
  max-width: 700px;
  margin: 0 auto 1rem;
  background: rgba(239, 68, 68, 0.05);
  border-left: 3px solid #ef4444;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 2rem;
  text-align: left;
}

.agitation-block p {
  color: #b0b8c8;
  margin-bottom: 0.5rem;
}

.agitation-block p:last-child {
  margin-bottom: 0;
}

/* ===== MECHANISM ===== */
.mechanism-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mech-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mech-step:hover {
  transform: translateX(6px);
  box-shadow: -4px 0 20px rgba(79, 156, 249, 0.15);
}

.mech-letter {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4f9cf9, #22c55e);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}

.mech-content h3 {
  color: #f0f2f8;
  margin-bottom: 0.4rem;
}

.mech-content p {
  font-size: 0.93rem;
}

/* ===== PRICING ===== */
.pricing {
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.price-card {
  background: var(--surface-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  text-align: left;
  position: relative;
  transition: transform 0.3s;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card-featured {
  border-color: rgba(79, 156, 249, 0.4);
  background: linear-gradient(135deg, rgba(79, 156, 249, 0.08), rgba(34, 197, 94, 0.04));
  box-shadow: 0 0 40px rgba(79, 156, 249, 0.12);
}

.best-seller-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tier {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.price-anchor {
  margin-bottom: 0.2rem;
}

.striked {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.price-main {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #f0f2f8;
  margin-bottom: 0.4rem;
}

.price-currency {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-ideal {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 0.8rem;
}

.price-features {
  margin-bottom: 1.5rem;
}

.price-features li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: #b0b8c8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-bonus {
  font-size: 0.82rem;
  color: var(--gold);
  background: rgba(245, 158, 11, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

.guarantee-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.03));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.guarantee-text h3 {
  color: #4ade80;
  margin-bottom: 0.5rem;
}

.guarantee-text p {
  font-size: 0.93rem;
}

/* ===== TESTIMONIALS FULL ===== */
.testi-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testi-card-full {
  background: var(--surface-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--accent);
  transition: transform 0.3s;
}

.testi-card-full:hover {
  transform: translateY(-4px);
}

.testi-card-full .testi-stars {
  margin-bottom: 1rem;
}

.testi-card-full p {
  font-style: italic;
  font-size: 0.93rem;
  color: #b0b8c8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testi-card-full .testi-author {
  display: flex;
  gap: 10px;
  align-items: center;
}

.testi-card-full .testi-avatar {
  font-size: 1.8rem;
}

.testi-card-full strong {
  display: block;
  color: #f0f2f8;
}

.testi-card-full span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
  text-align: center;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--surface-2);
  border: none;
  color: #e8eaf0;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-arrow {
  color: var(--accent);
  font-size: 0.8rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-question.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: rgba(255, 255, 255, 0.02);
}

.faq-answer.open {
  max-height: 400px;
  padding: 1.2rem 1.5rem;
}

.faq-answer p {
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #060d1f 0%, #030709 100%);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(37, 211, 102, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.urgency-banner {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  color: #fca5a5;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  display: inline-block;
  animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {

  0%,
  100% {
    border-color: rgba(239, 68, 68, 0.3);
  }

  50% {
    border-color: rgba(239, 68, 68, 0.7);
  }
}

.final-bonus-block {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.final-bonus-block h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.final-bonus-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.final-bonus-block li {
  color: #d1c4a4;
  font-size: 0.93rem;
}

.bonus-total {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.final-ctas {
  margin-bottom: 2rem;
}

.final-note {
  margin-top: 1rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: #05060a;
  border-top: 1px solid var(--glass-border);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--accent);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: slideInRight 0.6s ease 0.5s both;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
}

@keyframes slideInRight {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-trust span:nth-child(even) {
    display: none;
  }

  .mech-step {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .mech-letter {
    margin-bottom: 0.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .price-card {
    padding: 1.5rem 1.2rem;
  }

  .price-card-hero {
    transform: none;
    box-shadow: 0 0 40px rgba(79, 156, 249, 0.15);
  }

  .price-card-hero:hover {
    transform: translateY(-4px);
  }

  .guarantee-block {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 16px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }

  .final-cta {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  h1, .hero-headline {
    font-size: 2rem;
  }

  h2, .section-title {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .price-main {
    font-size: 2rem;
  }

  .quiz-wrapper {
    border-radius: 14px;
  }

  .quiz-step {
    padding: 1.5rem 1.2rem;
  }

  .stat-num {
    font-size: 2.2rem;
  }

  .pain-card {
    padding: 1.5rem 1.2rem;
  }
}

/* ===== NEW PRICING HIERARCHY ===== */
.price-hero {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.price-card-hero {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(79, 156, 249, 0.25);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.price-card-hero:hover {
  transform: scale(1.08) translateY(-5px);
}

.pricing-label-sm {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.pricing-label-sm::before,
.pricing-label-sm::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 100px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
}

.pricing-label-sm::after {
  background: linear-gradient(270deg, transparent, rgba(255, 255, 255, 0.1));
}