*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #000; background: #fff; line-height: 1.6; overflow-x: hidden; }

:root {
  --lime: #A2FF00;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #F7F7F7;
  --text-muted: #666;
  --max-w: 1100px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.btn-primary {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.82; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement {
  background: var(--lime);
  color: var(--black);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
}
.announcement a { color: var(--black); font-weight: 800; text-decoration: underline; }

/* ── NAV ── */
nav {
  background: var(--black);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 18px; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: -0.02em; }
.nav-logo span { color: var(--lime); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--lime); }

/* ── HERO ── */
.hero { padding: 60px 0 64px; background: #fff; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { display: inline-block; margin-bottom: 18px; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #000; background: var(--lime); padding: 7px 16px; border-radius: 999px; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.proof-avatars {
  display: flex;
}
.proof-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}
.proof-avatars img:first-child { margin-left: 0; }
.proof-count { font-size: 13px; font-weight: 800; color: #111; }
.proof-google { flex-shrink: 0; width: 16px; height: 16px; }
.proof-stars { font-size: 14px; color: #FBBC04; letter-spacing: 1px; }
.stars { color: var(--lime); letter-spacing: 2px; }
.hero h1 { font-size: 48px; font-weight: 900; line-height: 1.08; margin-bottom: 20px; letter-spacing: -0.03em; }
.hero h1 .accent { background: var(--lime); color: var(--black); padding: 0 6px; }
.hero p { font-size: 16px; color: #444; margin-bottom: 28px; line-height: 1.75; max-width: 480px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.hero-proof { font-size: 13px; color: #888; }
.hero-guarantee { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #888; margin-top: 12px; }
.hero-guarantee svg { stroke: #22c55e; flex-shrink: 0; }

.hero-visuals { display: flex; justify-content: center; align-items: center; }

/* Float animation */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

/* Card group */
.ad-cards-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  height: 440px;
}

.ad-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22), inset 0 0 0 6px #111;
  flex-shrink: 0;
  will-change: transform;
  backface-visibility: hidden;
  padding: 6px;
}
.ad-card-media {
  width: 100%;
  height: 100%;
  background: #222;
  border-radius: 22px;
  overflow: hidden;
}
.ad-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes floatLeft {
  0%, 100% { transform: rotate(-6deg) translateX(18px) translateY(0px); }
  50%       { transform: rotate(-6deg) translateX(18px) translateY(-12px); }
}
@keyframes floatCenter {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes floatRight {
  0%, 100% { transform: rotate(6deg) translateX(-18px) translateY(0px); }
  50%       { transform: rotate(6deg) translateX(-18px) translateY(-10px); }
}

.ad-card-left {
  width: 155px;
  height: 310px;
  z-index: 1;
  margin-bottom: 20px;
  animation: floatLeft 4.2s ease-in-out infinite;
}
.ad-card-center {
  width: 175px;
  height: 370px;
  z-index: 3;
  animation: floatCenter 3.8s ease-in-out infinite -0.6s;
}
.ad-card-right {
  width: 155px;
  height: 300px;
  z-index: 2;
  margin-bottom: 10px;
  animation: floatRight 4.5s ease-in-out infinite -1.2s;
}

/* Coloured pill badges on cards */
.ad-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
}
.ad-badge-green  { background: #22c55e; }
.ad-badge-orange { background: #f97316; }
.ad-badge-blue   { background: #3b82f6; }

/* Bottom info badges */
.ad-bottom-badges {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding: 0 4px;
}
.ad-info-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex: 1;
}
.ad-info-badge div { display: flex; flex-direction: column; }
.ad-info-badge strong { font-size: 14px; font-weight: 700; color: #111; }
.ad-info-badge span { font-size: 12px; color: #888; }
.ad-info-icon {
  width: 32px; height: 32px;
  background: #dcfce7;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ad-info-icon-orange { background: #ffedd5; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--black); padding: 36px 0; }
.trust-bar-inner { text-align: center; }
.trust-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-logo { color: rgba(255,255,255,0.45); font-size: 17px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; }

/* ── STATS ── */
.stats-section { padding: 84px 0; background: var(--gray); text-align: center; }
.section-title { font-size: 36px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 12px; line-height: 1.2; }
.section-sub { font-size: 16px; color: #666; max-width: 560px; margin: 0 auto 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.stat-card { background: #fff; border-radius: 12px; padding: 32px 24px; text-align: left; border: 1px solid #E5E5E5; display: flex; flex-direction: column; }
.stat-number { font-size: 34px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 6px; }
.stat-highlight { background: var(--black); color: var(--lime); padding: 2px 6px; border-radius: 4px; }
.stat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #999; margin-bottom: 12px; }
.stat-desc { font-size: 14px; color: #555; line-height: 1.65; }
.stat-pill { display: inline-block; margin-top: auto; padding: 5px 14px; align-self: flex-start; background: #e8ffb0; color: #000; font-size: 12px; font-weight: 700; border-radius: 999px; }
.stat-quote { font-size: 13px; color: #999; font-style: italic; margin-top: 10px; margin-bottom: 20px; }

/* ── FORMATS ── */
.formats-section { padding: 84px 0; background: #fff; text-align: center; }
.formats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.format-card { border-radius: 12px; overflow: hidden; border: 1px solid #E5E5E5; text-align: left; background: #fff; transition: transform 0.2s, box-shadow 0.2s; }
.format-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }
.format-thumb { background: #111; aspect-ratio: 9/16; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.format-thumb img, .format-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.format-thumb.playing .play-btn { opacity: 0; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; background: rgba(255,255,255,0.9); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.play-btn::after { content: ''; border-left: 18px solid var(--lime); border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 4px; }
.format-body { padding: 20px; }
.format-name { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.format-desc { font-size: 13px; color: #666; line-height: 1.65; margin-bottom: 16px; }
.format-cta { font-size: 13px; font-weight: 700; color: var(--black); text-decoration: none; }
.format-cta::after { content: ' →'; }

/* ── COMPARISON ── */
.compare-section { padding: 84px 0; background: var(--gray); text-align: center; }
.compare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; align-items: stretch; padding-top: 20px; }
.compare-card { background: #fff; border-radius: 12px; padding: 32px 26px; text-align: left; border: 1px solid #E5E5E5; }
.compare-card.featured { background: #D9F99D; color: var(--black); border-color: #D9F99D; position: relative; }
.compare-card-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #999; margin-bottom: 10px; }
.compare-card.featured .compare-card-label { color: rgba(0,0,0,0.5); }
.compare-price { font-size: 36px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 4px; }
.compare-card:not(.featured) .compare-price { color: #e03333; }
.compare-price.lime { color: var(--black); }
.compare-price-note { font-size: 13px; color: #999; margin-bottom: 20px; }
.compare-card.featured .compare-price-note { color: rgba(0,0,0,0.5); }
.compare-badge { background: var(--black); color: var(--lime); font-size: 10px; font-weight: 800; padding: 4px 12px; border-radius: 4px; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; letter-spacing: 0.04em; }
.compare-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare-features li { font-size: 14px; color: #444; display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.compare-card.featured .compare-features li { color: rgba(0,0,0,0.75); }
.compare-features li .icon { flex-shrink: 0; font-style: normal; color: #ccc; }
.compare-card:not(.featured) .compare-features li .icon { color: #e03333; }
.compare-savings { margin-top: 32px; font-size: 15px; color: #666; }
.compare-savings strong { color: var(--black); }
.compare-savings a { color: var(--black); font-weight: 700; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 84px 0; background: #fff; text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: var(--gray); border-radius: 12px; padding: 28px; text-align: left; border: 1px solid #E5E5E5; }
.t-header { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.t-stars { color: #FBBC04; font-size: 14px; letter-spacing: 2px; }
.t-text { font-size: 14px; line-height: 1.75; color: #333; margin-bottom: 22px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--black); display: flex; align-items: center; justify-content: center; color: var(--lime); font-weight: 800; font-size: 13px; flex-shrink: 0; overflow: hidden; }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-avatar-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.t-name { font-size: 14px; font-weight: 700; }
.t-role { font-size: 12px; color: #999; }

/* ── PROCESS ── */
.process-section { padding: 84px 0; background: var(--gray); text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 64px 0 48px; }
.step-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 40px 28px 32px;
  text-align: left;
}
.step-number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: var(--lime);
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900;
  box-shadow: 0 4px 12px rgba(180,255,0,0.35);
}
.step-icon { font-size: 28px; margin-bottom: 16px; }
.step-title { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: #111; }
.step-desc { font-size: 14px; color: #666; line-height: 1.7; }
.process-banner { background: var(--black); color: var(--white); border-radius: 12px; padding: 22px 32px; display: inline-flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; }
.process-banner strong { color: var(--lime); }
.process-banner-items { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }

/* ── WHY US ── */
.why-section { padding: 84px 0; background: #fff; text-align: center; }
.why-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
@keyframes borderSpin {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.why-stat-card {
  background: var(--black);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.why-stat-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 200%; height: 200%;
  background: conic-gradient(transparent 300deg, #c8ff00 340deg, transparent 360deg);
  animation: borderSpin 3s linear infinite;
  z-index: -2;
}
.why-stat-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--black);
  border-radius: 18px;
  z-index: -1;
}
.why-stat-card:nth-child(2)::before { animation-delay: -0.75s; }
.why-stat-card:nth-child(3)::before { animation-delay: -1.5s; }
.why-stat-card:nth-child(4)::before { animation-delay: -2.25s; }
.why-stat-num { font-size: 52px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px; color: var(--lime); }
.why-stat-label { font-size: 13px; color: #fff; line-height: 1.6; }

/* ── PRICING ── */
.pricing-section { padding: 84px 0; background: var(--gray); text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; align-items: center; }
.pricing-card { background: #fff; border-radius: 16px; padding: 36px 28px; text-align: left; border: 2px solid #E5E5E5; position: relative; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--lime); transform: scale(1.06); box-shadow: 0 24px 64px rgba(0,0,0,0.12); z-index: 2; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--lime); color: var(--black); font-size: 11px; font-weight: 800; padding: 5px 16px; border-radius: 20px; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.pricing-plan { font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: #999; margin-bottom: 8px; }
.pricing-price { font-size: 52px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.pricing-note { font-size: 13px; color: #999; margin-bottom: 24px; }
.pricing-divider { height: 1px; background: #EBEBEB; margin: 22px 0; }
.pricing-features li { font-size: 14px; color: #444; display: flex; gap: 10px; align-items: flex-start; }
.check { width: 18px; height: 18px; background: var(--black); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check::after { content: '✓'; color: var(--lime); font-size: 10px; font-weight: 900; }
.pricing-btn { width: 100%; text-align: center; padding: 15px; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; text-decoration: none; display: block; transition: opacity 0.2s; }
.pricing-btn:hover { opacity: 0.85; }
.btn-lime { background: var(--lime); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.pricing-guarantee { text-align: center; margin-top: 28px; font-size: 13px; color: #999; }
.pricing-callout { background: #D9F99D; border-radius: 16px; padding: 28px 36px; text-align: center; margin-top: 40px; }
.pricing-callout-title { font-size: 20px; font-weight: 800; color: var(--black); display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.pricing-callout-sub { font-size: 15px; color: #444; margin: 0; }
.pricing-volume { text-align: center; margin-top: 20px; font-size: 14px; color: #666; }
.pricing-volume a { color: var(--black); font-weight: 700; text-decoration: underline; }

/* ── FAQ ── */
.faq-section { padding: 84px 0; background: #fff; text-align: center; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; text-align: left; }
.faq-q { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.faq-a { font-size: 14px; color: #666; line-height: 1.75; }

/* ── FOOTER CTA ── */
.footer-cta { background: var(--black); padding: 88px 0; text-align: center; }
.footer-cta h2 { font-size: 44px; font-weight: 900; color: var(--white); letter-spacing: -0.025em; margin-bottom: 14px; line-height: 1.18; }
.footer-cta h2 span { color: var(--lime); }
.footer-cta p { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 36px; }
.footer-cta-btns { display: flex; justify-content: center; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.65); font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 8px; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: border-color 0.2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); }
.footer-proof { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-proof .stars { font-size: 13px; }

/* ── FOOTER ── */
footer { background: #050505; padding: 32px 0; border-top: 1px solid #151515; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-size: 16px; font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.footer-logo span { color: var(--lime); }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--lime); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visuals { display: none; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .section-title { font-size: 26px; }
  .nav-logo { font-size: 15px; }
  .btn-primary { font-size: 13px; padding: 10px 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; margin-top: 80px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; box-shadow: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .nav-links { display: none; }
  .why-stat-num { font-size: 36px; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .process-banner-items { flex-direction: column; gap: 4px; }
  .process-banner-dot { display: none; }
  .trust-logos { gap: 24px 48px; }
}
