/* ============================================
   ASIANS4SALE.COM — Infomercial Stylesheet
   ============================================ */

:root {
  --yellow: #FFE600;
  --red: #E8001C;
  --dark-red: #9B0012;
  --black: #080808;
  --dark: #0f0f0f;
  --mid: #1a1a1a;
  --cream: #F0EAD6;
  --grey: #888888;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Special Elite', monospace;
  overflow-x: hidden;
  cursor: crosshair;
}

/* ============================================
   VHS EFFECTS
   ============================================ */

.vhs-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
  z-index: 9000;
  will-change: transform;
}

.scanlines {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.08) 3px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 8999;
  animation: scanline-drift 12s linear infinite;
}

@keyframes scanline-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

/* ============================================
   TICKER TAPE
   ============================================ */

.ticker {
  background: var(--red);
  color: var(--yellow);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 100;
  border-bottom: 2px solid var(--dark-red);
}

.ticker-inner {
  display: inline-block;
  animation: ticker-roll 30s linear infinite;
}

.ticker-inner span {
  margin-right: 10px;
}

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

/* ============================================
   HEADER
   ============================================ */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 500;
  gap: 20px;
}

.logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.logo span {
  color: var(--red);
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

nav a:hover {
  opacity: 1;
  color: var(--yellow);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--yellow) !important;
  opacity: 1 !important;
  padding: 8px 20px;
  border: 2px solid var(--yellow);
  animation: nav-cta-pulse 2s ease-in-out infinite;
}

@keyframes nav-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 0, 28, 0.7); }
  50%       { box-shadow: 0 0 0 6px rgba(232, 0, 28, 0); }
}

.as-seen-badge {
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', cursive;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  text-align: center;
  line-height: 1.3;
  transform: rotate(-3deg);
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--red);
  flex-shrink: 0;
}

/* ============================================
   STARBURST
   ============================================ */

.starburst {
  position: absolute;
  top: 50px;
  right: 80px;
  width: 130px;
  height: 130px;
  background: var(--red);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  clip-path: polygon(
    50% 0%,   57% 30%, 79% 9%,  71% 35%,
    98% 35%,  76% 50%, 98% 65%, 71% 65%,
    79% 91%,  57% 70%, 50% 100%,43% 70%,
    21% 91%,  29% 65%, 2% 65%,  24% 50%,
    2% 35%,   29% 35%, 21% 9%,  43% 30%
  );
  animation: starburst-spin 18s linear infinite;
  z-index: 50;
}

@keyframes starburst-spin {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(360deg) scale(1); }
}

