/* ═══════════════════════════════════════════════════════════════
   Design tokens
   ═══════════════════════════════════════════════════════════════ */
:root {
  --ink:          #1c1410;
  --ink-soft:     #3a2e26;
  --muted:        #7a6e64;
  --paper:        #fef7ec;
  --paper-warm:   #fffcf5;
  --panel:        #ffffff;
  --saffron:      #d4530c;
  --saffron-deep: #a83f08;
  --maroon:       #6b1521;
  --maroon-dark:  #4e0f18;
  --maroon-rich:  #7d1a27;
  --gold:         #b8881f;
  --gold-soft:    #fef0c0;
  --gold-bright:  #d4a820;
  --green-wa:     #128c3e;
  --green-wa-bg:  #e8f5ed;
  --line:         rgba(28, 20, 16, 0.12);
  --line-warm:    rgba(107, 21, 33, 0.14);

  --shadow-sm:   0 2px 8px rgba(28, 20, 16, 0.08);
  --shadow-md:   0 8px 28px rgba(28, 20, 16, 0.12);
  --shadow-lg:   0 20px 56px rgba(28, 20, 16, 0.16);
  --shadow-cta:  0 16px 44px rgba(107, 21, 33, 0.32);

  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  --font-body:  "Noto Sans Devanagari", system-ui, sans-serif;
  --font-gotu:  "Gotu", serif;
}

/* ═══════════════════════════════════════════════════════════════
   Reset & base
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 80% 50% at 96% 0%, rgba(212, 83, 12, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(107, 21, 33, 0.06) 0%, transparent 50%);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
p { margin-top: 0; }
h1, h2, h3 { margin-top: 0; }

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

/* ═══════════════════════════════════════════════════════════════
   Typography scale
   ═══════════════════════════════════════════════════════════════ */
.section-kicker {
  margin: 0 0 10px;
  color: var(--saffron);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-kicker.centered { text-align: center; }
.section-kicker.light    { color: rgba(255, 220, 160, 0.72); }

.section-title {
  margin-bottom: 18px;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.14;
}
.section-title.centered { text-align: center; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--saffron);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: var(--radius-xs);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #c44a08 0%, #5a1120 100%);
  box-shadow: 0 20px 52px rgba(107, 21, 33, 0.38);
}

.btn-secondary {
  color: var(--maroon);
  background: var(--paper-warm);
  border-color: var(--line-warm);
}
.btn-secondary:hover {
  border-color: rgba(212, 83, 12, 0.42);
  box-shadow: var(--shadow-md);
}

.btn-wa {
  color: var(--green-wa);
  background: var(--green-wa-bg);
  border-color: rgba(18, 140, 62, 0.2);
  font-weight: 800;
}
.btn-wa:hover {
  background: #d5ede0;
  border-color: rgba(18, 140, 62, 0.38);
  box-shadow: var(--shadow-md);
}

.btn-wa--final {
  margin-top: 16px;
  color: #fff;
  background: rgba(18, 140, 62, 0.18);
  border-color: rgba(18, 140, 62, 0.42);
}
.btn-wa--final:hover {
  background: rgba(18, 140, 62, 0.28);
}

.wa-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.wa-icon--sm { width: 15px; height: 15px; }

