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

:root {
  --primary: #1B1464;
  --primary-mid: #2D31A6;
  --primary-light: #4F46E5;
  --accent: #f0a500;
  --accent-light: #ffd98a;
  --electric: #7C3AED;
  --cyan: #22D3EE;
  --orange: #F59E0B;
  --bg-light: #F0F4FF;
  --bg-white: #FFFFFF;
  --bg-dark: #0F0E2A;
  --text-dark: #1A1A2E;
  --text-muted: #64748B;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 14, 42, 0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: 'Roboto', sans-serif;
  font-weight: 900; font-size: 1.35rem;
  color: var(--bg-white); letter-spacing: -0.5px;
}
.nav-logo span { color: var(--accent); }
.nav-cta {
  background: #f0a500;
  color: #0a0a0a; font-weight: 700; font-size: 0.9rem;
  padding: 0.55rem 1.4rem; border-radius: 50px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 18px rgba(240,165,0,0.18);
}
.nav-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(240,165,0,0.26); }

/* HERO */
.hero {
  background: var(--bg-dark);
  padding: 5rem 5% 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 35%, rgba(79,70,229,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(6,214,160,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-container {
  display: flex; align-items: center; gap: 3rem;
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
}
.hero-inner { flex: 1; min-width: 0; }
.hero-visual {
  flex: 1; min-width: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual img {
  max-width: 100%; height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 20px 60px rgba(79,70,229,0.3));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(79,70,229,0.2); border: 1px solid rgba(79,70,229,0.4);
  color: var(--accent-light); font-size: 0.82rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 50px;
  margin-bottom: 1.8rem; letter-spacing: 0.5px;
}
.hero-badge::before { content: '●'; font-size: 0.6rem; color: var(--accent); }
.hero h1 {
  font-family: 'Roboto', sans-serif; font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 1.4rem;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  max-width: 480px; margin-bottom: 2.2rem; line-height: 1.7;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: #f0a500; color: #0a0a0a; font-family: 'Roboto', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  padding: 1rem 2rem; border-radius: 50px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 8px 28px rgba(240,165,0,0.2);
  transition: transform 0.18s, box-shadow 0.18s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(240,165,0,0.3); }
.btn-primary .arrow { font-size: 1.2rem; }
.btn-ghost {
  color: rgba(255,255,255,0.75); font-size: 0.95rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }
.hero-trust {
  margin-top: 2.5rem; display: flex; align-items: center; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: #fff;
  margin-left: -10px;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-avatars span:nth-child(1) { background: #E05252; }
.trust-avatars span:nth-child(2) { background: var(--primary-light); }
.trust-avatars span:nth-child(3) { background: var(--electric); }
.trust-avatars span:nth-child(4) { background: var(--accent); }
.trust-text { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.4; }
.trust-text strong { color: #fff; }

/* MARQUEE */
.proof-bar {
  background: linear-gradient(90deg, var(--primary-light), var(--electric));
  padding: 0.9rem 0; overflow: hidden; white-space: nowrap;
}
.proof-bar-inner {
  display: inline-flex; gap: 3rem;
  animation: marquee 22s linear infinite;
}
.proof-bar-inner span {
  font-size: 0.88rem; font-weight: 600; color: #fff;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SECTION COMMON */
section { padding: 5rem 5%; }
.section-label {
  display: inline-block;
  background: rgba(79,70,229,0.1); color: var(--primary-light);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
h2 {
  font-family: 'Roboto', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text-dark); line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 1rem;
}
h2 em { font-style: italic; color: var(--primary-light); }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; }

/* PROBLEM */
.problem { background: var(--bg-white); }
.problem-inner { max-width: 900px; margin: 0 auto; }
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.problem-card {
  background: var(--bg-light); border-radius: var(--radius);
  padding: 1.6rem; border: 1px solid rgba(79,70,229,0.08);
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(79,70,229,0.1); }
.problem-card::before {
  content: attr(data-num);
  position: absolute; top: -0.8rem; right: 0.8rem;
  font-family: 'Roboto', sans-serif; font-size: 6rem; font-weight: 900;
  color: rgba(79,70,229,0.06); line-height: 1; pointer-events: none;
}
.problem-card h3 { font-size: 1rem; font-weight: 700; color: #DC2626; margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* HOW IT WORKS */
.how { background: var(--bg-light); }
.how-inner { max-width: 900px; margin: 0 auto; }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; margin-top: 3rem; position: relative;
}
.step { padding: 2rem 1.5rem; text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: '→'; position: absolute; right: -0.5rem; top: 50%;
  transform: translateY(-60%); font-size: 1.5rem; color: var(--primary-light); opacity: 0.5;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-dark); color: var(--accent);
  font-family: 'Roboto', sans-serif; font-weight: 900; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; box-shadow: 0 4px 16px rgba(15,14,42,0.25);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--text-muted); }
.step-highlight { background: var(--bg-dark); border-radius: var(--radius); }
.step-highlight .step-num { background: linear-gradient(135deg, var(--primary-light), var(--electric)); color: #fff; }
.step-highlight h3 { color: #fff; }
.step-highlight p { color: rgba(255,255,255,0.6); }

/* PRICING */
.pricing { background: var(--bg-white); }
.pricing-inner { max-width: 1000px; margin: 0 auto; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem; margin-top: 3rem; align-items: start;
}
.plan {
  border-radius: var(--radius); padding: 2rem 1.5rem;
  border: 1.5px solid rgba(79,70,229,0.1); background: var(--bg-light);
  position: relative; transition: transform 0.25s, box-shadow 0.25s;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(79,70,229,0.12); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-light), var(--electric));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 50px; white-space: nowrap;
}
.plan.featured {
  border-color: var(--primary-light); background: var(--bg-white);
  box-shadow: 0 8px 32px rgba(79,70,229,0.15);
}
.plan-name { font-weight: 700; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.plan-price {
  font-family: 'Roboto', sans-serif; font-weight: 900;
  font-size: 2.2rem; color: var(--text-dark); line-height: 1; margin-bottom: 0.3rem;
}
.plan-price sub { font-size: 1rem; font-weight: 400; font-family: 'Roboto', sans-serif; color: var(--text-muted); }
.plan-price .free-tag { color: var(--primary-light); font-size: 1.4rem; }
.plan-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.4rem; }
.plan-features { list-style: none; margin: 1.4rem 0 1.8rem; }
.plan-features li {
  font-size: 0.88rem; color: var(--text-dark); padding: 0.4rem 0;
  display: flex; align-items: flex-start; gap: 0.5rem;
  border-bottom: 1px solid rgba(79,70,229,0.06);
}
.plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.btn-plan {
  width: 100%; padding: 0.8rem 1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  text-align: center; text-decoration: none; display: block; transition: all 0.2s;
}
.btn-plan-ghost { background: transparent; border: 1.5px solid var(--primary-light); color: var(--primary-light); }
.btn-plan-ghost:hover { background: var(--primary-light); color: #fff; }
.btn-plan-solid {
  background: linear-gradient(135deg, var(--primary-light), var(--electric));
  border: 1.5px solid transparent; color: #fff;
  box-shadow: 0 4px 16px rgba(79,70,229,0.3);
}
.btn-plan-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,0.45); }

/* TESTIMONIALS */
.testimonials { background: var(--bg-dark); }
.testimonials .section-label { background: rgba(255,255,255,0.08); color: var(--accent-light); }
.testimonials h2 { color: #fff; }
.testimonials h2 em { color: var(--accent); }
.testimonials .section-sub { color: rgba(255,255,255,0.55); }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 1.8rem; transition: all 0.25s;
}
.testi-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.testi-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 1rem; }
.testi-text {
  font-size: 0.98rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 1.5rem; font-style: italic;
}
.testi-text::before { content: '"'; }
.testi-text::after { content: '"'; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.9rem; color: #fff; }
.testi-role { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* FAQ */
.faq { background: var(--bg-light); }
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-list { margin-top: 3rem; }
.faq-item { border-bottom: 1px solid rgba(79,70,229,0.1); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.3rem 0;
  font-family: 'Roboto', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--text-dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .icon { font-size: 1.2rem; color: var(--primary-light); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.7;
}
.faq-a-inner { padding-bottom: 1.2rem; }
.faq-item.open .faq-a { max-height: 200px; }

/* FINAL CTA */
.final-cta {
  background: var(--bg-dark); text-align: center;
  padding: 7rem 5%; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.final-cta .section-label { background: rgba(79,70,229,0.2); color: var(--accent-light); }
.final-cta h2 {
  font-family: 'Roboto', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff; letter-spacing: -1.5px;
  line-height: 1.15; margin: 1rem auto 1.2rem; max-width: 700px;
}
.final-cta h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.final-cta p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 2.4rem; }
.final-cta-note { margin-top: 1.4rem; font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.final-cta-note span { color: rgba(255,255,255,0.55); }
.slot-counter {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 0.5rem 1.2rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem;
}
.slot-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* PORTFOLIO */
.portfolio { background: var(--bg-white); }
.portfolio-inner { max-width: 1100px; margin: 0 auto; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2rem;
}
.portfolio-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(79,70,229,0.06);
  box-shadow: 0 8px 28px rgba(15,14,42,0.06);
}
.portfolio-card img { width: 100%; height: auto; display: block; }
.portfolio-meta { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1rem; gap: 0.8rem; }
.portfolio-title { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.btn-link {
  display: inline-block; padding: 0.45rem 0.9rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-light), var(--electric)); color: #fff; text-decoration: none; font-weight: 700; font-size: 0.9rem;
}
.btn-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,0.18); }

/* FOOTER (centered variant) */
.site-footer { background: #0A0F1A; color: #E6EEF8; padding: 4rem 5%; border-top: 1px solid rgba(255,255,255,0.03); }
.centered-footer { text-align: center; }
.footer-top { max-width: 760px; margin: 0 auto 1.2rem; }
.footer-icon {
  width: 56px; height: 56px; border-radius: 10px; margin: 0 auto 0.8rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(79,70,229,0.14), rgba(6,214,160,0.06));
  font-size: 1.25rem;
}
.footer-brand { font-family: 'Roboto', sans-serif; font-weight: 900; color: #fff; margin: 0.45rem 0 0.35rem; font-size: 1.15rem; }
.footer-brand span { color: var(--accent); }
.footer-desc { color: rgba(230,238,248,0.8); font-size: 0.98rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-social-icons { display: flex; gap: 0.6rem; justify-content: center; margin-top: 0.6rem; }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); color: #fff; font-size: 1.05rem; text-decoration: none;
  transition: transform 0.18s, background 0.18s;
}
.social-btn:hover { transform: translateY(-4px); background: linear-gradient(135deg, var(--primary-light), var(--electric)); }
.footer-bottom { margin-top: 1.6rem; color: rgba(230,238,248,0.45); font-size: 0.9rem; }
.footer-contact { margin-top: 0.7rem; color: rgba(230,238,248,0.85); font-weight: 700; }
.footer-contact a { color: rgba(230,238,248,0.95); text-decoration: none; margin-left: 0.4rem; }
.footer-contact a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-inner { padding: 0 1rem; }
  .footer-desc { font-size: 0.95rem; }
}

/* STATS ROW */
.stats-row {
  background: var(--bg-white); padding: 3rem 5%;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Roboto', sans-serif; font-weight: 900;
  font-size: 2.4rem; color: var(--primary-light); line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.3rem; }

/* SOCIAL PROOF POPUP */
.social-proof {
  position: fixed; bottom: 24px; left: 24px; z-index: 95;
  background: #fff; border-radius: 14px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 0 0 1px rgba(79,70,229,0.08);
  display: flex; align-items: center; gap: 12px;
  max-width: 340px;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.social-proof.show { transform: translateX(0); }
.social-proof-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--electric));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.social-proof-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }
.social-proof-text strong { color: var(--text-dark); font-weight: 600; }
.social-proof-time { font-size: 0.72rem; color: #94A3B8; margin-top: 2px; }
.social-proof-close {
  position: absolute; top: 6px; right: 10px;
  background: none; border: none; color: #CBD5E1;
  font-size: 1rem; cursor: pointer; line-height: 1;
}

/* STICKY MOBILE CTA */
.sticky-mobile {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; padding: 1rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1); z-index: 90;
}
.sticky-mobile a {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--primary-light), var(--electric));
  color: #fff; font-weight: 700; font-size: 1rem;
  padding: 0.9rem; border-radius: 50px;
  text-decoration: none; box-shadow: 0 4px 16px rgba(79,70,229,0.35);
}

