/* ============================================================
   The Home of Your Dreams — Sales Page Styles
   ============================================================ */

:root {
  --ivory: #F4EFE6;
  --cream: #EADFCB;
  --cream-deep: #E0D2BB;
  --caramel: #B8926A;
  --caramel-dark: #9A7752;
  --espresso: #2C2722;
  --charcoal: #3A352F;
  --soft-charcoal: #4A433B;
  --gold: #FBD077;
  --gold-deep: #D9A744;
  --taupe: #A89888;
  --sage: #7A8A6E;
  --terracota: #B85C38;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(44, 39, 34, 0.06);
  --shadow-md: 0 4px 24px rgba(44, 39, 34, 0.10);
  --shadow-lg: 0 12px 48px rgba(44, 39, 34, 0.18);
}

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

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

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--soft-charcoal);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--caramel-dark);
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.92) 0%, rgba(234, 223, 203, 0.85) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-pre {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--caramel-dark);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--caramel-dark);
  font-weight: 400;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 30px;
  color: var(--soft-charcoal);
  max-width: 560px;
}

.hero-cta-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.hero-mockup {
  position: relative;
}

.hero-mockup img {
  filter: drop-shadow(0 24px 40px rgba(44, 39, 34, 0.22));
  border-radius: 6px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--caramel-dark);
  color: var(--ivory);
  padding: 20px 36px;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(154, 119, 82, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(154, 119, 82, 0.45);
}

.btn-primary::after {
  content: '→';
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.25s;
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-large {
  padding: 24px 48px;
  font-size: 19px;
}

.btn-trust {
  font-size: 13px;
  color: var(--taupe);
  font-style: italic;
}

/* ============ SECTIONS ============ */
section {
  padding: 80px 0;
  position: relative;
}

.section-divider {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--caramel);
  margin: 0 auto 24px;
  position: relative;
}

.section-divider::after {
  content: '◆';
  position: absolute;
  left: 50%;
  top: -9px;
  transform: translateX(-50%);
  color: var(--caramel);
  background: var(--ivory);
  padding: 0 8px;
  font-size: 10px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--caramel-dark);
  text-align: center;
  margin-bottom: 12px;
}

h2.section-title {
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

h2.section-title em {
  font-style: italic;
  color: var(--caramel-dark);
  font-weight: 400;
}

.section-lead {
  text-align: center;
  font-size: 19px;
  color: var(--soft-charcoal);
  max-width: 680px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* ============ AGITATION ============ */
.bg-cream {
  background: var(--cream);
}

.pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 30px;
}

.pain {
  background: var(--ivory);
  padding: 32px 28px;
  border-radius: 6px;
  border-left: 3px solid var(--caramel);
  box-shadow: var(--shadow-sm);
}

.pain-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.pain-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--soft-charcoal);
}

/* ============ MECHANISM (3 codes) ============ */
.codes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 40px;
}

.code {
  text-align: center;
}

.code-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--caramel-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.code h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.code p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--soft-charcoal);
}

.code-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--caramel);
  box-shadow: var(--shadow-sm);
}

.code-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ STORYBRAND (Hayley) ============ */
.bg-espresso {
  background: var(--espresso);
  color: var(--ivory);
}

.bg-espresso h2 {
  color: var(--ivory);
}

.bg-espresso h2 em {
  color: var(--gold);
}

.bg-espresso .eyebrow {
  color: var(--gold);
}

.bg-espresso p {
  color: rgba(244, 239, 230, 0.85);
}

.bg-espresso .section-divider {
  background: var(--gold);
}

.bg-espresso .section-divider::after {
  background: var(--espresso);
  color: var(--gold);
}

.guide-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

.guide-photo img {
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.guide-text h2 {
  font-size: 34px;
  margin-bottom: 16px;
  text-align: left;
}

.guide-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.guide-plan {
  margin-top: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
}

.guide-plan-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.guide-plan-list {
  list-style: none;
}

.guide-plan-list li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--ivory);
}

.guide-plan-list li strong {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  margin-right: 8px;
}

/* ============ INSIDE GRID ============ */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.style-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  box-shadow: var(--shadow-sm);
}

.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-card::after {
  content: attr(data-name);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 39, 34, 0.85) 100%);
  color: var(--ivory);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  text-align: left;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.del {
  text-align: center;
  padding: 20px;
}

