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

:root {
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #1A1A1A;
  --lime: #C6FF00;
  --lime2: #D4FF33;
  --white: #FFFFFF;
  --white80: rgba(255,255,255,0.8);
  --white50: rgba(255,255,255,0.5);
  --white20: rgba(255,255,255,0.1);
  --white10: rgba(255,255,255,0.06);
  --red: #FF3B30;
  --card: #141414;
  --border: rgba(255,255,255,0.08);
  --lime-glow: rgba(198,255,0,0.15);
}

html { scroll-behavior: smooth; }

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

em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  color: var(--lime);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background: var(--lime);
  color: #000;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: sticky;
  top: 0;
  z-index: 2000;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  padding-right: 60px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TIMER BAR ===== */
.timer-bar {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 20px;
  position: sticky;
  top: 37px;
  z-index: 1999;
}

.timer-bar-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.timer-bar-blocks {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tb-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 2px 10px;
  min-width: 44px;
}

.tb-block span {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.tb-block small {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
}

.tb-sep {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.timer-bar-cta {
  background: #000;
  color: var(--lime);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s;
}
.timer-bar-cta:hover { background: #111; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 77px;
  z-index: 1998;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--lime); }

.nav-cta {
  background: var(--lime);
  color: #000;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--lime-glow); }

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: var(--white10);
  border: 1px solid var(--border);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #fff;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--white50);
  margin-bottom: 40px;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  background: var(--lime);
  color: #000;
  text-decoration: none;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 800;
  padding: 18px 48px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.3px;
  position: relative;
}

.cta-btn.glow {
  box-shadow: 0 0 0 rgba(198,255,0,0);
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(198,255,0,0.3); }
  50% { box-shadow: 0 0 50px rgba(198,255,0,0.7), 0 0 80px rgba(198,255,0,0.3); }
}

.cta-btn:hover { transform: translateY(-3px) scale(1.03); }

.cta-btn.full-width {
  display: block;
  width: 100%;
  text-align: center;
}

.old-price {
  font-size: 0.75em;
  color: rgba(0,0,0,0.5);
  margin-left: 8px;
  text-decoration: line-through;
}

/* ===== HERO BANNER IMAGE ===== */
.hero-banner-wrap {
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(198,255,0,0.15);
  box-shadow: 0 0 80px rgba(198,255,0,0.08), 0 24px 60px rgba(0,0,0,0.6);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.hero-banner-wrap:hover .hero-banner-img { transform: scale(1.02); }

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.trust-badge {
  background: var(--white10);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white80);
}

/* ===== ORB DECORATIONS ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
.orb1 {
  width: 500px; height: 500px;
  background: rgba(198,255,0,0.06);
  top: -150px; left: -100px;
}
.orb2 {
  width: 400px; height: 400px;
  background: rgba(198,255,0,0.04);
  bottom: -100px; right: -80px;
}

/* ===== SECTION COMMON ===== */
section { padding: 90px 0; }

.section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  font-size: 1rem;
  color: var(--white50);
  margin-bottom: 52px;
}

/* ===== PROOF SHOWCASE IMAGE ===== */
.proof-image-wrap {
  margin: 40px auto 0;
  max-width: 860px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(198,255,0,0.15);
  box-shadow: 0 0 60px rgba(198,255,0,0.07), 0 20px 50px rgba(0,0,0,0.5);
}
.proof-showcase-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== EARNINGS STATS ROW ===== */
.earnings-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 40px auto 48px;
  max-width: 760px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  flex-wrap: wrap;
}
.estat {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.estat-num {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -1px;
}
.estat-label {
  font-size: 0.78rem;
  color: var(--white50);
  font-weight: 500;
  text-align: center;
}
.estat-div {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .estat-div { display: none; }
  .estat { min-width: 45%; padding: 10px 0; }
}

/* ===== EARNINGS SECTION ===== */
.earnings-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.earn-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.earn-card:hover { border-color: rgba(198,255,0,0.3); transform: translateY(-4px); }

.earn-avatar {
  width: 48px; height: 48px;
  background: var(--white10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.earn-avatar-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.earn-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.earn-info strong { font-size: 0.95rem; font-weight: 700; color: #fff; }
.earn-info span { font-size: 0.78rem; color: var(--white50); margin-top: 2px; }

.earn-amount {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--lime);
  white-space: nowrap;
}

/* ===== MASTERY SECTION ===== */
.mastery-section { background: var(--bg); }

.mastery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.mastery-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white80);
  transition: border-color 0.3s;
}
.mastery-item:hover { border-color: rgba(198,255,0,0.25); }

.check {
  color: var(--lime);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== A TO Z SECTION ===== */
.atoz-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.atoz-list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.atoz-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  margin-bottom: 10px;
  transition: border-color 0.3s, background 0.3s;
}
.atoz-item:hover {
  border-color: rgba(198,255,0,0.25);
  background: rgba(198,255,0,0.03);
}

.atoz-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(198,255,0,0.2);
  font-family: 'Instrument Serif', serif;
  flex-shrink: 0;
  line-height: 1;
  min-width: 44px;
  padding-top: 4px;
}

