/* Funnel CRO CSS Variables */
:root {
  --bg-dark: #121212;
  --bg-panel: #1e1e1e;
  --gold-main: #ffd500;
  --gold-grad: linear-gradient(135deg, #ffd700, #ff8c00);
  --red-bad: #e53935;
  --green-good: #00c853;
  --text-primary: #ffffff;
  --text-muted: #888888;

  --font-hebrew: "Heebo", sans-serif;
  --font-nums: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-hebrew);
  line-height: 1.5;
  overflow-x: hidden;
}

.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 4rem;
}
.pb-5 {
  padding-bottom: 4rem;
}
.text-center {
  text-align: center;
}
.font-inter {
  font-family: var(--font-nums);
  font-weight: 700;
  letter-spacing: -1px;
}
.text-gold {
  color: var(--gold-main);
}
.text-red {
  color: var(--red-bad);
}
.text-green {
  color: var(--green-good);
}
.text-muted {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.center-block {
  display: table;
  margin: 0 auto;
}

.top-bar {
  background: #e53935;
  color: #fff;
  text-align: center;
  padding: 0.6rem;
  font-size: 0.95rem;
  font-weight: 800;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
}

.top-bar i {
  margin-left: 0.35rem;
}

.funnel-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .funnel-wrapper {
    max-width: 600px;
  }
  html {
    background: #000;
  }
  body {
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
  }
}

.hero-funnel {
  padding-top: 2.5rem;
  text-align: center;
}

.headline-main {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 2rem;
}

.hero-image-collage {
  position: relative;
  height: 250px;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slip-img {
  position: absolute;
  width: 120px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border: 2px solid #555;
  transition: transform 0.3s;
}

.slip-left {
  transform: translateX(50px) rotate(-10deg) scale(0.9);
  z-index: 1;
  filter: brightness(0.8);
}

.slip-right {
  transform: translateX(-50px) rotate(10deg) scale(0.9);
  z-index: 1;
  filter: brightness(0.8);
}

.slip-center {
  transform: scale(1.1);
  z-index: 3;
  border-color: var(--gold-main);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #ccc;
  font-weight: 600;
}

.badge-item {
  background: #222;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #333;
}

.badge-item i {
  color: #888;
}

.btn-funnel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.25rem 1rem;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.gold-btn {
  background: var(--gold-grad);
  color: #000;
  box-shadow:
    0 8px 20px rgba(255, 215, 0, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.gold-btn:active {
  transform: scale(0.98);
}

.pulse-glow {
  animation: pulseGlow 2.5s infinite;
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.outline-btn {
  background: transparent;
  border: 2px solid var(--gold-main);
  color: var(--text-primary);
}

.cta-helper {
  margin-top: 0.85rem;
  color: #9f9f9f;
  font-size: 0.92rem;
  text-align: center;
}

.mini-steps {
  display: grid;
  gap: 0.75rem;
}

.mini-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  text-align: right;
  color: #d8d8d8;
  font-weight: 700;
}

.step-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 213, 0, 0.14);
  border: 1px solid rgba(255, 213, 0, 0.35);
  color: var(--gold-main);
  font-family: var(--font-nums);
  flex-shrink: 0;
}

.scroll-cue-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  width: 100%;
}