/* ═══════════════════════════════════════════════════════════════
   Header
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 12px clamp(18px, 4vw, 60px);
  background: rgba(254, 247, 236, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-family: var(--font-gotu);
  font-size: 17px;
  flex-shrink: 0;
}
.brand-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 140ms ease, background 140ms ease;
}
.main-nav a:hover { color: var(--maroon); background: rgba(107, 21, 33, 0.06); }

.nav-wa {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: var(--green-wa) !important;
}
.nav-wa:hover { background: var(--green-wa-bg) !important; }

.nav-cta {
  min-height: 38px;
  padding: 8px 16px !important;
  color: #fff !important;
  background: var(--maroon) !important;
  border-radius: var(--radius-xs) !important;
  box-shadow: 0 6px 18px rgba(107, 21, 33, 0.22);
}
.nav-cta:hover {
  background: var(--maroon-dark) !important;
  box-shadow: 0 10px 26px rgba(107, 21, 33, 0.32) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xs);
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  min-height: calc(100svh - 70px);
  padding: clamp(36px, 5vw, 72px) clamp(18px, 5vw, 72px);
}

.hero-text { max-width: 640px; }

.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(212, 83, 12, 0.1);
  border: 1px solid rgba(212, 83, 12, 0.2);
  margin-bottom: 20px;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(48px, 7.5vw, 86px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h1-sub {
  color: var(--maroon);
  display: block;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-hook {
  margin: 0 0 22px;
  padding: 12px 16px;
  border-left: 3px solid var(--saffron);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  background: rgba(212, 83, 12, 0.06);
  color: var(--maroon);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 700;
  line-height: 1.55;
}

.hero-lead {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.72;
  margin-bottom: 22px;
}

.hero-price-anchor {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 16px;
  background: var(--gold-soft);
  border: 1px solid rgba(184, 136, 31, 0.28);
  border-radius: var(--radius-xs);
}
.price-from {
  font-size: 32px;
  font-weight: 800;
  color: var(--maroon-dark);
  line-height: 1;
}
.price-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.trust-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-pills li {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

/* Hero visual */
.hero-visual { margin: 0; position: relative; }

.coin-stage {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #9b0f0d;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(107, 21, 33, 0.2);
  aspect-ratio: 1 / 1;
}
.coin-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   Countdown
   ═══════════════════════════════════════════════════════════════ */
.countdown-section {
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--maroon-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212, 83, 12, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.countdown-label {
  color: rgba(255, 220, 150, 0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
}

.countdown-clock {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
  position: relative;
}

.clock-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.clock-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 84px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
}
.clock-name {
  color: rgba(255, 220, 150, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.clock-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 40px;
  font-weight: 800;
  line-height: 84px;
  align-self: flex-start;
  padding: 0 4px;
  flex-shrink: 0;
}

.countdown-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
}
.countdown-sub strong { color: rgba(255, 220, 150, 0.9); }

/* ═══════════════════════════════════════════════════════════════
   Proof band
   ═══════════════════════════════════════════════════════════════ */
.proof-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-item {
  padding: 28px clamp(20px, 5vw, 64px);
}
.proof-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--maroon);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}
.proof-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.proof-divider {
  width: 1px;
  background: var(--line);
  margin: 24px 0;
}

/* ═══════════════════════════════════════════════════════════════
   Section base
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: clamp(48px, 6.5vw, 80px) clamp(18px, 5vw, 72px);
}

/* ═══════════════════════════════════════════════════════════════
   Press section
   ═══════════════════════════════════════════════════════════════ */
.press-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  background: #f9f4ec;
}

.press-copy h2 {
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.18;
  margin-bottom: 14px;
}
.press-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 10px;
}
.press-byline {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--maroon) !important;
  margin-bottom: 0 !important;
}

.press-fig {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.press-fig img { width: 100%; height: auto; }
.press-fig figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  background: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   Features
   ═══════════════════════════════════════════════════════════════ */
.feature-section { background: var(--paper); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.feature-card {
  padding: 24px 22px 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--line-warm);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-card:nth-child(1) { border-top-color: var(--saffron); }
.feature-card:nth-child(2) { border-top-color: var(--maroon); }
.feature-card:nth-child(3) { border-top-color: var(--gold); }
.feature-card:nth-child(4) { border-top-color: var(--saffron-deep); }

.feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--maroon-dark);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.35;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

/* ═══════════════════════════════════════════════════════════════
   Variants / Pricing
   ═══════════════════════════════════════════════════════════════ */
.variants-section {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.variants-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}
.variants-head .section-title { margin-bottom: 0; }
.variants-note {
  max-width: 380px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
  margin: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.price-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.price-card--featured {
  border-color: rgba(212, 83, 12, 0.5);
  background: linear-gradient(160deg, #fff9f0 0%, #fff4db 100%);
  box-shadow: 0 12px 42px rgba(212, 83, 12, 0.16);
  padding-top: 44px;
}
.price-card--featured:hover {
  box-shadow: 0 20px 58px rgba(212, 83, 12, 0.22);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 7px 10px;
  background: linear-gradient(90deg, var(--saffron), var(--maroon));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: 0;
}

.weight-label {
  font-size: 38px;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1;
  margin: 0 0 8px;
}

.price-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
  line-height: 1.35;
}
.card-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}

.price-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  margin: auto 0 18px;
  line-height: 1;
}

.btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--line-warm);
  background: var(--paper-warm);
  color: var(--maroon);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  gap: 6px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  width: 100%;
}
.btn-card:hover {
  border-color: rgba(212, 83, 12, 0.5);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.btn-card--featured {
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-cta);
}
.btn-card--featured:hover {
  background: linear-gradient(135deg, var(--saffron-deep), var(--maroon-dark));
  box-shadow: 0 16px 42px rgba(107, 21, 33, 0.36);
}

/* ═══════════════════════════════════════════════════════════════
   Product details
   ═══════════════════════════════════════════════════════════════ */
.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  background: var(--paper);
}

.product-copy .section-title { margin-bottom: 14px; }
.product-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.74;
  margin-bottom: 24px;
}

.spec-list {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel);
}
.spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.spec-row:last-child { border-bottom: none; }
.spec-row dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding-right: 12px;
}
.spec-row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.coin-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.coin-fig {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.coin-fig img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}
.coin-fig figcaption {
  padding: 11px 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--maroon);
  text-align: center;
  border-top: 1px solid var(--line);
}

/* ═══════════════════════════════════════════════════════════════
   Use cases
   ═══════════════════════════════════════════════════════════════ */
.use-section {
  background: #2a1e16;
  padding: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 72px);
}
.use-inner { max-width: 960px; }

.use-section h2 {
  color: #fff;
  font-size: clamp(22px, 3.2vw, 38px);
  margin-bottom: 24px;
}

.use-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.use-list li {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  transition: background 150ms ease, border-color 150ms ease;
}
.use-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

/* ═══════════════════════════════════════════════════════════════
   Testimonials
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background: var(--maroon);
  background-image:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(212, 83, 12, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(78, 15, 24, 0.6) 0%, transparent 55%);
}

.testimonials-section .section-title.light { color: rgba(255, 255, 255, 0.96); margin-bottom: 36px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  margin: 0;
  padding: 28px 26px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: Georgia, serif;
  font-size: 64px;
  color: rgba(212, 83, 12, 0.5);
  line-height: 1;
  pointer-events: none;
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.76;
  margin: 22px 0 20px;
  font-style: italic;
}

.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.testimonial-name {
  color: rgba(255, 220, 150, 0.9);
  font-size: 14px;
  font-weight: 800;
}
.testimonial-city {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   Purchase info
   ═══════════════════════════════════════════════════════════════ */
.purchase-section { background: #f9f4ec; }

.purchase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}
.purchase-head .section-title { margin-bottom: 4px; }
.purchase-head > p {
  max-width: 380px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  padding-top: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.info-card {
  padding: 22px 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}
.info-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--gold-soft);
  color: var(--maroon-dark);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}
.info-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-section { background: var(--panel); }

.faq-inner { max-width: 800px; }
.faq-inner .section-title { margin-bottom: 28px; }

.faq-list { display: grid; gap: 8px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-warm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 44px 16px 18px;
  color: var(--maroon);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--saffron);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 200ms ease;
}
.faq-item[open] > summary::after {
  content: '-';
  transform: translateY(-50%);
}
.faq-item[open] {
  border-color: rgba(212, 83, 12, 0.28);
  background: var(--panel);
}
.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
  background: rgba(212, 83, 12, 0.04);
}
.faq-item p {
  margin: 0;
  padding: 16px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   Final CTA
   ═══════════════════════════════════════════════════════════════ */
.final-cta {
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(125deg, rgba(78, 15, 24, 0.97) 0%, rgba(107, 21, 33, 0.94) 48%, rgba(168, 63, 8, 0.88) 100%),
    url("assets/coin-back-red-square.png") center / cover;
  background-blend-mode: multiply, normal;
}
.final-cta-inner { max-width: 900px; }

.light-eyebrow {
  color: rgba(255, 200, 100, 0.8);
  margin-bottom: 16px;
}

.final-cta h2 {
  font-size: clamp(28px, 4.5vw, 54px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.12;
}

.final-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.68;
  max-width: 680px;
  margin-bottom: 32px;
}

.checkout-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.checkout-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff 0%, #fef0c0 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  position: relative;
  overflow: hidden;
}
.checkout-btn:hover {
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.checkout-btn--featured {
  outline: 2px solid rgba(255, 200, 100, 0.7);
  outline-offset: 2px;
}

.checkout-popular {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 4px 8px;
  background: linear-gradient(90deg, var(--saffron), var(--maroon));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}
.checkout-btn--featured .checkout-weight { margin-top: 18px; }

.checkout-weight {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}
.checkout-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--maroon-dark);
  line-height: 1;
}
.checkout-cta {
  font-size: 12px;
  font-weight: 800;
  color: var(--saffron-deep);
  margin-top: 2px;
}