.cta-starburst {
  width: 110px;
  height: 110px;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  line-height: 1.2;
  clip-path: polygon(
    50% 0%,   57% 30%, 79% 9%,  71% 35%,
    98% 35%,  76% 50%, 98% 65%, 71% 65%,
    79% 91%,  57% 70%, 50% 100%,43% 70%,
    21% 91%,  29% 65%, 2% 65%,  24% 50%,
    2% 35%,   29% 35%, 21% 9%,  43% 30%
  );
  animation: starburst-spin 12s linear infinite;
  margin: 0 auto 30px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 92vh;
  padding: 90px 60px 70px;
  background: var(--black);
  border-bottom: 5px solid var(--yellow);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0; right: -5%;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at bottom right, rgba(232,0,28,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(12rem, 28vw, 22rem);
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  font-family: 'Special Elite', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 18px;
  animation: eyebrow-flicker 6s ease-in-out infinite;
}

@keyframes eyebrow-flicker {
  0%, 89%, 91%, 93%, 100% { opacity: 1; }
  90%, 92% { opacity: 0.5; }
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(4.5rem, 11vw, 9rem);
  color: var(--yellow);
  line-height: 0.88;
  margin-bottom: 24px;
  text-shadow: 7px 7px 0 var(--red), 14px 14px 0 rgba(232, 0, 28, 0.25);
  animation: hero-slam 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-slam {
  from {
    opacity: 0;
    transform: scale(1.4) translateY(-25px);
    text-shadow: 0 0 0 transparent;
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-sub {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: 1.25;
}

.highlight {
  background: var(--yellow);
  color: var(--black);
  padding: 1px 8px;
}

.hero-body {
  font-size: 1rem;
  color: rgba(240, 234, 214, 0.8);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-body strong {
  color: var(--cream);
}

/* Price block */
.price-block {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.price-was, .price-now {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--grey);
  margin-bottom: 2px;
}

.old-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  color: #555;
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  line-height: 1;
}

.old-price small {
  font-size: 1rem;
}

.price-arrow {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--red);
}

.new-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  color: var(--yellow);
  line-height: 1;
  animation: price-throb 2.5s ease-in-out infinite;
}

.new-price sup {
  font-size: 1.8rem;
  vertical-align: top;
  margin-top: 4px;
}

@keyframes price-throb {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

.price-per {
  font-size: 0.7rem;
  color: var(--grey);
  font-style: italic;
  margin-top: 3px;
}

/* Hero CTA button */
.btn-hero {
  display: inline-block;
  background: var(--red);
  color: var(--yellow);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.9rem;
  padding: 18px 48px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 3px solid var(--yellow);
  box-shadow: 7px 7px 0 var(--yellow);
  transition: transform 0.1s, box-shadow 0.1s;
  margin-bottom: 22px;
  display: inline-block;
}

.btn-hero:hover {
  transform: translate(4px, 4px);
  box-shadow: 3px 3px 0 var(--yellow);
}

.hero-disclaimer {
  font-size: 0.68rem;
  color: #555;
  font-style: italic;
  max-width: 520px;
  line-height: 1.5;
}

/* Hero stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #222;
  border: 1px solid #222;
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.stat {
  background: var(--dark);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s;
}

.stat:hover {
  background: #151515;
}

.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  color: var(--yellow);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--grey);
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */

.section-tag {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 12px;
  margin-bottom: 12px;
  display: inline-block;
}

section h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--yellow);
  line-height: 0.93;
  margin-bottom: 24px;
}

.section-intro {
  font-size: 0.95rem;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 55px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem {
  padding: 110px 60px;
  background: var(--dark);
  border-bottom: 3px solid var(--red);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #1c1c1c;
}

.problem-card {
  background: var(--black);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  border-bottom: 3px solid transparent;
}

.problem-card:hover {
  background: #0d0d0d;
  border-bottom-color: var(--yellow);
}

.problem-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.problem-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.problem-card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.35rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.88rem;
  color: rgba(240, 234, 214, 0.65);
  line-height: 1.65;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how {
  padding: 110px 60px;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}

.steps-container {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
}

.step {
  flex: 1;
  background: var(--dark);
  border: 2px solid #2a2a2a;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.step:hover {
  border-color: var(--yellow);
}

.step-bg-num {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-family: 'Bebas Neue', cursive;
  font-size: 8rem;
  color: rgba(255, 230, 0, 0.04);
  line-height: 1;
  user-select: none;
}

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

.step-num-badge {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 12px;
  border-left: 2px solid var(--red);
  padding-left: 8px;
}

.step h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.step p {
  font-size: 0.88rem;
  color: rgba(240, 234, 214, 0.65);
  line-height: 1.65;
  margin-bottom: 20px;
}

.step-time {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--grey);
  border: 1px solid #2a2a2a;
  padding: 5px 10px;
  display: inline-block;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  gap: 4px;
}

.step-arrow-line {
  width: 30px;
  height: 2px;
  background: var(--red);
}

.step-arrow-head {
  color: var(--red);
  font-size: 1rem;
  margin-left: 12px;
}

.fine-print-box {
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  font-size: 0.78rem;
  color: #666;
  font-style: italic;
  line-height: 1.6;
}

.fine-print-label {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-right: 10px;
  font-style: normal;
}

/* ============================================
   PACKAGES
   ============================================ */

.packages {
  padding: 110px 60px;
  background: var(--mid);
  border-bottom: 3px solid var(--red);
}

.included-not-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.col-header {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  padding: 12px 20px;
  margin-bottom: 12px;
}

.included-header {
  background: rgba(255, 230, 0, 0.1);
  color: var(--yellow);
  border-left: 4px solid var(--yellow);
}

.not-included-header {
  background: rgba(232, 0, 28, 0.1);
  color: var(--red);
  border-left: 4px solid var(--red);
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid #222;
  transition: background 0.15s;
}

.service-item:hover {
  background: rgba(255,255,255,0.02);
}

.service-item.not-included {
  opacity: 0.5;
}

.check {
  font-size: 1.3rem;
  color: var(--yellow);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.cross {
  font-size: 1.3rem;
  color: var(--red);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-item h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.service-item p {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 110px 60px;
  background: var(--dark);
  border-bottom: 3px solid var(--yellow);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial {
  background: var(--black);
  border: 2px solid #222;
  padding: 32px 26px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.testimonial:hover {
  border-color: #444;
  transform: translateY(-4px);
}


.testimonial-tape {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--grey);
  background: #1a1a1a;
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 14px;
  border: 1px solid #2a2a2a;
}

.testimonial-avatar {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.quote {
  font-size: 0.88rem;
  color: var(--cream);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0.9;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.82rem;
  color: var(--grey);
  letter-spacing: 0.06em;
}

.testimonial-result {
  background: var(--red);
  color: var(--yellow);
  font-family: 'Bebas Neue', cursive;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  display: inline-block;
}

.testimonial-disclaimer {
  font-size: 0.72rem;
  color: #444;
  font-style: italic;
  margin-top: 10px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  padding: 110px 60px;
  background: var(--red);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.06),
    rgba(0,0,0,0.06) 1px,
    transparent 1px,
    transparent 16px
  );
  pointer-events: none;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--yellow);
  text-shadow: 5px 5px 0 rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.cta-sub-text {
  font-size: 1rem;
  color: rgba(255, 230, 0, 0.75);
  margin-bottom: 40px;
  font-style: italic;
}

.cta-price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-was, .cta-is {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-was span:first-child,
.cta-is span:first-child {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(255,230,0,0.5);
  margin-bottom: 3px;
}

.cta-old-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  color: rgba(255,230,0,0.35);
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.5);
  text-decoration-thickness: 3px;
}

.cta-divider {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  color: rgba(255,230,0,0.3);
}

.cta-new-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  color: var(--yellow);
  line-height: 1;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.cta-new-price sup {
  font-size: 2.5rem;
  vertical-align: top;
  margin-top: 8px;
}

.cta-per {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  color: rgba(255,230,0,0.6);
}

.btn-cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  padding: 22px 60px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 3px solid rgba(0,0,0,0.3);
  box-shadow: 7px 7px 0 rgba(0,0,0,0.3);
  transition: transform 0.1s, box-shadow 0.1s, background 0.1s;
  margin-bottom: 16px;
  display: inline-block;
  animation: cta-btn-flash 1.8s ease-in-out infinite;
}

@keyframes cta-btn-flash {
  0%, 100% { background: var(--yellow); color: var(--black); }
  50%       { background: var(--black); color: var(--yellow); }
}

.btn-cta:hover {
  animation: none;
  background: var(--yellow);
  color: var(--black);
  transform: translate(4px, 4px);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.cta-alt {
  font-size: 0.82rem;
  color: rgba(255,230,0,0.5);
  font-style: italic;
  margin-bottom: 50px;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(0,0,0,0.25);
  border: 2px solid rgba(255,230,0,0.4);
  padding: 28px;
  text-align: left;
}

.guarantee-seal {
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.25;
  padding: 16px;
  min-width: 90px;
  flex-shrink: 0;
  border-radius: 50%;
  width: 95px;
  height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.guarantee-text {
  font-size: 0.85rem;
  color: rgba(255,230,0,0.85);
  line-height: 1.65;
}

.guarantee-text strong {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: var(--yellow);
}

.guarantee-text small {
  display: block;
  margin-top: 8px;
  color: rgba(255,230,0,0.45);
  font-style: italic;
  font-size: 0.75rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: #040404;
  padding: 55px 60px;
  border-top: 3px solid #111;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: #222;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.footer-logo span {
  color: #400000;
}

.footer-tagline {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #333;
  margin-bottom: 22px;
}

.footer-legal {
  font-size: 0.72rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-disclaimer {
  font-size: 0.68rem;
  color: #2a2a2a;
  font-style: italic;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   IMAGES
   ============================================ */

/* Hero two-column layout */
.hero-main {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.hero-content {
  flex: 1;
  min-width: 0;
  max-width: none;
}

.hero-image-wrap {
  width: 380px;
  flex-shrink: 0;
  padding-top: 10px;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border: 3px solid var(--yellow);
  box-shadow: 8px 8px 0 var(--red);
  filter: grayscale(15%);
  background: #111;
}

.hero-img-label {
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', cursive;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  text-align: center;
}


/* Step images — edge-to-edge inside card, fixed height */
.step-img {
  width: calc(100% + 60px);
  margin: -40px -30px 22px -30px;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #2a2a2a;
  filter: grayscale(20%);
  background: #111;
}

/* ============================================
   SCROLL ANIMATIONS (set by JS)
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1000px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-main {
    flex-direction: column;
  }
  .hero-image-wrap {
    width: 100%;
    max-width: 500px;
    padding-top: 0;
  }
  .hero-img {
    height: 340px;
  }
  .included-not-grid {
    grid-template-columns: 1fr;
  }
  .steps-container {
    flex-direction: column;
  }
  .step-connector {
    flex-direction: row;
    padding: 10px 0;
    transform: rotate(90deg);
    align-self: flex-start;
    margin-left: 40px;
  }
  .step-img {
    width: calc(100% + 60px);
    margin: -40px -30px 24px -30px;
  }
}

@media (max-width: 768px) {
  header { padding: 14px 22px; }
  nav { display: none; }
  .logo { font-size: 1.7rem; }

  .hero { padding: 60px 25px 50px; }
  .starburst { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .problem { padding: 70px 25px; }
  .problem-grid { grid-template-columns: 1fr; }
  .how { padding: 70px 25px; }
  .packages { padding: 70px 25px; }
  .testimonials { padding: 70px 25px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta { padding: 70px 25px; }
  footer { padding: 45px 25px; }

  .guarantee-box { flex-direction: column; text-align: center; }
}
