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

:root {
  --red: #d90429;
  --yellow: #ffd60a;
  --green: #21c063;
  --dark: #12130c;
}

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  background: #000;
  color: #222;
  line-height: 1.5;
}

.page {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

/* Sections span full width; content stays in a centered column */
section { padding: 28px max(16px, calc((100% - 1100px) / 2)); position: relative; }

/* ---------- Top urgency bar (zoomIn like original) ---------- */
.topbar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 12px;
}
.topbar span { display: inline-block; animation: zoomIn .6s both; }
@keyframes zoomIn {
  from { opacity: 0; transform: scale3d(.3,.3,.3); }
  50% { opacity: 1; }
}

/* ---------- Dark olive hero with curved bottom divider ---------- */
.hero {
  background: #332C02;
  color: #fff;
  text-align: center;
  padding-bottom: 10px;
}
.hero h1 {
  font-family: 'Poppins', 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.45;
}
.hero h1 .y { color: var(--yellow); }
/* Red bordered strip under headline */
.hero .sub {
  display: block;
  background: #ff1f1f;
  border: 3px solid #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  stroke: #000;
  color: #FFFFFF;
  letter-spacing: .3px;
  padding: 8px 14px;
  margin: 22px auto 0;
  max-width: 1100px;
}

/* Animated headline highlight — double underline draw (like Elementor animated-headline) */
.hl-wrap {
  position: relative;
  display: inline-block;
  color: var(--yellow);
  white-space: normal;
  padding: 0 4px;
}
.hl-wrap svg {
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 100%;
  height: 28px;
  overflow: visible;
}
.hl-wrap svg path {
  stroke: #e60000;
  stroke-width: 14;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 1.2s ease forwards;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}