.final-microcopy {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  padding: 24px clamp(18px, 5vw, 72px) 18px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  max-width: 980px;
  margin: 0 auto 18px;
}
.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.footer-links a:hover {
  color: var(--maroon);
}
.footer-brand {
  font-size: 15px;
  font-weight: 800;
  color: var(--maroon);
  margin-bottom: 6px;
}
.site-footer p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.site-footer a {
  color: var(--maroon);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   Mobile sticky bar
   ═══════════════════════════════════════════════════════════════ */
.mobile-sticky { display: none; }

/* ═══════════════════════════════════════════════════════════════
   Legal / policy pages
   ═══════════════════════════════════════════════════════════════ */
.legal-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}
.legal-hero {
  margin-bottom: 24px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(255, 244, 219, 0.9)),
    radial-gradient(circle at 82% 18%, rgba(224, 105, 28, 0.14), transparent 22rem);
  box-shadow: var(--shadow-soft);
}
.legal-hero h1 {
  max-width: 820px;
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}
.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.legal-card {
  margin-bottom: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(54, 37, 18, 0.08);
}
.legal-card h2 {
  margin: 0 0 14px;
  color: var(--maroon);
  font-size: clamp(23px, 3vw, 32px);
}
.legal-card p,
.legal-card li,
.legal-card dd {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.legal-card p {
  margin: 0 0 12px;
}
.legal-card ul {
  margin: 0;
  padding-left: 20px;
}
.legal-card a {
  color: var(--maroon);
  font-weight: 800;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.legal-grid .legal-card {
  margin-bottom: 0;
}
.legal-dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.legal-dl div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.legal-dl dt {
  color: var(--ink);
  font-weight: 800;
}
.legal-dl dd {
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Thank you page (shared styles)
   ═══════════════════════════════════════════════════════════════ */
.thank-you-page {
  min-height: 100vh;
  background: var(--paper);
  background-image:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(212, 83, 12, 0.12), transparent 50%);
}
.thank-you-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 56px);
}
.thank-you-card {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
}
.thank-you-copy h1 {
  font-size: clamp(36px, 5.5vw, 66px);
  line-height: 1.06;
  margin-bottom: 14px;
}
.thank-you-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}
.thank-you-status {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}
.thank-you-status div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 2px 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-warm);
}
.thank-you-status span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-weight: 800;
}
.thank-you-status strong { font-size: 16px; }
.thank-you-status p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.thank-you-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.thank-you-visual {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(107, 21, 33, 0.18);
  background: #9b0f0d;
}
.thank-you-visual img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.thank-you-visual figcaption {
  padding: 12px 16px;
  background: var(--maroon);
  color: #fff;
  font-weight: 800;
  text-align: center;
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   Responsive - tablet (<=1080px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-grid     { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .checkout-row  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .hero           { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual    { max-width: 480px; margin: 0 auto; }
  .press-section  { grid-template-columns: 1fr; }
  .product-section { grid-template-columns: 1fr; }
  .thank-you-card  { grid-template-columns: 1fr; }
  .proof-band      { grid-template-columns: 1fr; }
  .proof-divider   { display: none; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .variants-head   { flex-direction: column; }
  .variants-note   { text-align: left; }
  .purchase-head   { flex-direction: column; }
  .purchase-head > p { padding-top: 0; }
  .coin-showcase   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ═══════════════════════════════════════════════════════════════
   Responsive - mobile (<=680px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 680px) {
  body { padding-bottom: 78px; }

  /* Header: hamburger on */
  .site-header { min-height: 60px; padding: 10px 16px; position: sticky; }
  .hamburger   { display: flex; }

  .main-nav {
    display: none;
    position: fixed;
    inset: 60px 0 0 0;
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(254, 247, 236, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--line);
    overflow-y: auto;
  }
  .main-nav.nav-open { display: flex; }
  .main-nav a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius-xs) !important;
  }

  /* Hero - single column on mobile */
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 16px 28px;
    min-height: auto;
  }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .coin-stage { aspect-ratio: 1 / 1; }
  .coin-stage img { width: 100%; height: 100%; object-fit: cover; }
  .hero-visual figcaption { display: none; }

  h1 { font-size: 36px; margin-bottom: 12px; }
  .hero-hook { font-size: 13px; margin-bottom: 14px; padding: 10px 13px; }
  .hero-lead { font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
  .hero-price-anchor { margin-bottom: 14px; }
  .price-from { font-size: 24px; }
  .hero-actions { gap: 8px; margin-bottom: 16px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-pills { display: flex; gap: 6px; }
  .trust-pills li { font-size: 11px; padding: 6px 10px; }

  /* Countdown */
  .clock-num { min-width: 60px; height: 68px; font-size: 32px; }
  .clock-sep { font-size: 28px; line-height: 68px; }

  /* Feature grid */
  .feature-grid, .info-grid, .testimonial-grid { grid-template-columns: 1fr; }

  /* Price grid */
  .price-grid { grid-template-columns: 1fr; }
  .price-card--featured { padding-top: 48px; }

  /* Product spec table */
  .spec-row { grid-template-columns: 1fr; gap: 2px; }
  .coin-showcase { grid-template-columns: 1fr 1fr; }

  /* Checkout row */
  .checkout-row { grid-template-columns: 1fr 1fr; }
  .checkout-btn { padding: 14px 12px; }
  .checkout-price { font-size: 20px; }

  /* Use cases list */
  .use-list li { font-size: 13px; padding: 10px 14px; }

  /* Footer */
  .site-footer { padding-bottom: 18px; }
  .footer-links {
    gap: 8px 12px;
  }
  .legal-page {
    width: min(100% - 28px, 1120px);
    padding: 28px 0 52px;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .legal-hero p {
    font-size: 16px;
  }

  /* Mobile sticky bar */
  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 60px;
    padding: 8px 8px 8px 14px;
    background: linear-gradient(135deg, rgba(78, 15, 24, 0.97), rgba(28, 20, 16, 0.95));
    border: 1px solid rgba(255, 220, 150, 0.2);
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }
  .sticky-label {
    flex: 1;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
  }
  .sticky-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    background: linear-gradient(135deg, var(--saffron), var(--maroon));
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    white-space: nowrap;
  }
  .sticky-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: var(--radius-xs);
    background: var(--green-wa-bg);
    color: var(--green-wa);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }
  .sticky-wa .wa-icon { width: 16px; height: 16px; }
}

@media (max-width: 400px) {
  .checkout-row { grid-template-columns: 1fr; }
  .clock-num { min-width: 50px; height: 60px; font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════════
   Final UI polish requested: centered sections, mobile nav removal,
   and stronger card design
   ═══════════════════════════════════════════════════════════════ */
.feature-grid {
  gap: 18px;
  margin-top: 30px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(107, 21, 33, 0.12);
  border-top: 0;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 241, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(212, 83, 12, 0.16), transparent 9rem);
  box-shadow: 0 16px 38px rgba(54, 37, 18, 0.08);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(212, 83, 12, 0.08);
}

.feature-card:hover {
  border-color: rgba(212, 83, 12, 0.28);
  box-shadow: 0 22px 54px rgba(54, 37, 18, 0.13);
}

.feature-num {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  color: #fff;
  box-shadow: 0 10px 24px rgba(107, 21, 33, 0.2);
}

.feature-card h3 {
  color: var(--maroon-dark);
}

.use-inner {
  margin: 0 auto;
  text-align: center;
}

.use-list {
  justify-content: center;
}

.faq-inner {
  margin: 0 auto;
  text-align: center;
}

.faq-list {
  gap: 10px;
  text-align: left;
}

.faq-item {
  box-shadow: 0 10px 28px rgba(54, 37, 18, 0.06);
}

@media (max-width: 680px) {
  .hamburger,
  .main-nav,
  .main-nav.nav-open {
    display: none !important;
  }

  .site-header {
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .feature-grid {
    gap: 14px;
    margin-top: 22px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 4px 14px;
    align-items: start;
    padding: 22px 20px;
  }

  .feature-num {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .feature-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
  }

  .feature-card p {
    font-size: 13.5px;
  }

  .price-card,
  .info-card,
  .testimonial-card,
  .faq-item {
    border-radius: var(--radius-md);
    box-shadow: 0 14px 36px rgba(54, 37, 18, 0.1);
  }

  .price-card {
    background: linear-gradient(180deg, #fff 0%, #fffaf1 100%);
    border-color: rgba(107, 21, 33, 0.12);
  }

  .use-section {
    padding: 34px 16px;
  }

  .use-section h2 {
    text-align: center;
    margin-bottom: 18px;
  }

  .use-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .use-list li {
    display: grid;
    place-items: center;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 12.5px;
    background: rgba(255, 255, 255, 0.09);
  }

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

  .faq-list {
    text-align: left;
  }

  .faq-item summary {
    padding: 15px 42px 15px 16px;
    font-size: 14px;
  }
}

/* Final booking area polish */
.final-cta-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.final-lead {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-row {
  max-width: 920px;
  margin: 26px auto 18px;
  gap: 12px;
}

.checkout-btn {
  position: relative;
  align-items: center;
  text-align: center;
  min-height: 132px;
  padding: 22px 16px 18px;
  border: 1px solid rgba(255, 235, 190, 0.55);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 224, 0.98));
  box-shadow: 0 14px 34px rgba(20, 10, 8, 0.18);
}

.checkout-btn:hover {
  border-color: rgba(255, 211, 129, 0.85);
  box-shadow: 0 20px 46px rgba(20, 10, 8, 0.26);
}

.checkout-btn--featured {
  border-color: rgba(255, 204, 112, 0.95);
  background:
    linear-gradient(180deg, #fff 0%, #fff2cf 100%);
  outline: 0;
  padding-top: 34px;
}

.checkout-popular {
  top: 10px;
  left: 50%;
  right: auto;
  width: max-content;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  box-shadow: 0 8px 20px rgba(78, 15, 24, 0.2);
  font-size: 10px;
}

.checkout-btn--featured .checkout-weight {
  margin-top: 6px;
}

.checkout-weight {
  color: var(--maroon);
  font-size: 14px;
  font-weight: 800;
}

.checkout-price {
  margin: 6px 0 4px;
  color: var(--maroon-dark);
  font-size: 30px;
}

.checkout-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-top: auto;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  font-size: 12px;
}

.btn-wa--final {
  margin-top: 8px;
}

@media (max-width: 680px) {
  .final-cta {
    padding: 38px 16px 44px;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  .checkout-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .checkout-btn {
    min-height: 118px;
    padding: 18px 10px 12px;
  }

  .checkout-btn--featured {
    padding-top: 26px;
  }

  .checkout-popular {
    top: -9px;
    max-width: calc(100% - 14px);
    padding: 4px 9px;
    font-size: 9px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .checkout-weight {
    font-size: 12.5px;
  }

  .checkout-price {
    font-size: 23px;
  }

  .checkout-cta {
    width: auto;
    min-height: 28px;
    padding: 6px 9px;
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .checkout-row {
    grid-template-columns: 1fr;
  }

  .checkout-btn {
    min-height: 104px;
  }
}

@media (max-width: 680px) {
  .checkout-btn {
    min-height: 138px !important;
    padding: 20px 10px 14px !important;
    gap: 4px !important;
  }

  .checkout-btn--featured {
    padding-top: 40px !important;
  }

  .checkout-popular {
    top: 10px !important;
    max-width: calc(100% - 12px) !important;
    padding: 5px 10px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .checkout-weight {
    font-size: 13px !important;
  }

  .checkout-price {
    font-size: 23px !important;
    margin: 4px 0 !important;
  }

  .checkout-cta {
    width: 100% !important;
    min-height: 38px !important;
    padding: 9px 12px !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
  }
}
