/* ==========================================================================
   STYLES.CSS - Landing Page for Igor Kheifets Free Book Offer
   Dark theme: #0f0f1a bg, white text, gold #F5A623, orange #FF6B35
   Fonts: 'Playfair Display' headings, 'Source Sans 3' body
   ========================================================================== */

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: #0f0f1a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Utility ===== */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container--sm {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container--xs {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.gold {
  color: #F5A623;
}

.italic {
  font-style: italic;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.375rem; }
  h4 { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }
}

/* ===== Pulse Animation ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ===== Sticky Header (Variant A — Improved Base) ===== */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 15, 26, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 166, 35, .25);
}

.sticky-bar__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.sticky-bar__left {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
}

.sticky-bar__pulse {
  width: 14px;
  height: 14px;
  color: #FF6B35;
  animation: pulse 2s ease-in-out infinite;
}

.sticky-bar__text {
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .04em;
  white-space: nowrap;
}

.sticky-bar__btn {
  display: inline-block;
  background: linear-gradient(135deg, #F5A623, #FF6B35);
  color: #0f0f1a;
  padding: .45rem 1.25rem;
  border-radius: .4rem;
  font-weight: 700;
  font-size: .8rem;
  transition: box-shadow .3s, transform .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-bar__btn:hover {
  box-shadow: 0 0 20px rgba(245, 166, 35, .35);
  transform: translateY(-1px);
}

/* Mobile: stack all 3 elements vertically, 1 per row */
@media (max-width: 639px) {
  .sticky-bar__inner {
    flex-direction: column;
    gap: .35rem;
    padding: .5rem .75rem;
  }
  .sticky-bar__left {
    width: 100%;
    justify-content: center;
  }
  .sticky-bar__btn {
    width: 50%;
    padding: .45rem 1.5rem;
    font-size: .75rem;
    text-align: center;
  }
}

/* Tablet+: single row */
@media (min-width: 640px) {
  .sticky-bar__inner {
    flex-wrap: nowrap;
    gap: 1.5rem;
  }
}

/* ===== Countdown ===== */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-shrink: 0;
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown__num {
  width: 2.75rem;
  height: 2.75rem;
  background: #1a1a2e;
  border: 1px solid rgba(245, 166, 35, .3);
  border-radius: .375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #F5A623;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
  .countdown__num {
    width: 3rem;
    height: 3rem;
    font-size: 1.35rem;
  }
}

@media (min-width: 768px) {
  .countdown__num {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.5rem;
  }
}

.countdown__label {
  font-size: .6rem;
  color: rgba(255, 255, 255, .45);
  margin-top: .15rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  padding: 9rem 0 4rem;
}

@media (min-width: 768px) {
  .hero { padding: 7rem 0 6rem; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 26, .6), rgba(15, 15, 26, .4), #0f0f1a);
  pointer-events: none;
}

.hero__glow1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(245, 166, 35, .08);
  border-radius: 50%;
  filter: blur(48px);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero__glow2 {
  position: absolute;
  top: 10rem;
  right: 5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 107, 53, .06);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
}

.hero__heading {
  margin: 2rem 0 5rem;
  text-wrap: balance;
}

/* Hero Grid */
.hero__grid {
  display: grid;
  gap: 0rem;
  align-items: center;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
.hero__grid {
	grid-template-columns: minmax(0, 40%) minmax(0, 60%);
	}
}

/* ===== Badge ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245, 166, 35, .15);
  color: #F5A623;
  padding: .5rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 600;
  border: 1px solid rgba(245, 166, 35, .3);
  margin-bottom: 1.5rem;
}

.badge svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px){
  .badge{
    margin-top: 3.5rem;   /* pushes badge below top ribbon */
    margin-bottom: .75rem; /* reduces space below on mobile */
  }
}
/* ===== Book Image ===== */
.book-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
}

.book-card {
  position: relative;
}

.book-card__glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to right, rgba(245, 166, 35, .2), rgba(255, 107, 53, .2));
  border-radius: 1rem;
  filter: blur(24px);
  transition: filter .5s;
}

.book-card:hover .book-card__glow {
  filter: blur(32px);
}

.book-card img {
  position: relative;
  width: 18rem;
  height: auto;
  border-radius: .5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
  transition: transform .5s;
  max-width: 100%;
}

@media (min-width: 768px) {
  .book-card img { width: 20rem; }
}

@media (min-width: 1024px) {
  .book-card img { width: 24rem; }
}

.book-card:hover img {
  transform: scale(1.02);
}