.atoz-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.atoz-content p {
  font-size: 0.9rem;
  color: var(--white50);
  line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process-section { background: var(--bg); }

.process-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
}

@media (max-width: 700px) {
  .process-grid { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
}

.process-card {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.process-card:hover { border-color: rgba(198,255,0,0.3); transform: translateY(-6px); }

.process-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.process-step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}

.process-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--white50);
  line-height: 1.65;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--lime);
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===== BONUSES SECTION ===== */
.bonuses-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.bonuses-badge {
  display: inline-block;
  background: rgba(198,255,0,0.1);
  border: 1px solid rgba(198,255,0,0.3);
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
  text-align: left;
}

.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.bonus-card:hover { border-color: rgba(198,255,0,0.3); transform: translateY(-4px); }

.bonus-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.bonus-tag {
  display: inline-block;
  background: rgba(198,255,0,0.08);
  border: 1px solid rgba(198,255,0,0.2);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.bonus-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 0.85rem;
  color: var(--white50);
  line-height: 1.6;
}

/* ===== ENROLL / PRICING SECTION ===== */
.enroll-section { background: var(--bg); }

.pricing-card {
  max-width: 540px;
  margin: 48px auto 0;
  background: var(--card);
  border: 1px solid rgba(198,255,0,0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(198,255,0,0.06);
}

.pricing-top {
  background: linear-gradient(135deg, rgba(198,255,0,0.08), rgba(198,255,0,0.03));
  padding: 36px 36px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pricing-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.price-original {
  font-size: 1.4rem;
  color: var(--white50);
  text-decoration: line-through;
  font-weight: 600;
}

.price-current {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.price-off {
  background: var(--lime);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--white50);
}

.pricing-features {
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white80);
  padding-left: 4px;
}

.pricing-card .cta-btn {
  margin: 0 36px 24px;
  width: calc(100% - 72px);
  font-size: 1.1rem;
  padding: 18px 24px;
  border-radius: 14px;
}

.pricing-guarantee {
  text-align: center;
  font-size: 0.78rem;
  color: var(--white50);
  padding: 0 36px 28px;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(198,255,0,0.25); }
.faq-item.open { border-color: rgba(198,255,0,0.3); }

.faq-q {
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-arrow {
  color: var(--lime);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 0.92rem;
  color: var(--white50);
  line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 22px; }

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  text-align: center;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--lime); }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--white50);
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 0.83rem;
  color: var(--white50);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--lime); }

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== STICKY FOOTER ===== */
.sticky-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-footer.visible { transform: translateY(0); }

.sticky-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sf-old {
  font-size: 1rem;
  color: var(--white50);
  text-decoration: line-through;
  font-weight: 600;
}

.sf-new {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}

.sf-off {
  background: var(--lime);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
}

.sticky-footer .cta-btn {
  padding: 13px 32px;
  font-size: 0.95rem;
  border-radius: 50px;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 4000;
  background: #1A1A1A;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast.show { transform: translateX(0); }

.toast-avatar {
  width: 38px; height: 38px;
  background: var(--lime-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toast-text strong { font-size: 0.85rem; color: #fff; }
.toast-text span { font-size: 0.75rem; color: var(--white50); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== PROOF CAROUSEL ===== */
.carousel-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-bottom: 0;
}

.carousel-outer {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  max-width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.cslide-img-wrap {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.cslide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.carousel-slide:hover .cslide-img-wrap img { transform: scale(1.03); }

.cslide-overlay {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 40px 28px 22px;
}

.cslide-tag {
  display: inline-block;
  background: rgba(198,255,0,0.12);
  border: 1px solid rgba(198,255,0,0.35);
  color: var(--lime);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* Carousel nav buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.carousel-btn:hover {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
  transform: translateY(-50%) scale(1.1);
}
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 40px;
}

.cdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white20);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
}
.cdot.active {
  background: var(--lime);
  width: 28px;
  border-radius: 4px;
  transform: none;
}

/* ===== DETAILS CAPTURE MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #0D0D0D;
  border: 1px solid rgba(198,255,0,0.25);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8), 0 0 40px rgba(198,255,0,0.08);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  padding: 32px 28px;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--white50);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--lime); }

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}
.modal-tag {
  display: inline-block;
  background: rgba(198,255,0,0.12);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.modal-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.modal-header p {
  font-size: 0.85rem;
  color: var(--white50);
  line-height: 1.5;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white80);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus {
  border-color: var(--lime);
  background: rgba(198,255,0,0.02);
}

.modal-secure-txt {
  text-align: center;
  font-size: 0.75rem;
  color: var(--white50);
  margin-top: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 60px 0 60px; }
  section { padding: 60px 0; }
  .atoz-item { padding: 20px 18px; gap: 16px; }
  .atoz-num { font-size: 1.4rem; min-width: 32px; }
  .pricing-card .cta-btn { margin: 0 20px 20px; width: calc(100% - 40px); }
  .pricing-top, .pricing-features { padding-left: 20px; padding-right: 20px; }
  .timer-bar { flex-wrap: wrap; gap: 10px; }
  .sticky-inner { flex-direction: column; gap: 10px; }
  .sticky-footer .cta-btn { width: 100%; text-align: center; }
}