.del-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--caramel-dark);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.del p {
  font-size: 15px;
  color: var(--soft-charcoal);
  line-height: 1.5;
}

/* ============ BEFORE/AFTER ============ */
.ba-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 40px;
}

.ba-item img {
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

.ba-caption {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--soft-charcoal);
  margin-top: 14px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.ba-caption strong {
  color: var(--caramel-dark);
  font-style: normal;
  font-family: var(--sans);
}

/* ============ BONUS STACK ============ */
.bonus-section {
  background: #F7F1E6;
}

.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FDFAF3;
  padding: 48px 40px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184, 146, 106, 0.10);
}

.bonus-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel-dark);
  margin-bottom: 14px;
}

.bonus-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 560px;
  margin: 18px auto 22px;
}

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

.bonus-content {
  max-width: 560px;
}

.bonus-content h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 600;
}

.bonus-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--soft-charcoal);
  margin-bottom: 18px;
}

.bonus-value {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel-dark);
}

.bonus-value s {
  color: var(--taupe);
  font-weight: 400;
  margin-right: 8px;
}

.bonus-total {
  margin: 50px auto 0;
  max-width: 640px;
  text-align: center;
  padding: 36px;
  background: var(--ivory);
  border: 1px solid var(--caramel);
  border-radius: 6px;
}

.bonus-total .label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel-dark);
  margin-bottom: 8px;
}

.bonus-total .value {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1;
}

.bonus-total .value s {
  color: var(--taupe);
  font-weight: 400;
  font-size: 32px;
}

/* ============ PRICE / OFFER ============ */
.bg-cream-deep {
  background: var(--cream-deep);
}

.offer-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--ivory);
  padding: 60px 48px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.offer-anchor {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--taupe);
  text-decoration: line-through;
  margin-bottom: 12px;
}

.offer-price {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.offer-price small {
  font-size: 42px;
  font-weight: 400;
  vertical-align: top;
  line-height: 1.4;
  color: var(--caramel-dark);
}

.offer-currency {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--caramel-dark);
  margin-bottom: 28px;
}

.offer-savings {
  display: inline-block;
  background: var(--terracota);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 30px 0;
}

.cd-block {
  background: var(--espresso);
  color: var(--ivory);
  padding: 14px 18px;
  border-radius: 4px;
  min-width: 64px;
}

.cd-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.cd-lbl {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  color: rgba(244, 239, 230, 0.7);
}

.scarcity {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--soft-charcoal);
  margin-top: 12px;
}

/* ============ GUARANTEE ============ */
.guarantee-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  background: var(--cream);
  padding: 48px;
  border-radius: 8px;
}

.guarantee-block img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.guarantee-block h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.guarantee-block p {
  font-size: 16px;
  line-height: 1.6;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background: var(--ivory);
  padding: 32px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--caramel);
}

.testimonial-stars {
  color: var(--gold-deep);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.testimonial-author {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--soft-charcoal);
}

.testimonial-author strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* ============ FOR WHOM ============ */
.for-whom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.for-card {
  padding: 36px;
  border-radius: 6px;
}

.for-card.yes {
  background: rgba(122, 138, 110, 0.10);
  border-left: 3px solid var(--sage);
}

.for-card.no {
  background: rgba(184, 92, 56, 0.08);
  border-left: 3px solid var(--terracota);
}

.for-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.for-card.yes h3 {
  color: var(--sage);
}

.for-card.no h3 {
  color: var(--terracota);
}

.for-card ul {
  list-style: none;
}

.for-card li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}

.for-card.yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
  font-size: 18px;
}

.for-card.no li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--terracota);
  font-weight: 700;
  font-size: 18px;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
}

.faq {
  border-bottom: 1px solid var(--cream-deep);
  padding: 20px 0;
}

.faq summary {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  color: var(--caramel-dark);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--soft-charcoal);
}

/* ============ VALUE STACK INSIDE OFFER BOX ============ */
.offer-box-stack {
  text-align: center;
  max-width: 780px;
}

.offer-stack-image {
  margin: 0 auto 30px;
  max-width: 400px;
}

.offer-stack-image img {
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}

.stack-list {
  list-style: none;
  margin: 0 auto 8px;
  text-align: left;
}

.stack-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
}