.scroll-cue-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(145deg, #2a2a2a, #111111);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.4);
  animation: scrollCueBounceFloat 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.scroll-cue-pill:hover {
  background: linear-gradient(145deg, #333333, #1a1a1a);
  transform: translateY(-2px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.25), 0 6px 15px rgba(0, 0, 0, 0.5);
}

.scroll-cue-pill i {
  color: var(--gold-main);
  font-size: 1rem;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
}

@keyframes scrollCueBounceFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.section-heading {
  font-size: 1.8rem;
  line-height: 1.2;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.fit-grid,
.testimonial-list {
  display: grid;
  gap: 1rem;
}

.fit-card,
.testimonial-card,
.final-cta-box {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.fit-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid #2d2d2d;
  padding: 1.35rem 1.2rem;
  text-align: center;
}

.fit-card i {
  color: var(--gold-main);
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.fit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.fit-card p {
  color: #b5b5b5;
  font-size: 0.98rem;
}

.compare-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.compare-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-header-bad {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.2), transparent);
  padding: 1.2rem;
  border-bottom: 1px solid rgba(229, 57, 53, 0.2);
}

.card-header-good {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.3),
    rgba(0, 200, 83, 0.1)
  );
  padding: 1.5rem 1.2rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.compare-card.bad-card {
  background: rgba(229, 57, 53, 0.03);
  border: 1px solid rgba(229, 57, 53, 0.2);
}

.compare-card.good-card {
  background: linear-gradient(
    180deg,
    rgba(255, 215, 0, 0.05),
    rgba(0, 200, 83, 0.05)
  );
  border: 2px solid var(--gold-main);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
  transform: scale(1.02);
}

.compare-icon-vs {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  color: #555;
  margin: -0.5rem 0;
}

.compare-card h3 {
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.compare-card.bad-card h3 {
  color: #f88;
}
.compare-card.good-card h3 {
  color: var(--gold-main);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.compare-card ul {
  list-style: none;
  padding: 1.5rem;
}
.compare-card li {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #ddd;
}

.compare-card.bad-card li i {
  color: var(--red-bad);
  font-size: 1.1rem;
}
.compare-card.good-card li i {
  color: var(--green-good);
  font-size: 1.1rem;
}

.proof-scroller {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 1.5rem 0;
  display: flex;
}

.proof-scroller::before,
.proof-scroller::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 5;
  pointer-events: none;
}

.proof-scroller::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.proof-scroller::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.scroller-inner {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}

.scroller-group {
  display: flex;
  gap: 1.5rem;
}

.proof-img {
  height: 320px;
  border-radius: 12px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.scroller-fast {
  animation: scrollMarquee 40s linear infinite;
}

.scroller-slow {
  animation: scrollMarquee 50s linear infinite;
}

.scroller-inner.reverse {
  animation-direction: reverse;
}

.border-y-gold {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.03), transparent);
}

@keyframes scrollMarquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.receipt-card {
  background: #fff;
  color: #000;
  border-radius: 0;
  border-top: 15px solid #222;
  border-bottom: 5px dashed #ccc;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.receipt-card::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background-image: repeating-linear-gradient(
    45deg,
    #ffd700,
    #ffd700 10px,
    #222 10px,
    #222 20px
  );
}

.receipt-header {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: #555;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}

.receipt-list {
  list-style: none;
  margin-bottom: 1.5rem;
  font-family: "Heebo", sans-serif;
}
.receipt-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 0.4rem;
}

.item-name {
  color: #333;
}

.receipt-total {
  background: #f8f9fa;
  padding: 1rem;
  border: 1px solid #ddd;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.crossed-out {
  text-decoration: line-through;
  color: var(--red-bad);
}

.final-price {
  font-size: 1.4rem;
  margin-bottom: 0;
  align-items: center;
}

.final-price .text-gold {
  color: #d4af37;
  font-size: 2.2rem;
}

.countdown-warning {
  text-align: center;
  color: var(--red-bad);
  font-weight: 900;
  font-size: 1.1rem;
  background: rgba(229, 57, 53, 0.1);
  padding: 0.8rem;
  border-radius: 8px;
}

.offer-helper {
  text-align: center;
  color: #555;
  font-size: 0.95rem;
  margin-top: 1rem;
  font-weight: 700;
}

.trust-note {
  margin-top: 1rem;
  text-align: center;
  color: #b9b9b9;
  font-size: 0.95rem;
}

.trust-note i {
  color: var(--green-good);
  margin-left: 0.35rem;
}

.receipt-benefits {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  color: #333;
  font-size: 0.92rem;
  font-weight: 700;
}

.receipt-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f3f3f3;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}

.receipt-benefits i {
  color: var(--green-good);
}

.testimonial-card {
  background: linear-gradient(
    180deg,
    rgba(255, 215, 0, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 1.2rem;
}

.testimonial-text {
  color: #efefef;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.testimonial-name {
  color: #9e9e9e;
  font-size: 0.9rem;
  font-weight: 700;
}

.final-cta-box {
  background: linear-gradient(
    180deg,
    rgba(255, 215, 0, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 215, 0, 0.18);
  padding: 1.5rem 1.2rem;
}

.final-cta-text {
  color: #c4c4c4;
  text-align: center;
  font-size: 1rem;
  margin-top: 0.9rem;
}

.acc-item {
  border-bottom: 1px solid #333;
}

.acc-btn {
  width: 100%;
  padding: 1.2rem 0;
  background: transparent;
  border: none;
  text-align: right;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  color: #aaa;
}
.acc-content p {
  padding-bottom: 1.2rem;
}

.sticky-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-bottom-cta.visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .sticky-bottom-cta {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .headline-main {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.6rem;
  }

  .hero-image-collage {
    height: 180px;
    margin-bottom: 1.5rem;
  }

  .slip-img {
    width: 88px;
  }

  .compare-card li,
  .receipt-list li {
    font-size: 0.98rem;
  }

  .btn-funnel {
    font-size: 1.12rem;
    padding: 1.1rem 0.9rem;
  }

  .mini-step {
    font-size: 0.95rem;
  }

  .trust-note {
    font-size: 0.9rem;
  }

  .scroll-cue-title {
    font-size: 0.96rem;
  }

  .scroll-cue-preview span {
    font-size: 0.78rem;
  }
}