.book-card__badge {
  position: absolute;
  top: -.5rem;
  right: -.5rem;
  background: #FF6B35;
  color: #fff;
  padding: .10rem .25rem;
  border-radius: 9599px;
  font-size: .60rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .3);
}

/* ===== CTA Button ===== */
.cta-btn {
  display: block;
  width: 100%;
  background: linear-gradient(to right, #F5A623, #FF6B35);
  color: #0f0f1a;
  padding: 1.25rem 2rem;
  border-radius: .75rem;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2);
  transition: all .3s;
  text-align: center;
}

.cta-btn:hover {
  background: linear-gradient(to right, #e09520, #e55d2d);
  box-shadow: 0 0 30px rgba(245, 166, 35, .4);
  transform: translateY(-2px);
}

.cta-btn__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.cta-btn__main svg {
  width: 20px;
  height: 20px;
  transition: transform .3s;
}

.cta-btn:hover .cta-btn__main svg {
  transform: translateX(4px);
}

.cta-btn__sub {
  display: block;
  font-size: .875rem;
  font-weight: 400;
  margin-top: .25rem;
  color: rgba(15, 15, 26, .7);
}

/* ===== Trust Row ===== */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: .6;
  margin-top: 1.5rem;
}

.trust-row__item {
  display: flex;
  align-items: center;
  gap: .375rem;
}

.trust-row__item svg {
  width: 16px;
  height: 16px;
  color: #4ade80;
}

.trust-row__item span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
}
@media (max-width: 768px){
  .trust-row{
    flex-wrap: wrap;        /* allow wrapping */
    padding: 0 1rem;        /* keep content inside viewport */
    row-gap: .5rem;        /* tighten vertical spacing */
	margin-bottom: 2rem;
  }
}
/* ===== Section Shared ===== */
.section {
  position: relative;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}
.section--img{ position:relative; }
.section--img::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(15,15,26,1) 0%, rgba(15,15,26,1) 28%, rgba(15,15,26,0) 62%), var(--img) var(--pos, right center) / var(--size, cover) no-repeat;
  opacity: var(--opacity, .5);
  pointer-events:none;
  z-index: 2;
  filter: blur(0.6px);
  mask-image: linear-gradient(90deg,
  transparent 0%,
  rgba(0,0,0,0.0) 10%,
  rgba(0,0,0,0.15) 25%,
  rgba(0,0,0,0.45) 45%,
  rgba(0,0,0,0.75) 65%,
  rgba(0,0,0,1) 85%,
  rgba(0,0,0,1) 100%
);
-webkit-mask-image: linear-gradient(90deg,
  transparent 0%,
  rgba(0,0,0,0.0) 10%,
  rgba(0,0,0,0.15) 25%,
  rgba(0,0,0,0.45) 45%,
  rgba(0,0,0,0.75) 65%,
  rgba(0,0,0,1) 85%,
  rgba(0,0,0,1) 100%
);
}
.section--img .section__inner{ position:relative; z-index: 3; }

.section--bg-book   { --img: url("/assets/bookhands.png"); --pos: right center;  --size: 60%; --opacity: .20; }
.section--bg-booktable { --img: url("/assets/bookcoffeshopv2.png");  --pos: right bottom; --size: 40%;    --opacity: .20; }
.section--bg-bookd { --img: url("/assets/booksh.jpg");  --pos: 220% center;  --size: 80%; --opacity: .20; }

/* --- All Background Overlays: pointer-events: none so they don't block clicks --- */
.section__gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0f0f1a, rgba(26, 26, 46, .5), #0f0f1a);
  pointer-events: none;
}

.section__dark-bg {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, .4);
  pointer-events: none;
}

.section__dark-bg--light {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, .3);
  pointer-events: none;
}

.section__img-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section__img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section__img-bg--20 img { opacity: .2; }
.section__img-bg--15 img { opacity: .15; }
.section__img-bg--30 img { opacity: .3; }

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.overlay--80 { background: rgba(15, 15, 26, .8); }
.overlay--85 { background: rgba(15, 15, 26, .85); }
.overlay--70 { background: rgba(15, 15, 26, .7); }

.section__tag {
  color: #F5A623;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

/* --- section__inner sits above all backgrounds --- */
.section__inner {
  position: relative;
  z-index: 10;
}

/* ===== Card (Why Free Section) ===== */
.card {
  background: rgba(26, 26, 46, .8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 166, 35, .2);
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .card { padding: 3rem; }
}

.card__quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F5A623;
  font-style: italic;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .card__quote { font-size: 2rem; }
}