.stack-list li:last-child {
  border-bottom: none;
}

.stack-item-name {
  flex: 1;
  color: var(--charcoal);
}

.stack-item-name strong {
  color: var(--charcoal);
  font-weight: 600;
  display: block;
}

.stack-item-name small {
  display: block;
  font-size: 13px;
  color: var(--soft-charcoal);
  margin-top: 2px;
  font-weight: 400;
}

.stack-item-value {
  font-family: var(--serif);
  color: var(--caramel-dark);
  font-weight: 600;
  font-size: 17px;
  white-space: nowrap;
}

.stack-totals {
  margin: 18px auto;
  padding: 18px 0 8px;
  border-top: 2px solid var(--caramel);
  text-align: left;
}

.stack-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding: 6px 0;
}

.stack-row.crossed {
  color: var(--taupe);
  text-decoration: line-through;
}

/* ============ CTA FINAL ============ */
.cta-final {
  position: relative;
  text-align: center;
  padding: 120px 0;
  background:
    linear-gradient(rgba(44, 39, 34, 0.78), rgba(44, 39, 34, 0.85)),
    url('../images/cta-final-bg.jpg') center/cover no-repeat;
  color: var(--ivory);
}

.cta-final h2 {
  color: var(--ivory);
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 18px;
}

.cta-final h2 em {
  color: var(--gold);
}

.cta-final p {
  font-size: 19px;
  color: rgba(244, 239, 230, 0.9);
  max-width: 640px;
  margin: 0 auto 32px;
}

.cta-final .btn-primary {
  background: var(--gold);
  color: var(--espresso);
  font-weight: 700;
}

.cta-final .btn-primary:hover {
  background: var(--gold-deep);
  color: var(--espresso);
}

.cta-final .btn-trust {
  color: rgba(244, 239, 230, 0.7);
  margin-top: 14px;
}

/* ============ PS ============ */
.ps-section {
  padding: 60px 0;
  background: var(--cream);
}

.ps-block {
  max-width: 720px;
  margin: 0 auto;
  background: var(--ivory);
  padding: 36px 40px;
  border-radius: 6px;
  border-left: 3px solid var(--caramel);
}

.ps-block p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--charcoal);
}

.ps-block p strong {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--caramel-dark);
  letter-spacing: 1px;
  margin-right: 6px;
}

/* ============ FOOTER ============ */
footer {
  padding: 40px 0;
  text-align: center;
  background: var(--espresso);
  color: rgba(244, 239, 230, 0.6);
  font-size: 13px;
}

footer a {
  color: var(--gold);
}

footer p {
  margin: 6px 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .styles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 40px;
    background-attachment: scroll;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-cta-block {
    align-items: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  section {
    padding: 60px 0;
  }

  .pains,
  .codes,
  .testimonials,
  .for-whom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .styles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus {
    padding: 32px 22px;
  }

  .bonus-content h3 {
    font-size: 23px;
  }

  .bonus-img {
    max-width: 100%;
  }

  .deliverables {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .guide-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guide-photo {
    max-width: 240px;
    margin: 0 auto;
  }

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

  .guarantee-block {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .guarantee-block img {
    margin: 0 auto;
  }

  .offer-box {
    padding: 40px 24px;
  }

  .offer-price {
    font-size: 64px;
  }

  .countdown {
    gap: 10px;
  }

  .cd-block {
    padding: 10px 12px;
    min-width: 54px;
  }

  .cd-num {
    font-size: 24px;
  }

  .cta-final {
    padding: 80px 0;
    background-attachment: scroll;
  }
}

@media (max-width: 600px) {
  .container,
  .narrow {
    padding: 0 18px;
  }

  .styles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .btn-primary {
    padding: 18px 28px;
    font-size: 15px;
    width: 100%;
  }

  .btn-large {
    padding: 20px 24px;
    font-size: 16px;
  }

  .offer-price {
    font-size: 56px;
  }

  .offer-price small {
    font-size: 32px;
  }

  .stack-list li {
    flex-direction: column;
    gap: 4px;
  }

  .stack-item-value {
    align-self: flex-end;
  }

  .ps-block {
    padding: 28px 24px;
  }

  .faq summary {
    font-size: 17px;
  }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

::selection {
  background: var(--caramel);
  color: var(--ivory);
}
