/* ==========================================================================
   V3 Direct-Response Coach Funnel Stylesheet
   ========================================================================== */

/* ── 1. Variables & Reset ── */
:root {
  /* High-Contrast Colors */
  --c-white: #ffffff;
  --c-black: #0f172a;
  --c-dark: #1e293b;
  --c-yellow: #ffde00; /* Classic highlighter yellow */
  --c-red: #e11d48;    /* Urgency red */
  --c-green: #16a34a;  /* Success green */
  --c-blue: #2563eb;   /* Trust blue */
  --c-gray-100: #f1f5f9;
  --c-gray-200: #e2e8f0;
  --c-gray-800: #334155;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --spacing-section: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--c-black);
  background-color: var(--c-gray-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--c-blue);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ── Typography Utilities ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800; /* Extra bold for impact */
  line-height: 1.2;
}

.text-center { text-align: center; }
.text-red { color: var(--c-red); }
.text-blue { color: var(--c-blue); }

/* The classic yellow highlight */
.highlight {
  background: linear-gradient(180deg, transparent 50%, var(--c-yellow) 50%);
  padding: 0 4px;
  display: inline-block;
}

.highlight-solid {
  background-color: var(--c-yellow);
  color: var(--c-black);
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

section {
  padding: var(--spacing-section) 0;
}

/* ── Top Alert Bar ── */
.top-alert {
  background-color: var(--c-red);
  color: var(--c-white);
  text-align: center;
  padding: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── CTAs (Buttons) ── */
.cta-btn {
  display: inline-block;
  background-color: var(--c-green);
  color: var(--c-white) !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.4);
  transition: all 0.2s ease;
  border: 3px solid #14532d;
  animation: pulse-cta 2s infinite;
  text-align: center;
  width: 100%;
  max-width: 400px;
}
.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: #15803d;
}
.cta-subtext {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: var(--font-body);
  text-transform: none;
  margin-top: 5px;
  opacity: 0.9;
}