.card__text {
  color: rgba(255, 255, 255, .7);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ===== Ratings Row ===== */
.ratings-row {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

@media (min-width: 768px) {
  .ratings-row { gap: 3rem; }
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}

.rating__stars {
  display: flex;
  gap: 2px;
}

.rating__stars svg {
  width: 16px;
  height: 16px;
  fill: #F5A623;
  color: #F5A623;
}

.rating__score {
  font-family: 'Playfair Display', serif;
  color: #F5A623;
  font-weight: 700;
  font-size: 1.125rem;
}

.rating__platform {
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
}

/* ==========================================================================
   REVIEWS CAROUSEL - Shows ONLY ONE review at a time (not stacked)
   ========================================================================== */
.review-card {
  background: rgba(26, 26, 46, .8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1rem;
  padding: 2rem;
}

.review-card__viewport {
  overflow: hidden;
}

.review-card__track {
  display: flex;
  transition: transform 700ms ease-in-out;
  will-change: transform;
}

.review-card__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: .75rem;
}

.review-card__stars svg {
  width: 20px;
  height: 20px;
  fill: #F5A623;
  color: #F5A623;
}

.review-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.review-card__text {
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card__author {
  color: #F5A623;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===== Dots (shared carousel pagination) ===== */
.dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}

.dot {
  width: .625rem;
  height: .625rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .2);
  transition: all .3s;
  cursor: pointer;
}

.dot--active {
  background: #F5A623;
  width: 1.5rem;
}

.dot:hover {
  background: rgba(255, 255, 255, .4);
}

/* ===== Secrets Section ===== */
.secrets-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.secret-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(26, 26, 46, .6);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: .75rem;
  padding: 1rem;
  transition: border-color .3s;
}

.secret-item:hover {
  border-color: rgba(245, 166, 35, .2);
}

.secret-item svg {
  width: 20px;
  height: 20px;
  color: #F5A623;
  flex-shrink: 0;
  margin-top: 2px;
}

.secret-item p {
  color: rgba(255, 255, 255, .8);
  font-size: .875rem;
}

@media (min-width: 768px) {
  .secret-item p { font-size: 1rem; }
}

.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #F5A623;
  font-weight: 600;
  transition: color .3s;
  margin-top: 1.5rem;
}

.show-more-btn:hover {
  color: #FF6B35;
}

.show-more-btn svg {
  width: 16px;
  height: 16px;
}

/* ===== About The Author ===== */
.author-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .author-grid { grid-template-columns: 2fr 3fr; }
}

.author-img-wrap {
  position: relative;
}

.author-img-wrap__glow {
  position: absolute;
  inset: -.75rem;
  background: linear-gradient(135deg, rgba(245, 166, 35, .2), rgba(255, 107, 53, .1));
  border-radius: 1rem;
  filter: blur(24px);
}

.author-img-wrap img {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
  border: 1px solid rgba(245, 166, 35, .2);
}

.author-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.author-bio p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ==========================================================================
   ENDORSEMENTS CAROUSEL - Shows as 2-column grid pages (not stacked list)
   ========================================================================== */
.endorsements-viewport {
  overflow: hidden;
}

.endorsements-track {
  display: flex;
  transition: transform 700ms ease-in-out;
  will-change: transform;
}

.endorsements-page {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .endorsements-page { grid-template-columns: 1fr 1fr; }
}

.endorsement-card {
  background: rgba(26, 26, 46, .8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .75rem;
  padding: 1.5rem;
  transition: border-color .3s;
}

.endorsement-card:hover {
  border-color: rgba(245, 166, 35, .2);
}

.endorsement-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.endorsement-card__img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid rgba(245, 166, 35, .3);
  object-fit: cover;
}

.endorsement-card__name {
  font-family: 'Playfair Display', serif;
  color: #F5A623;
  font-weight: 700;
}

.endorsement-card__title {
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
}

.endorsement-card__quote {
  color: rgba(255, 255, 255, .8);
  font-style: italic;
  line-height: 1.7;
}

/* ==========================================================================
   ACCORDION (Who Is This Book For) - Animates open/close
   ========================================================================== */
.accordion-item {
  margin-bottom: .75rem;
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: .75rem;
  text-align: left;
  transition: all .3s;
  background: rgba(26, 26, 46, .4);
  border: 1px solid rgba(255, 255, 255, .05);
}

.accordion-btn:hover {
  border-color: rgba(245, 166, 35, .2);
}

.accordion-btn.active {
  background: rgba(26, 26, 46, .8);
  border-color: rgba(245, 166, 35, .3);
  box-shadow: 0 10px 15px -3px rgba(245, 166, 35, .05);
}

.accordion-btn__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
  background: rgba(245, 166, 35, .1);
}