@keyframes draw {
  0% { stroke-dashoffset: 1000; }
  15% { stroke-dashoffset: 0; }
  85% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

/* Curved divider: CTA + checklist on olive, timer straddling the layered waves */
.curve-divider {
  position: relative;
  background: #332C02;
  overflow: hidden;
  text-align: center;
  padding: 26px 16px 70px;
}
/* Elementor "opacity-fan" bottom shape divider (exact SVG from the reference) */
.curve-divider .shape {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  pointer-events: none;
}
.curve-divider .shape svg {
  display: block;
  width: 100%;
  height: 140px;
  transform: rotate(180deg);
}
.curve-divider .shape .fill { fill: #ffffff; }
.curve-divider .cta,
.curve-divider .badges,
.curve-divider .timer-wrap { position: relative; z-index: 2; }
.curve-divider .cta {
  max-width: 300px;
  margin: 6px auto 12px;
  border: 2px solid #fff;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff6a13, #e93a00);
  font-size: 19px;
  font-weight: 800;
  padding: 13px;
}
.curve-divider .badges { color: #fff; flex-direction: column; gap: 7px; align-items: center; font-weight: 700; font-size: 16px; }
.curve-divider .badges span::before { content: "✔ "; color: var(--yellow); }
.curve-divider .timer-wrap { margin: 10px 0 0; }
.curve-divider .timer { gap: 26px; }
.curve-divider .timer .unit { background: transparent; padding: 0; min-width: 90px; }
.curve-divider .timer .num { color: #fff; font-size: 42px; font-weight: 800; }
.curve-divider .timer .lbl { color: #e60000; font-size: 15px; font-weight: 800; text-transform: capitalize; }
.curve-divider .badges span::before { font-size: 18px; font-weight: 900; }

/* ---------- Placeholder slots (drop your own assets here) ---------- */
.slot {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888;
  font-weight: 700;
  font-size: 14px;
  padding: 16px;
  background: rgba(255,255,255,.04);
}
.hero .slot { color: #bbb; min-height: 340px; margin: 18px 0; }
.slot.video { 
    background-color: #000;
    border-style: solid;
    border-width: 4px 4px 4px 4px;
    border-color: #FFFFFF;
    padding: 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.89);
 }
.slot.shot { 
  background-color: #000;
    border-style: solid;
    border-width: 4px 4px 4px 4px;
    border-color: #FFFFFF;
    padding: 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.89); }
.slot.bonus { min-height: 280px; background: #111; color: #999; }

/* ---------- Feature list with check-circle icons ---------- */
.features { list-style: none; margin: 14px 0 4px; text-align: left; }
.features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Poppins', 'Roboto', sans-serif;
  color: #fff;
}
.features svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 3px;
  fill: #efb100;
}

/* ---------- CTA ---------- */
.cta {
  display: block;
  width: 100%;
  background: #ff3d0e;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  padding: 15px 12px;
  border-radius: 8px;
  margin: 16px 0 8px;
  box-shadow: 0 6px 18px rgba(255, 61, 14, .35);
  animation: pulse 1.5s infinite;
}
.cta.green {
  background: linear-gradient(180deg, #25d366, #128c45);
  color: #fff;
}
.cta small { display: block; font-size: 12px; font-weight: 600; }
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #ccc;
  margin-top: 10px;
}
.badges span::before { content: "🔒 "; }

/* ---------- Section titles ---------- */
.sec-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Poppins', 'Roboto', sans-serif;
}
.sec-title .r { color: var(--red); }
.sec-title .y { color: #e0a800; }
.dark-sec .sec-title { color: #fff; }

/* ---------- Demo videos: single centered column like the original ---------- */
.video-stack { display: flex; flex-direction: column; gap: 18px; margin: 0 auto; max-width: 560px; }
.video-stack .slot.video { min-height: 0; }
.video-stack video { display: block; width: 100%; height: auto; border-radius: 12px; background: #000; }

/* ---------- Screenshot grids: narrow 2-column like the original ---------- */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 660px; margin: 0 auto; }
.grid2 img, .grid1 img { width: 100%; border-radius: 10px; display: block; }
.grid1 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 660px; margin: 0 auto; }

/* Red underlined keyword in section titles */
.sec-title .u { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
/* Black pill title like "Who Is This ... For?" */
.sec-title.pill {
  display: table;
  margin: 0 auto 18px;
  background: #15160d;
  color: #fff;
  padding: 8px 24px;
  border-radius: 6px;
}

/* ---------- Dark sections ---------- */
.dark-sec { background: var(--dark); color: #eee; }

/* ---------- Audience cards ---------- */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.card {
  background: #1f2116;
  border: 1px solid #33351f;
  border-radius: 14px;
  text-align: center;
  padding: 20px 12px;
}
.card .icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.card .icon svg { width: 30px; height: 30px; }
.icon-creator { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.icon-fb { background: linear-gradient(135deg, #2563eb, #1877f2); }
.icon-yt { background: linear-gradient(135deg, #ff5252, #ff0000); }
.icon-ig { background: linear-gradient(135deg, #feda75, #d62976 45%, #962fbf 80%, #4f5bd5); }
.card h4 { font-size: 15px; margin-top: 12px; color: var(--yellow); }
.card p { font-size: 12.5px; color: #bbb; margin-top: 6px; }

/* ---------- Platforms ---------- */
.platforms { display: flex; justify-content: center; align-items: center; gap: 22px; margin-top: 8px; }
.platforms .plat {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.45);
}
.platforms .plat svg { width: 34px; height: 34px; }
.plat-ig { background: linear-gradient(135deg, #feda75, #d62976 45%, #962fbf 80%, #4f5bd5); }
.plat-yt { background: linear-gradient(135deg, #ff5252, #ff0000); }
.plat-fb { background: linear-gradient(135deg, #2563eb, #1877f2); }

/* ---------- Offer strip ---------- */
.offer-strip {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 18px 16px;
}
.offer-strip h2 { font-size: 19px; font-weight: 800; }
.offer-strip .old { text-decoration: line-through; opacity: .8; }
.offer-strip .new { color: var(--yellow); font-size: 24px; }

/* ---------- Bonus stack ---------- */
.bonus-subtitle {
  text-align: center;
  color: var(--red);
  font-family: 'Poppins', 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 6px;
}
.bonus-wrap { display: flex; flex-direction: column; gap: 24px; }
.bonus-tag {
  display: block;
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: 'Poppins', 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .5px;
  text-align: center;
  padding: 8px 14px;
  border-radius: 4px;
  margin-bottom: 0;
}
.bonus-item { text-align: center; }
.slot.bonus {
  min-height: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.slot.bonus img { width: 100%; height: auto; display: block; }
.bonus-item .worth { color: var(--yellow); font-weight: 800; font-size: 14px; margin-top: 8px; }

/* ---------- Countdown ---------- */
.timer-wrap { text-align: center; margin: 18px 0 4px; }
.timer-label { font-size: 14px; font-weight: 700; color: var(--yellow); margin-bottom: 8px; }
.timer { display: flex; justify-content: center; gap: 10px; }
.timer .unit {
  background: #fff;
  color: #111;
  border-radius: 10px;
  min-width: 68px;
  padding: 10px 8px;
}
.timer .num { font-size: 24px; font-weight: 900; display: block; }
.timer .lbl { font-size: 10px; text-transform: uppercase; color: #666; }

/* ---------- FAQ ---------- */
details {
  background: #1f2116;
  border: 1px solid #33351f;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
summary {
  padding: 14px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 34px;
  color: #fff;
}
summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--yellow);
}
details[open] summary::after { content: "–"; }
details .ans { padding: 0 14px 14px; font-size: 13.5px; color: #bbb; }

/* ---------- Footer ---------- */
footer {
  background: #0a0a06;
  color: #888;
  font-size: 11.5px;
  text-align: center;
  padding: 26px 16px;
}
footer p { margin-bottom: 10px; }
footer a { color: #bbb; }

/* ---------- Sticky CTA ---------- */
/* Sticky bottom bar: same white dome + navy zigzag, pinned to viewport */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: transparent;
  overflow: hidden;
  padding: 25px 12px 20px;
}
/* navy body with a seamless zigzag top edge (CSS mask tiles across full width) */
.sticky-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #24337a 0%, #16225c 100%);
  -webkit-mask: conic-gradient(from 135deg at top, #000 90deg, transparent 0) top / 16px 16px repeat-x,
                linear-gradient(#000 0 0) left 0 top 8px / 100% 100% no-repeat;
          mask: conic-gradient(from 135deg at top, #000 90deg, transparent 0) top / 16px 16px repeat-x,
                linear-gradient(#000 0 0) left 0 top 8px / 100% 100% no-repeat;
}
.sticky-cta .bar-title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
/* Elementor "curve" bottom shape (exact SVG from the reference) */
.sticky-cta .shape {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  pointer-events: none;
}
.sticky-cta .shape svg {
  display: block;
  width: 100%;
  height: 130px;
  transform: rotate(180deg);
}
.sticky-cta .shape .fill { fill: #ffffff; }
.sticky-cta .cta {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 14px;
  font-size: 18px;
  animation: none;
  max-width: 340px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f5a623, #f43b00);
}
.spacer-bottom { height: 180px; background: var(--dark); }

/* ================= DESKTOP LAYOUT ================= */
@media (min-width: 768px) {
  .topbar { font-size: 17px; padding: 12px; }

  .hero { text-align: center; padding-top: 48px; padding-bottom: 10px; }
  .hero h1 { font-size: 44px; max-width: 1050px; margin: 0 auto; }
  .hero .sub { font-size: 20px; margin-top: 26px; padding: 10px 16px; }
  .curve-divider { padding-top: 40px; padding-bottom: 85px; }
  .curve-divider .shape svg { height: 155px; }
  .curve-divider .timer .num { font-size: 52px; }
  .curve-divider .timer .lbl { font-size: 16px; }
  .hero .slot { margin: 26px auto; min-height: 420px; }
  .hero .features { margin: 16px 0 0; }
  .shape-bottom svg { height: 56px; }

  .sec-title { font-size: 30px; margin-bottom: 26px; }

  .slot.video { min-height: 300px; }
  .slot.shot { min-height: 380px; }

  .cards { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .card { padding: 28px 16px; }
  .card h4 { font-size: 17px; }
  .card p { font-size: 13.5px; }

  .platforms { gap: 32px; }
  .platforms .plat { width: 76px; height: 76px; border-radius: 22px; }
  .platforms .plat svg { width: 40px; height: 40px; }

  .offer-strip h2 { font-size: 26px; }
  .offer-strip .new { font-size: 34px; }

  .bonus-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .dark-sec .cta.green { max-width: 560px; margin-left: auto; margin-right: auto; }

  .timer .unit { min-width: 84px; padding: 12px 10px; }
  .timer .num { font-size: 30px; }

  details { max-width: 820px; margin-left: auto; margin-right: auto; margin-bottom: 12px; }
  summary { font-size: 16px; }

  footer { font-size: 12.5px; }
  footer p { max-width: 900px; margin-left: auto; margin-right: auto; margin-bottom: 10px; }

  .cta { font-size: 21px; }
}