@keyframes pulse-cta {
  0% { transform: scale(1); box-shadow: 0 10px 20px rgba(22, 163, 74, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 15px 30px rgba(22, 163, 74, 0.6); }
  100% { transform: scale(1); box-shadow: 0 10px 20px rgba(22, 163, 74, 0.4); }
}

/* ── HERO SECTION ── */
.hero {
  background-color: var(--c-white);
  padding: 60px 0 0 0; /* No bottom padding, stats bar attached */
}
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-preheadline {
  display: inline-block;
  background-color: var(--c-black);
  color: var(--c-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.headline-desktop,
.headline-desktop span,
.headline-mobile span {
  display: block;
}

.headline-desktop span {
  white-space: nowrap;
}

.headline-mobile {
  display: none;
}

@media screen and (max-width: 900px) {
  .hero h1 .headline-desktop {
    display: none !important;
  }

  .hero h1 .headline-mobile {
    display: block !important;
    font-size: clamp(1.6rem, 7.6vw, 2.2rem);
  }

  .hero h1 .headline-mobile > span {
    display: block !important;
    white-space: nowrap;
  }
}

.hero-sub {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-gray-800);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-info-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  background: var(--c-white);
  padding: 15px 30px;
  border-radius: 8px;
  border: 2px solid var(--c-black);
  font-weight: 700;
  box-shadow: 4px 4px 0px var(--c-black);
}
.hero-info-strip del { color: var(--c-red); margin-left: 5px; }

.hero-visual {
  position: relative;
  max-width: 600px;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 5px solid var(--c-white);
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.live-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--c-red);
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Stats Bar */
.stats-bar {
  background-color: var(--c-black);
  color: var(--c-white);
  padding: 20px 0;
  margin-top: 40px;
}
.stats-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item {
  flex: 1;
  text-align: center;
  min-width: 150px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child {
  border-right: none;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--c-gray-200);
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
.stat-value.highlight-price {
  color: var(--c-yellow);
  font-size: 1.5rem;
}
.stat-value del {
  color: var(--c-red);
  font-size: 1rem;
  margin-left: 8px;
}

/* ── MARQUEE EFFECT ── */
.audience-strip {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.marquee-content {
  display: flex;
  flex-shrink: 0;
  animation: scroll-marquee 30s linear infinite;
}
@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ── SECTION TITLES ── */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* ── PAIN POINTS (Before/After) ── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.pain-card {
  background: var(--c-white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--c-gray-200);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.pain-card.success-card {
  border: 1px solid #bbf7d0; /* Very subtle green outline */
  background: var(--c-white);
}
.pain-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pain-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  font-weight: 500;
}
.icon-x { color: var(--c-red); font-weight: bold; }
.icon-check { color: var(--c-green); font-weight: bold; }

/* ── MODULES ── */
/* ── ROADMAP TIMELINE ── */
.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--c-gray-200);
}
.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}
.roadmap-item:last-child {
  margin-bottom: 0;
}
.roadmap-marker {
  width: 50px;
  height: 50px;
  background: var(--c-yellow);
  color: var(--c-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.roadmap-content {
  background: var(--c-white);
  padding: 25px 30px;
  border-radius: 8px;
  border: 1px solid var(--c-gray-200);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  flex: 1;
}
.roadmap-content .module-title {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--c-black);
}
.roadmap-content p {
  margin: 0;
  color: var(--c-gray-800);
  font-size: 0.95rem;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--c-white);
  color: var(--c-black);
  padding: 30px;
  border-radius: 0;
  border: 4px solid var(--c-black);
  box-shadow: 8px 8px 0px var(--c-black);
  text-align: left;
}

/* ── GALLERY ── */
.gallery-section {
  padding: 60px 0;
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.gallery-grid img {
  width: calc((100% - 40px) / 3);
  height: 350px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 12px;
  border: 4px solid var(--c-white);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .gallery-grid img {
    width: 100%;
    aspect-ratio: auto;
    height: auto;
    object-fit: initial;
  }
}

/* ── BONUS TICKETS ── */
.bonus-section {
  background-color: var(--c-dark);
  color: var(--c-white);
  padding-bottom: 80px;
}
.bonus-section .section-title {
  color: var(--c-white);
}
.ticket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}
.ticket {
  display: flex;
  background: #fff;
  color: var(--c-black);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.ticket-stub {
  width: 120px;
  background: var(--c-blue);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 2px dashed rgba(255,255,255,0.5);
  position: relative;
  padding: 20px 10px;
  text-align: center;
}
/* Perforations */
.ticket-stub::before, .ticket-stub::after {
  content: '';
  position: absolute;
  right: -10px;
  width: 20px;
  height: 20px;
  background: var(--c-dark);
  border-radius: 50%;
}
.ticket-stub::before { top: -10px; }
.ticket-stub::after { bottom: -10px; }

.stub-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.stub-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.ticket-main {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.ticket-main h3 {
  font-size: 1.5rem;
  color: var(--c-blue);
  margin-bottom: 10px;
}
.ticket-main p {
  font-weight: 500;
  color: var(--c-gray-800);
}
.ticket-value {
  margin-top: 15px;
  font-weight: 700;
  font-size: 1.1rem;
}
.ticket-value del {
  color: var(--c-red);
}
.free-stamp {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  border: 4px solid var(--c-red);
  color: var(--c-red);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  padding: 5px 15px;
  border-radius: 8px;
  text-transform: uppercase;
  opacity: 0.8;
}

.pricing-box {
  background: var(--c-white);
  border: 5px solid var(--c-yellow);
  border-radius: 12px;
  padding: 40px; /* Common padding */
  text-align: center;
  max-width: 700px;
  margin: -10px auto -10px auto;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.pricing-box h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.total-value-cross {
  font-size: 1.5rem;
  color: var(--c-red);
  text-decoration: line-through;
  font-weight: 700;
  margin-bottom: 5px;
}
.final-price {
  font-size: 4rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--c-black);
  line-height: 1;
  margin-bottom: 20px;
}
.final-price span {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: middle;
}

/* ── URGENCY / COUNTDOWN ── */
.urgency-bar {
  background: var(--c-red);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 20px;
}
.progress-container {
  background: var(--c-gray-200);
  border-radius: 10px;
  height: 20px;
  width: 100%;
  margin: 10px 0;
  overflow: hidden;
}
.progress-fill {
  background: var(--c-yellow);
  height: 100%;
  width: 85%;
}

/* ── SPECIFIC GRIDS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ── MEDIA QUERIES ── */
@media (max-width: 768px) {
  .headline-desktop { display: none; }
  .headline-mobile { display: block; }
  .headline-mobile span { white-space: nowrap; }
  #top-countdown,
  #countdown {
    white-space: nowrap;
  }
  #top-countdown {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.5px !important;
  }
  #countdown {
    font-size: clamp(1.25rem, 6vw, 1.8rem) !important;
    letter-spacing: 1px !important;
  }
  .hero-info-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 10px;
    padding: 10px;
    margin-bottom: 24px !important;
    font-size: 0.78rem;
    line-height: 1.2;
    box-shadow: 3px 3px 0 var(--c-black);
  }
  .hero-info-strip .info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    min-width: 0;
    text-align: left;
    white-space: nowrap;
  }
  .hero-info-strip .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 1.25rem;
    width: 1.25rem;
    font-size: 0.95rem;
  }
  body {
    padding-bottom: 75px; /* Space for sticky CTA */
  }
  .hero h1 { font-size: clamp(1.6rem, 7.6vw, 2.2rem); }
  .section-title { font-size: 1.8rem; margin-bottom: 30px; }
  #pain-points .section-title { font-size: 1.55rem; letter-spacing: -0.5px; white-space: nowrap; }
  .pricing-box { padding: 30px; margin: -10px auto -10px auto; }
  .final-price { font-size: 3rem; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-grid .section-title { text-align: center !important; }
  .about-image img { margin: 0 auto; }
  .about-list { text-align: left; }
  .stats-grid { flex-direction: column; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 10px 0; }
  .stat-item:last-child { border-bottom: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .ticket { flex-direction: column; }
  .ticket-stub { width: 100%; border-right: none; border-bottom: 2px dashed rgba(255,255,255,0.5); padding: 15px; flex-direction: row; gap: 15px; }
  .ticket-stub::before { left: -10px; top: auto; bottom: -10px; }
  .ticket-stub::after { right: -10px; top: auto; bottom: -10px; }
  .free-stamp { display: none; /* Hide on small screens if too crowded */ }
  
  .roadmap-timeline::before { left: 20px; }
  .roadmap-marker { width: 40px; height: 40px; font-size: 1.2rem; }
  .roadmap-item { gap: 15px; }
  .roadmap-content { padding: 20px; }
  
  /* Show mobile sticky CTA on mobile */
  .mobile-sticky-cta {
    display: flex !important;
  }
}

/* ── FLOATING ELEMENTS ── */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--c-black);
  padding: 15px 20px;
  display: none; /* Hidden on desktop, shown via media query */
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}
.sticky-price {
  line-height: 1.2;
}
.sticky-btn {
  background: var(--c-green);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 10px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.95rem;
  animation: pulse-cta 2s infinite;
}