/* BOOKING SECTION */
.booking-section {
  background: var(--bg-dark); padding: 5rem 5%;
  text-align: center; position: relative; overflow: hidden;
}
.booking-section::before {
  content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.booking-wrapper { max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }
.booking-header { margin-bottom: 2rem; }
.booking-card {
  background: var(--bg-white); border-radius: 20px;
  padding: 2.5rem 2rem; text-align: center;
  box-shadow: 0 16px 60px rgba(0,0,0,0.2);
  border: 1px solid rgba(79,70,229,0.1);
}
.promo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary-light), var(--electric));
  color: #fff; font-size: 0.78rem; font-weight: 700;
  padding: 0.4rem 1.2rem; border-radius: 50px;
  letter-spacing: 0.5px; margin-bottom: 1.5rem;
}
.booking-pricing { margin-bottom: 1.5rem; }
.price-old {
  font-size: 0.95rem; color: var(--text-muted);
  text-decoration: line-through; margin-bottom: 0.3rem;
}
.price-current {
  font-family: 'Roboto', sans-serif; font-weight: 900;
  font-size: 3rem; color: var(--text-dark); line-height: 1;
}
.price-current span { color: var(--primary-light); }
.price-label {
  font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; font-weight: 500;
}
.booking-benefits {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem; text-align: left;
  margin-bottom: 1.5rem; padding: 1.2rem;
  background: var(--bg-light); border-radius: var(--radius-sm);
}
.benefit-item {
  font-size: 0.82rem; font-weight: 500; color: var(--text-dark);
  display: flex; align-items: center; gap: 0.3rem;
}
.booking-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem 0 0.8rem;
}
.divider-line { flex: 1; height: 1px; background: rgba(79,70,229,0.12); }
.divider-text {
  font-size: 0.85rem; font-weight: 700; color: var(--primary-light);
  white-space: nowrap;
}
.booking-scarcity {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.booking-scarcity strong { color: #DC2626; }

/* FORM */
.booking-form { text-align: left; }
.form-row { margin-bottom: 0.8rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-group { margin-bottom: 0.8rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.3rem;
}
.form-group input {
  width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(79,70,229,0.15); background: var(--bg-light);
  font-family: 'Roboto', sans-serif; font-size: 0.9rem;
  color: var(--text-dark); transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus { border-color: var(--primary-light); }
.form-group input::placeholder { color: #B0B8C8; }
.btn-booking {
  width: 100%; padding: 1rem; border: none; border-radius: 50px;
  background: linear-gradient(135deg, #F59E0B, #F97316);
  color: #fff; font-family: 'Roboto', sans-serif;
  font-weight: 800; font-size: 1.05rem; cursor: pointer;
  letter-spacing: 0.5px; margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
  transition: all 0.25s;
}
.btn-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.55);
}
.booking-guarantee {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 1rem;
  font-size: 0.78rem; color: var(--text-muted);
}

/* COUNTDOWN */
.booking-urgency {
  margin-top: 2rem; color: rgba(255,255,255,0.7);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1px;
}
.countdown {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 0.8rem;
}
.cd-box {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); padding: 0.6rem 1rem;
  text-align: center; min-width: 60px;
}
.cd-box span {
  display: block; font-family: 'Roboto', sans-serif; font-weight: 900;
  font-size: 1.6rem; color: #fff; line-height: 1;
}
.cd-box small { font-size: 0.65rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.cd-sep { font-size: 1.4rem; color: rgba(255,255,255,0.3); font-weight: 700; }

/* PAYMENT MODAL */
.payment-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.payment-modal-overlay.show { opacity: 1; visibility: visible; }
.payment-modal {
  background: #fff; border-radius: 20px;
  padding: 2.5rem 2rem; max-width: 440px; width: 100%;
  position: relative; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  max-height: 90vh; overflow-y: auto;
}
.payment-modal-overlay.show .payment-modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none;
  font-size: 1.6rem; color: var(--text-muted); cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text-dark); }
.modal-header { margin-bottom: 1rem; }
.modal-check { font-size: 2.5rem; margin-bottom: 0.5rem; }
.modal-header h3 {
  font-family: 'Roboto', sans-serif; font-weight: 900;
  font-size: 1.4rem; color: var(--text-dark); margin-bottom: 0.3rem;
}
.modal-header p { font-size: 0.9rem; color: var(--text-muted); }
.modal-amount {
  font-family: 'Roboto', sans-serif; font-weight: 900;
  font-size: 2.4rem; color: var(--primary-light);
  margin-bottom: 1.2rem;
}
.modal-qr { margin-bottom: 1.2rem; }
.qr-image {
  max-width: 220px; width: 100%; height: auto;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(79,70,229,0.1);
}
.modal-info {
  background: var(--bg-light); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; margin-bottom: 1rem;
  text-align: left; font-size: 0.88rem;
}
.modal-info p { margin-bottom: 0.3rem; color: var(--text-muted); }
.modal-info strong { color: var(--text-dark); }
.modal-steps {
  text-align: left; margin-bottom: 1.2rem;
  font-size: 0.88rem; color: var(--text-muted);
}
.modal-steps ol {
  margin-top: 0.4rem; padding-left: 1.2rem;
}
.modal-steps li { margin-bottom: 0.3rem; }
.btn-modal-wa {
  display: block; width: 100%; padding: 0.9rem;
  border-radius: 50px; text-decoration: none;
  background: #25D366; color: #fff;
  font-weight: 700; font-size: 1rem; text-align: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: all 0.2s;
}
.btn-modal-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

@media (max-width: 768px) {
  .hero-container { flex-direction: column; gap: 2rem; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 80%; }
  .sticky-mobile { display: block; }
  .step:not(:last-child)::after { display: none; }
  .steps { gap: 1rem; }
  nav { padding: 0.8rem 1rem; }
  .social-proof { max-width: 280px; bottom: 80px; left: 12px; }
  .booking-card { padding: 1.8rem 1.2rem; }
  .booking-benefits { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .payment-modal { padding: 2rem 1.5rem; }
}
