/* =========================================================
   SPECIAL OFFER PAGE ONLY
   File: /assets/css/special-offer-page.css

   Scope rule:
   - Everything is scoped under body.special-offer-page
   - This stylesheet can’t impact any other page
   ========================================================= */

/* =========================================================
   1) HERO — Offer pill + urgency animation
   ========================================================= */

body.special-offer-page .hero .hero-offer-pill{
  display: inline-flex;
  align-items: center;
  gap: .55rem;

  width: fit-content;
  padding: .48rem .8rem;
  border-radius: 999px;

  font-weight: 900;
  letter-spacing: -0.01em;

  background: color-mix(in srgb, var(--surface-alt), transparent 35%);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 88%);
  box-shadow: 0 10px 22px rgba(6,30,37,.06);

  margin: 0 0 .85rem 0;
  position: relative;
  overflow: hidden;
}

/* Animated “urgent dot” (more urgency than a gentle pulse, still tasteful) */
body.special-offer-page .hero .hero-offer-pill::before{
  content:"";
  width: .58rem;
  height: .58rem;
  border-radius: 999px;

  background: var(--accent-color);
  box-shadow:
    0 0 0 .22rem color-mix(in srgb, var(--accent-color), transparent 82%),
    0 0 14px rgba(125,155,0,.22);

  animation: psOfferDot 1.35s ease-in-out infinite;
}

@keyframes psOfferDot{
  0%   { transform: scale(.92); opacity:.72; }
  35%  { transform: scale(1.14); opacity:1; }
  60%  { transform: scale(.98); opacity:.92; }
  100% { transform: scale(.92); opacity:.72; }
}

@media (prefers-reduced-motion: reduce){
  body.special-offer-page .hero .hero-offer-pill::before{
    animation: none !important;
  }
}


/* =========================================================
   2) HERO — Offer typography (headline + subcopy)
   ========================================================= */

body.special-offer-page .hero .hero-offer-title{
  font-size: clamp(2.05rem, 1.15rem + 3.1vw, 3.35rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 clamp(.65rem, .35rem + .6vw, .9rem) 0 !important;
  text-wrap: balance;
}

body.special-offer-page .hero .hero-offer-sub{
  font-size: clamp(1.05rem, .98rem + .35vw, 1.22rem) !important;
  line-height: 1.55 !important;
  color: color-mix(in srgb, var(--heading-color), var(--default-color) 35%) !important;
  margin: 0 0 clamp(.7rem, .55rem + .7vw, 1rem) 0 !important;
  max-width: 34rem;
}


/* =========================================================
   3) HERO — “Details panel” behind subcopy + bullets
   (This is what makes the text stand out from the image.)
   ========================================================= */

body.special-offer-page .hero .hero-offer-details{
  position: relative;
  border-radius: 1.15rem;

  padding: clamp(.85rem, .65rem + .9vw, 1.15rem);
  background: color-mix(in srgb, rgba(255,255,255,.92), var(--background-color, #EAF6FF) 25%);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 88%);
  box-shadow: 0 14px 36px rgba(6,30,37,.12);
  backdrop-filter: blur(.35rem);

  max-width: 36rem;
  overflow: hidden;

  display: grid;
  justify-items: start;
  gap: .75rem;
}

body.special-offer-page .hero .hero-offer-details::after{
  content:"";
  position:absolute;
  inset:-55% -45%;
  pointer-events:none;
  background: radial-gradient(circle at 18% 22%,
    rgba(255,255,255,.45),
    rgba(255,255,255,0) 58%);
  opacity:.55;
  transform: rotate(-10deg);
}


/* =========================================================
   4) HERO — Bullet “pill rows” (controlled width, not too wide)
   ========================================================= */

body.special-offer-page .hero .hero-offer-points{
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: .55rem;

  width: 100%;
  max-width: clamp(22rem, 56vw, 34rem); /* keeps bullets from running too far */
  margin-bottom: clamp(.65rem, .6rem + .6vw, 1.15rem); /* space before buttons */
}

body.special-offer-page .hero .hero-offer-points li{
  display: flex;
  align-items: center;
  gap: .65rem;

  width: 100%;
  padding: .55rem .75rem;
  border-radius: .9rem;

  background: color-mix(in srgb, #fff, var(--surface-alt) 30%);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  color: color-mix(in srgb, var(--default-color), transparent 8%);

  font-weight: 700;
  font-size: clamp(.98rem, .92rem + .2vw, 1.06rem);
  line-height: 1.25;
}

body.special-offer-page .hero .hero-offer-points li::before{
  content:"";
  width: .7rem;
  height: .7rem;
  border-radius: 999px;

  background: var(--accent-color);
  box-shadow: 0 0 0 .22rem color-mix(in srgb, var(--accent-color), transparent 82%);
  flex: 0 0 auto;
}


/* =========================================================
   5) HERO — CTA spacing + “button-like” secondary links
   ========================================================= */

body.special-offer-page .hero .hero-actions{
  margin-top: clamp(.95rem, .75rem + 1vw, 1.35rem) !important;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

/* Secondary CTAs styled like buttons (but keep your global .btn-primary intact) */
body.special-offer-page .hero .btn-learn-more{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  padding: .9rem 1.15rem;

  font-weight: 900;
  text-decoration: none;

  background: color-mix(in srgb, var(--surface-alt), #fff 35%);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 85%);
  box-shadow: 0 10px 22px rgba(6,30,37,.08);

  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

body.special-offer-page .hero .btn-learn-more:hover,
body.special-offer-page .hero .btn-learn-more:focus-visible{
  transform: translateY(-1px);
}


/* =========================================================
   6) ABOUT — emphasized offer phrase
   ========================================================= */

body.special-offer-page #about .about-emphasis{
  font-family: var(--heading-font) !important;
  font-weight: 900 !important;
  letter-spacing: -0.01em;
  color: var(--heading-color) !important;
  font-size: clamp(1.05em, 1em + .25vw, 1.18em) !important;
}


/* =========================================================
   7) FOOTER — social icons hover should NOT turn red
   (Transparent + subtle dim instead)
   ========================================================= */

body.special-offer-page .footer .social-links a:hover,
body.special-offer-page .footer .social-links a:focus-visible{
  background: transparent !important;
  color: inherit !important;
  opacity: .72;
  transform: translateY(-1px);
}