/* ==========================================================================
   THANK YOU PAGE (BRUTALIST STYLE)
   ========================================================================== */

#confettiCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.thankyou-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}
.thankyou-page h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--c-black);
}
.ty-subtitle {
  font-size: 1.15rem;
  color: var(--c-gray-800);
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Success Check */
.ty-check {
  width: 90px;
  height: 90px;
  background: var(--c-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  border: 4px solid var(--c-black);
  box-shadow: 6px 6px 0px var(--c-black);
}
.ty-check svg {
  width: 45px;
  height: 45px;
  stroke: var(--c-white);
  stroke-width: 4;
  fill: none;
}

/* Brutalist Cards */
.ty-card, .ty-checklist {
  background: var(--c-white);
  border: 4px solid var(--c-black);
  box-shadow: 8px 8px 0px var(--c-black);
  padding: 35px;
  text-align: left;
  margin-bottom: 40px;
  border-radius: 0;
}
.ty-card h3, .ty-checklist h3 {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 25px;
  border-bottom: 3px dashed var(--c-gray-200);
  padding-bottom: 15px;
  color: var(--c-black);
}

/* Steps */
.ty-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}
.ty-step:last-child {
  margin-bottom: 0;
}
.ty-step-num {
  width: 40px;
  height: 40px;
  background: var(--c-yellow);
  border: 3px solid var(--c-black);
  color: var(--c-black);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--font-heading);
  box-shadow: 3px 3px 0px rgba(0,0,0,0.1);
}
.ty-step-text {
  font-size: 1.05rem;
  line-height: 1.5;
  padding-top: 5px;
}
.ty-step-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--c-black);
  margin-bottom: 4px;
}

/* Checklist */
.ty-checklist {
  background: #fdfbed; /* Very light yellow */
  border-color: var(--c-black);
}
.ty-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-gray-800);
}
.ty-checklist-item:last-child {
  margin-bottom: 0;
}
.cl-check {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--c-black);
  line-height: 1;
}

/* Countdown */
.ty-countdown {
  background: var(--c-black);
  color: var(--c-white);
  padding: 40px 20px;
  border: 4px solid var(--c-yellow);
  box-shadow: 8px 8px 0px var(--c-yellow);
  margin-bottom: 50px;
}
.ty-cd-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--c-yellow);
}
.ty-countdown .countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.ty-countdown .cd-item {
  display: flex;
  flex-direction: column;
}
.ty-countdown .cd-num {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  color: var(--c-white);
}
.ty-countdown .cd-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
  color: rgba(255,255,255,0.7);
}

/* WhatsApp CTA */
.ty-cta-group {
  margin-bottom: 60px;
}
.ty-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: var(--c-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 22px 45px;
  border: 4px solid var(--c-black);
  box-shadow: 8px 8px 0px var(--c-black);
  transition: all 0.2s ease;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.ty-wa-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 6px 6px 0px var(--c-black);
  color: var(--c-white);
}

/* Share Buttons */
.ty-share-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.ty-share-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  border: 3px solid var(--c-black);
  box-shadow: 4px 4px 0px var(--c-black);
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--c-black);
  transition: all 0.2s;
  border-radius: 0;
}
.ty-share-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--c-black);
}

/* Mobile Adjustments for TY Page */
@media (max-width: 768px) {
  .thankyou-page { padding: 50px 15px; }
  .thankyou-page h1 { font-size: 2rem; }
  .ty-subtitle { font-size: 1rem; }
  .ty-card, .ty-checklist { padding: 25px 20px; }
  .ty-step { flex-direction: column; gap: 10px; }
  .ty-countdown .countdown { gap: 15px; }
  .ty-countdown .cd-num { font-size: 2.2rem; }
  .ty-wa-btn { padding: 18px 20px; font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-content,
  .cta-btn,
  .sticky-btn {
    animation: none !important;
    transform: none !important;
  }
}