.accordion-btn__icon svg {
  width: 20px;
  height: 20px;
  color: #F5A623;
  transition: color .3s;
}

.accordion-btn.active .accordion-btn__icon {
  background: linear-gradient(to right, #F5A623, #FF6B35);
}

.accordion-btn.active .accordion-btn__icon svg {
  color: #0f0f1a;
}

.accordion-btn__text {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  transition: color .3s;
}

@media (min-width: 768px) {
  .accordion-btn__text { font-size: 1.125rem; }
}

.accordion-btn.active .accordion-btn__text {
  color: #F5A623;
}

.accordion-btn__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, .3);
  transition: all .3s;
}

.accordion-btn.active .accordion-btn__chevron {
  color: #F5A623;
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s;
  opacity: 0;
}

.accordion-body.open {
  opacity: 1;
}

.accordion-body__inner {
  padding: .75rem 1.25rem 1.25rem 4.75rem;
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .accordion-body__inner { font-size: 1.125rem; }
}

/* ===== Bonuses Section ===== */
.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus-item {
  background: rgba(26, 26, 46, .8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .75rem;
  padding: 1.5rem;
  transition: border-color .3s;
}

.bonus-item:hover {
  border-color: rgba(245, 166, 35, .2);
}

.bonus-item__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bonus-item__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s;
  overflow: visible;
}

.bonus-item:hover .bonus-item__icon {
  background: transparent;
}

.bonus-item__icon svg {
  width: 24px;
  height: 24px;
  color: #F5A623;
}

.bonus-item__icon .icon-24 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.bonus-item__icon .icon-24 img {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: contain;
}

.bonus-item__content {
  flex: 1;
}

.bonus-item__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-bottom: .5rem;
  flex-wrap: wrap;
}

.bonus-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.bonus-item__value {
  color: #F5A623;
  font-weight: 700;
  font-size: 1.125rem;
  white-space: nowrap;
  margin-left: 1rem;
}

.bonus-item__desc {
  color: rgba(255, 255, 255, .6);
  font-size: .875rem;
  line-height: 1.6;
}
  /* Fix 1: description spans both columns — full card width */
  .bonus-item__desc {
    grid-column: 1 / 3;
    grid-row: 2;
    margin-top: 0.1rem;
  }
.bonus-item__tag {
  background: rgba(16, 185, 129, .2);
  color: #34d399;
  padding: .125rem .5rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ ACCORDION - Same animated open/close pattern
   ========================================================================== */
.faq-item {
  background: rgba(26, 26, 46, .8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .75rem;
  overflow: hidden;
  margin-bottom: .75rem;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  transition: background .3s;
}

.faq-btn:hover {
  background: rgba(255, 255, 255, .05);
}

.faq-btn.active {
  background: rgba(255, 255, 255, .03);
}

.faq-btn__q {
  font-weight: 600;
  font-size: .875rem;
  padding-right: 1rem;
  color: #fff;
}

@media (min-width: 768px) {
  .faq-btn__q { font-size: 1rem; }
}

.faq-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: all .3s;
  color: rgba(255, 255, 255, .4);
}

.faq-btn.active .faq-btn__icon {
  color: #F5A623;
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s;
  opacity: 0;
}

.faq-body.open {
  opacity: 1;
}

.faq-body__inner {
  padding: 0 1.25rem 1.25rem;
  color: rgba(255, 255, 255, .6);
  font-size: .875rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: 1rem;
}

/* ===== Mid CTA Quote ===== */
.mid-cta-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #F5A623;
  font-style: italic;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.cta-headline {
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}
/* ===== Footer ===== */
.footer {
  position: relative;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer__help {
  color: rgba(255, 255, 255, .4);
  font-size: .875rem;
  margin-bottom: .5rem;
}

.footer__help a {
  color: #F5A623;
}

.footer__help a:hover {
  text-decoration: underline;
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .3);
  font-size: .75rem;
  margin-bottom: 1rem;
}

.footer__links a:hover {
  color: rgba(255, 255, 255, .6);
}

.footer__copy {
  color: rgba(255, 255, 255, .2);
  font-size: .75rem;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal--left {
  transform: translateX(-50px);
}

.reveal--right {
  transform: translateX(50px);
}

.reveal--bottom {
  transform: translateY(40px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   RIBBON VARIANT B — Inverted Gold Banner
   Full gold/orange gradient background, dark text/timer, high contrast
   ========================================================================== */
.ribbon-b.sticky-bar {
  background: linear-gradient(135deg, #F5A623 0%, #FF6B35 50%, #F5A623 100%);
  border-bottom: none;
  box-shadow: 0 4px 24px rgba(245, 166, 35, .4);
}

.ribbon-b .sticky-bar__inner {
  max-width: 900px;
  gap: 1.25rem;
  padding: .7rem 1rem;
}

.ribbon-b .sticky-bar__left {
  gap: .5rem;
}

.ribbon-b .sticky-bar__pulse {
  color: #0f0f1a;
}

.ribbon-b .sticky-bar__text {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(15, 15, 26, .7);
}

.ribbon-b .countdown {
  gap: .4rem;
}

.ribbon-b .countdown__num {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(15, 15, 26, .85);
  border: none;
  border-radius: .4rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #F5A623;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.ribbon-b .countdown__label {
  font-size: .55rem;
  color: rgba(15, 15, 26, .6);
  margin-top: .15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ribbon-b .sticky-bar__btn {
  background: #0f0f1a;
  color: #F5A623;
  border-radius: .4rem;
  padding: .5rem 1.5rem;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.ribbon-b .sticky-bar__btn:hover {
  background: #1a1a2e;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .5);
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .ribbon-b .countdown__num {
    width: 3rem;
    height: 3rem;
    font-size: 1.35rem;
  }
}

@media (max-width: 639px) {
  .ribbon-b .sticky-bar__inner {
    gap: .5rem;
    padding: .5rem .75rem;
  }
  .ribbon-b .sticky-bar__left {
    flex-basis: 100%;
    justify-content: center;
  }
  .ribbon-b .countdown__num {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
  }
  .ribbon-b .sticky-bar__btn {
    padding: .4rem 1.2rem;
    font-size: .7rem;
  }
}

/* ==========================================================================
   RIBBON VARIANT C — Floating Notification Card
   Detached rounded card with shadow, not full-width, compact inline
   ========================================================================== */
.ribbon-c.sticky-bar {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 8px 12px 0;
}

.ribbon-c .sticky-bar__inner {
  max-width: 720px;
  gap: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.ribbon-c .sticky-bar__left { display: none; }

.ribbon-c .rc-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: rgba(15, 15, 26, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 166, 35, .25);
  border-radius: .75rem;
  padding: .55rem 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .04);
}

.ribbon-c .rc-text {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .45);
  white-space: nowrap;
  flex-shrink: 0;
}

.ribbon-c .rc-timer {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.ribbon-c .rc-timer > span {
  font-size: 1.2rem;
  font-weight: 800;
  color: #F5A623;
}

.ribbon-c .rc-unit {
  font-size: .65rem;
  font-weight: 500;
  color: rgba(245, 166, 35, .55);
  margin-right: .2rem;
}

.ribbon-c .rc-colon {
  font-size: .9rem;
  color: rgba(255, 255, 255, .2);
  margin: 0 .1rem;
  font-weight: 300;
}

.ribbon-c .sticky-bar__btn {
  margin-left: auto;
  background: linear-gradient(135deg, #F5A623, #FF6B35);
  color: #0f0f1a;
  border-radius: .5rem;
  padding: .4rem 1.1rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.ribbon-c .sticky-bar__btn:hover {
  box-shadow: 0 0 16px rgba(245, 166, 35, .4);
  transform: translateY(-1px);
}

@media (max-width: 599px) {
  .ribbon-c.sticky-bar {
    padding: 6px 8px 0;
  }
  .ribbon-c .rc-card {
    flex-wrap: wrap;
    justify-content: center;
    gap: .4rem;
    padding: .45rem .75rem;
    border-radius: .6rem;
  }
  .ribbon-c .rc-text {
    flex-basis: 100%;
    text-align: center;
    font-size: .6rem;
  }
  .ribbon-c .rc-timer > span {
    font-size: 1.05rem;
  }
  .ribbon-c .sticky-bar__btn {
    margin-left: 0;
    padding: .35rem 1rem;
    font-size: .65rem;
  }
}

/* ==========================================================================
   RIBBON VARIANT D — Two-Row Cinematic Banner
   Taller ribbon with headline row + timer/CTA row, premium feel
   ========================================================================== */
.ribbon-d.sticky-bar {
  background: linear-gradient(180deg, rgba(26, 26, 46, .98) 0%, rgba(15, 15, 26, .99) 100%);
  border-bottom: none;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, transparent, #F5A623, #FF6B35, #F5A623, transparent) 1;
}

.ribbon-d .sticky-bar__inner {
  max-width: 840px;
  flex-direction: column;
  gap: .35rem;
  padding: .6rem 1rem .65rem;
}

.ribbon-d .sticky-bar__left { display: none; }

.ribbon-d .rd-top {
  text-align: center;
}

.ribbon-d .rd-headline {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.ribbon-d .rd-headline span {
  color: rgba(255, 255, 255, .4);
  font-weight: 400;
  font-style: italic;
}

.ribbon-d .rd-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.ribbon-d .countdown {
  gap: .5rem;
}

.ribbon-d .countdown__num {
  width: 2.6rem;
  height: 2.6rem;
  background: linear-gradient(180deg, rgba(245, 166, 35, .15), rgba(255, 107, 53, .08));
  border: 1px solid rgba(245, 166, 35, .3);
  border-radius: .35rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #F5A623;
}

.ribbon-d .countdown__label {
  font-size: .5rem;
  color: rgba(245, 166, 35, .5);
  margin-top: .1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

.ribbon-d .sticky-bar__btn {
  background: linear-gradient(135deg, #F5A623, #FF6B35);
  color: #0f0f1a;
  border-radius: .4rem;
  padding: .5rem 2rem;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}

.ribbon-d .sticky-bar__btn:hover {
  box-shadow: 0 0 24px rgba(245, 166, 35, .4);
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .ribbon-d .rd-headline {
    font-size: 1.1rem;
  }
  .ribbon-d .countdown__num {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.25rem;
  }
}

@media (max-width: 639px) {
  .ribbon-d .sticky-bar__inner {
    gap: .3rem;
    padding: .45rem .75rem .5rem;
  }
  .ribbon-d .rd-headline {
    font-size: .78rem;
  }
  .ribbon-d .rd-bottom {
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ribbon-d .countdown__num {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 1rem;
  }
  .ribbon-d .sticky-bar__btn {
    padding: .4rem 1.5rem;
    font-size: .7rem;
  }
}

/* ==========================================================================
   RIBBON VARIANT E — Ultra-Minimal Single Line
   Barely-there slim bar, pure inline text timer, CTA as styled link
   ========================================================================== */
.ribbon-e.sticky-bar {
  background: rgba(15, 15, 26, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ribbon-e .sticky-bar__inner {
  max-width: 960px;
  gap: 0;
  padding: .4rem 1rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.ribbon-e .sticky-bar__left { display: none; }
.ribbon-e .countdown { display: none; }
.ribbon-e .sticky-bar__btn { display: none; }

.ribbon-e .re-line {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ribbon-e .re-clock {
  font-size: .85rem;
  opacity: .5;
  line-height: 1;
}

.ribbon-e .re-timer {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  font-variant-numeric: tabular-nums;
  letter-spacing: .03em;
}

.ribbon-e .re-timer span:not(.re-sep) {
  font-weight: 800;
  color: #F5A623;
  font-size: 1rem;
}

.ribbon-e .re-sep {
  color: rgba(255, 255, 255, .15);
  margin: 0 .15rem;
  font-weight: 300;
}

.ribbon-e .re-divider {
  width: 1px;
  height: .85rem;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0;
}

.ribbon-e .re-link {
  font-size: .78rem;
  font-weight: 600;
  color: #F5A623;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 166, 35, .3);
  padding-bottom: 1px;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
}

.ribbon-e .re-link:hover {
  color: #FF6B35;
  border-bottom-color: #FF6B35;
}

@media (max-width: 479px) {
  .ribbon-e .re-line {
    gap: .4rem;
  }
  .ribbon-e .re-timer {
    font-size: .8rem;
  }
  .ribbon-e .re-timer span:not(.re-sep) {
    font-size: .9rem;
  }
  .ribbon-e .re-divider {
    display: none;
  }
  .ribbon-e .re-link {
    font-size: .7rem;
  }
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.card-checkout-page,.card-checkout-page .card-body,.card-checkout-page .card-header,.checkout-modal .modal-content {
  border-radius: 0;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px
}

@media (max-width: 554px) {
  .checkout-modal .modal-dialog {
      align-items:unset;
      margin: 0
  }

  .checkout-modal .modal-content {
      min-height: 100vh;
      border: 0
  }
}

.card-checkout-page .card-header,.checkout-modal .modal-header {
  height: 93px;
  background-color: #07080a;
  border-bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-top: 33px;
  padding-bottom: 33px
}

.card-checkout-page .card-header h5,.checkout-modal .modal-header h5 {
  font-size: 18px;
  font-family: Montserrat,sans-serif;
  color: #ffe179
}

.card-checkout-page .card-header .header-step,.checkout-modal .modal-header .header-step {
  text-align: center;
  font-size: 17.5px;
  display: block;
  width: 100%
}

.card-checkout-page .card-header .header-step li span,.checkout-modal .modal-header .header-step li span {
  width: 27px;
  height: 27px
}

.checkout-modal .modal-header .close {
  text-shadow: none;
  color: #fff;
  opacity: 1;
  font-weight: 100;
  position: absolute;
  right: 11px;
  top: 11px
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.checkout-modal .modal-header .close:focus {
  outline: 0
}

.checkout-modal .modal-header .close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus {
  color: #fff
}

.card-checkout-page .card-body,.checkout-modal .modal-body {
  background-color: #f8f9fb;
  padding: 0
}

.card-checkout-page .card-footer,.checkout-modal .modal-footer {
  border-top: 1px solid rgba(127,127,127,.16)
}

.modal-footer {
  display: none
}
.font-weight-bold {
  font-weight: 700 !important;
}
.text-center {
  text-align: center !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.formkit-form .input-text {
  font-family: InterVariable !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5 !important;
  letter-spacing: normal;
  color: #757575 !important;
  width: 100% !important;
  height: 48px !important;
  background-color: #fff !important;
  padding: 12px 20px;
  border-radius: 4px !important;
  border: solid 1px #ddd !important;
}
.icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap img {
  width: 28px;
  height: 28px;
}
#payment .place-order .button{
  height: 56px;
  padding: 20px 16px;
  border-radius: 6px;
  background-color: #fec856;
  border: 0;
  width: 100%;
  display: block;
  transition: all linear .3s;
  cursor: pointer;
  font-family: InterVariable;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #08022f
}

#payment .place-order .button:focus,#payment .place-order .button:hover {
  background-color: #efbe55
}

#payment .place-order .button:disabled {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: .5;
  cursor: not-allowed
}
#payment #place_order {
  font-weight: 600
}

.form-control.is-invalid{
  border-color: red !important;
}

.form-control.is-valid{
  border-color: green !important;
}
.d-block{
  display: block;
}
.d-none{
  display: none;
}
@media (min-width: 992px) {
  .d-lg-none{
    display: none;
  }
  .d-lg-block{
    display: block;
  }
}
.m-0{
  margin: 0 !important;
}
.text-center{
  text-align: center !important;
}

/* ===== Mobile-only fixes for screenshot issues ===== */
@media (max-width: 767px) {

  /* Prevent white overscroll flash on iOS (Screenshot 4) */
  html {
    background-color: #0f0f1a;
    overscroll-behavior: none;
  }

  /* Hero: tighten top padding (sticky bar is ~8.5rem tall stacked on mobile) */
  .hero {
    padding: 6rem 0 2.5rem;
  }
  /* Hero heading: !important needed to override inline style="margin-bottom:4rem" */
  .hero__heading {
    margin-top: 0.75rem !important;
    margin-bottom: 1.5rem !important;
  }
  .hero__content > .text-center {
    margin-bottom: 0.75rem !important;
  }

  /* Hero grid: space between book/ratings and video sections */
  .hero__grid {
    gap: 2rem;
  }

  /* Screenshot 3: Text cut off in "Why Free" section — negative margin-left
     pushes content off-screen on mobile. Also hide bg image. */
  .section--bg-book .section__inner .text-left,
  .section--bg-book .section__inner .card__quote,
  .section--bg-book .section__inner .card__text {
    margin-left: 0 !important;
    max-width: 100% !important;
  }
  .section--img.section--bg-book::before {
    display: none;
  }

  /* Screenshot 4: White background flash on scroll — html bg + overscroll
     handled above. Also hide mismatched section--bg-bookhands pseudo. */
  .section--img.section--bg-bookhands::before {
    display: none;
  }

  /* Screenshot 5: Background image not adjusted on About Author +
     Why Email List sections — hide on mobile per instructions */
  .section--img.section--bg-booktable::before,
  .section--img.section--bg-bookd::before {
    display: none;
  }

  /* CTA button: reduce font so "YES! RUSH MY FREE COPY NOW!" fits on one line */
  .cta-btn {
    font-size: 0.8rem;
    padding: 0.85rem 1rem;
  }
  .cta-btn__main {
    gap: 0.35rem;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .cta-btn__main svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
  }

  /* WHY FREE section: inline style margin-top:-3rem / margin-bottom:-3rem
     causes sections to stack on top of each other on mobile */
  .section--bg-book {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Accordion body: 4.75rem left padding is too wide on small screens */
  .accordion-body__inner {
    padding-left: 1.25rem;
    padding-right: 1rem;
  }

  /* Ratings row: reduce gap and distribute evenly across mobile width */
  .ratings-row {
    gap: 1rem;
    width: 100%;
    justify-content: space-around;
  }

  /* Sections: reduce vertical padding on mobile for better flow */
  .section {
    padding: 3rem 0;
  }

  /* Author image: cap height so it doesn't dominate on mobile */
  .author-img-wrap img {
    max-height: 320px;
    object-fit: cover;
    object-position: top;
  }

  /* Book card: scale down slightly on small phones */
  .book-card img {
    width: 14rem;
  }

  /* Bonus item: clip overflow */
  .bonus-item {
    overflow: hidden;
  }

  /* Bonus item inner: 2-row grid for mobile
     Row 1 → [image 20%] [headline 1fr] [price+included 28%]
     Row 2 → [body text — spans all 3 columns]
     • 20% image col (reduced from 24% — frees more width for headline)
     • 1fr headline takes all remaining room
     • 28% price col gives enough width for "$997.00" + INCLUDED badge
     • column gap tightened from 0.65rem → 0.4rem */
  .bonus-item__inner {
    display: grid;
    grid-template-columns: 20% 1fr 28%;
    align-items: center;
    gap: 0.75rem 0.4rem;
    overflow: hidden;
  }

  /* Flatten .bonus-item__content so its children participate directly in the grid */
  .bonus-item__content {
    display: contents;
  }

  /* Row 1, col 1: image — left-aligned to touch the card edge */
  .bonus-item__icon {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-width: unset;
    height: auto;
    flex-shrink: unset;
    align-self: center;
    justify-self: start;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .bonus-item__icon .icon-24 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: auto;
  }
  .bonus-item__icon .icon-24 img {
    width: 100%;
    height: auto;
    max-width: 4.5rem;
    max-height: 4.5rem;
    object-fit: contain;
    display: block;
  }

  /* Row 1, col 2: headline — pushed to top of cell */
  .bonus-item__header {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-bottom: 0;
    min-width: 0;
  }

  /* Bonus headline: larger on mobile for readability */
  .bonus-item__title {
    font-size: 1rem;
    min-width: 0;
    text-align: center;
    line-height: 1.35;
  }

  /* Row 2: body text spans all 3 columns */
  .bonus-item__desc {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  /* Row 1, col 3: price + INCLUDED tag */
  .bonus-item__inner > .text-center {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }

  /* Price value: fits comfortably in the 28% column — no wrapping needed */
  .bonus-item__inner > .text-center .bonus-item__value {
    font-size: 0.85rem;
    white-space: nowrap;
    text-align: center;
  }

  /* INCLUDED tag */
  .bonus-item__tag {
    flex-shrink: 0;
  }

  /* Section inner: ensure proper horizontal padding */
  .section__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Card: tighten padding on mobile */
  .card {
    padding: 1.5rem 1.25rem;
  }

  /* Review card: tighten padding on mobile */
  .review-card {
    padding: 1.5rem 1.25rem;
  }

  /* Endorsement card: tighten padding */
  .endorsement-card {
    padding: 1.25rem;
  }

  /* Hero heading: prevent text from clipping against section overflow:hidden */
  .hero__heading {
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .hero__content {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  /* Author section: clip the glow pseudo-element that bleeds outside the section */
  .author-img-wrap {
    overflow: hidden;
    border-radius: 1rem;
  }
  .author-grid {
    overflow: hidden;
  }

  /* card__quote: scale down for mobile so it fits cleanly — user request */
  .card__quote {
    font-size: 1.05rem !important;
    line-height: 1.5;
    text-align: left;
  }

  /* Task 3: Badge — shrink so "#1 AMAZON BEST-SELLING AUTHOR DIVULGES..." fits 1 line */
  .badge {
    font-size: 0.68rem;
    padding: 0.4rem 0.75rem;
    gap: 0.3rem;
    white-space: nowrap;
  }
  .badge svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
  }

  /* Task 4: White box artifact on scroll — disable backdrop-filter (iOS rendering bug)
     and hide hero glow elements that bleed during momentum scroll */
  .review-card,
  .endorsement-card,
  .bonus-item,
  .card,
  .faq-item,
  .accordion-btn {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hero__glow1,
  .hero__glow2 {
    display: none;
  }

  /* Task 5: Final CTA headline — reduce size so it wraps to ~3 clean rows */
  .container--xs.text-center h2 {
    font-size: 1.35rem;
    line-height: 1.35;
  }

  /* Hero trust: merge two divs into one flex flow on mobile (2+2+1) */
  .hero-trust-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem 1.5rem;
    opacity: .6;
    margin-top: 1.5rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  .hero-trust-wrap .hero-trust {
    display: contents;
  }
}