/* ─────────────────────────────────────────────
   SHEGO PR — Main Stylesheet
   ───────────────────────────────────────────── */

:root {
  --black: #050505;
  --white: #FAFAF5;
  --cream: #F5F0E8;
  --gold: #D4A843;
  --gold-light: #F0C96A;
  --red: #E03030;
  --dark: #111108;
  --mid: #1A1A14;
  --border: rgba(212,168,67,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .5;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
}

.logo span { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,67,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 80%, rgba(224,48,48,0.07) 0%, transparent 60%);
}

.hero-eyebrow {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 .accent { color: var(--gold); }
.hero h1 .italic { font-family: 'DM Serif Display', serif; font-style: italic; color: var(--cream); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(250,250,245,0.65);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.outlet-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 0.8s 0.25s ease both;
}

.outlet-pill {
  border: 1px solid rgba(212,168,67,0.3);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,245,0.55);
}

.hero-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  width: 100%;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.hero-form input::placeholder { color: rgba(250,250,245,0.35); }
.hero-form input:focus { border-color: var(--gold); }

.hero-form button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.hero-form button:hover { background: var(--gold-light); }

.guarantee-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(250,250,245,0.4);
  letter-spacing: 0.05em;
  animation: fadeUp 0.8s 0.35s ease both;
}

/* ── LOGOS BAR ── */
.logos-bar {
  background: var(--mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 5%;
  text-align: center;
}

.logos-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,245,0.35);
  margin-bottom: 18px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.outlet-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: rgba(250,250,245,0.35);
  transition: color 0.2s;
}
.outlet-name:hover { color: var(--gold); }

/* ── SECTION UTILITY ── */
section { padding: 100px 5%; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.section-h2 em { font-family: 'DM Serif Display', serif; font-style: italic; color: var(--gold); }

.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
}

/* ── BEFORE / AFTER ── */
.ba-section { background: var(--dark); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.ba-card {
  padding: 40px 36px;
  position: relative;
}

.ba-card.before { background: #1A1410; border: 1px solid rgba(255,255,255,0.06); }
.ba-card.after  { background: #121A10; border: 1px solid rgba(212,168,67,0.25); }

.ba-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.ba-card.before .ba-label { color: rgba(250,250,245,0.3); }
.ba-card.after  .ba-label { color: var(--gold); }

.ba-list { list-style: none; }
.ba-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.4;
}
.ba-list li:last-child { border-bottom: none; }
.ba-card.before .ba-list li { color: rgba(250,250,245,0.5); }
.ba-card.after  .ba-list li { color: var(--cream); }
.check { color: var(--gold); font-size: 1.1rem; }
.cross { color: rgba(250,250,245,0.25); font-size: 1.1rem; }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.step-card {
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.step-card:hover { border-color: var(--gold); }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(212,168,67,0.1);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.step-desc { color: rgba(250,250,245,0.55); font-size: 0.92rem; line-height: 1.65; }

/* ── PACKAGES ── */
.packages-section { background: var(--dark); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.pkg-card {
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 44px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.pkg-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.pkg-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1C1A0E 0%, var(--mid) 100%);
}

.pkg-badge {
  position: absolute;
  top: -1px; right: 32px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
}

.pkg-tier {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pkg-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.pkg-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 6px;
}

.pkg-price sub {
  font-size: 1.2rem;
  vertical-align: middle;
  color: rgba(212,168,67,0.6);
  margin-right: 2px;
}

.pkg-desc {
  color: rgba(250,250,245,0.5);
  font-size: 0.85rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

.pkg-features { list-style: none; margin-bottom: 36px; flex: 1; }
.pkg-features li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  color: rgba(250,250,245,0.75);
  display: flex;
  gap: 10px;
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li .check { font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }

.pkg-btn {
  display: block;
  text-align: center;
  padding: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.pkg-btn.outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.pkg-btn.outline:hover { background: var(--gold); color: var(--black); }
.pkg-btn.solid { background: var(--gold); color: var(--black); }
.pkg-btn.solid:hover { background: var(--gold-light); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.testi-card {
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 36px 32px;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testi-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250,250,245,0.8);
  margin-bottom: 24px;
  font-style: italic;
}

.testi-quote strong { color: var(--cream); font-style: normal; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), #8B6A1A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--black);
  flex-shrink: 0;
}

.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-role { font-size: 0.78rem; color: rgba(250,250,245,0.4); }

/* ── COUNTER ── */
.counter-section {
  background: var(--gold);
  padding: 60px 5%;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.counter-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}

.counter-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(5,5,5,0.65);
}

/* ── FAQ ── */
.faq-section { background: var(--dark); }

.faq-list { max-width: 760px; margin: 60px auto 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: rgba(250,250,245,0.55);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── GUARANTEE ── */
.guarantee-section {
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guarantee-box {
  max-width: 680px;
  margin: 0 auto;
}

.guarantee-badge {
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 2.4rem;
}

/* ── FINAL CTA ── */
.final-cta {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,168,67,0.12) 0%, transparent 70%);
  text-align: center;
  padding: 120px 5%;
}

.final-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}

.final-cta h2 em { font-family: 'DM Serif Display', serif; font-style: italic; color: var(--gold); }

.cta-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto 16px;
  gap: 0;
}

.cta-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
}
.cta-form input::placeholder { color: rgba(250,250,245,0.35); }
.cta-form input:focus { border-color: var(--gold); }

.cta-form button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.cta-form button:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 40px 5%;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-logo span { color: rgba(250,250,245,0.4); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(250,250,245,0.4);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(250,250,245,0.25);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .ba-grid { grid-template-columns: 1fr; }
  .hero-form, .cta-form { flex-direction: column; }
  .hero-form input, .cta-form input { border-right: 1px solid var(--border); border-bottom: none; }
  .hero-form button, .cta-form button { width: 100%; }
  nav .nav-cta { display: none; }
}


/* ═══════════════════════════════════════════════
   CHECKOUT PAGE STYLES
   ═══════════════════════════════════════════════ */

/* ── NAV HELP LINK ── */
.nav-help {
  font-size: 0.8rem;
  color: rgba(250,250,245,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-help a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.nav-help a:hover { text-decoration: underline; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 14px 5%;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,250,245,0.6);
}
.trust-item .ti {
  color: var(--gold);
  font-size: 1rem;
}

/* ── CHECKOUT HERO ── */
.checkout-hero {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 52px 5% 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.checkout-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(212,168,67,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}
.checkout-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 14px;
  animation: fadeUp 0.6s 0.08s ease both;
}
.checkout-hero h1 .accent { color: var(--gold); }
.checkout-hero h1 .italic { font-family: 'DM Serif Display', serif; font-style: italic; color: var(--cream); }
.hero-sub-note {
  color: rgba(250,250,245,0.5);
  font-size: 0.95rem;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.15s ease both;
}

/* ── CHECKOUT LAYOUT ── */
.checkout-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* ── ORDER ITEM ── */
.order-items { margin-bottom: 36px; }

.order-item {
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 28px 28px 24px;
  margin-bottom: 2px;
  position: relative;
  transition: border-color 0.2s;
}
.order-item:hover { border-color: rgba(212,168,67,0.5); }

.item-badge {
  position: absolute;
  top: -1px; left: 28px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.item-price sub {
  font-size: 1rem;
  color: rgba(212,168,67,0.6);
  vertical-align: middle;
  margin-right: 2px;
}
.item-price .was {
  font-size: 1rem;
  color: rgba(250,250,245,0.25);
  text-decoration: line-through;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  display: block;
  text-align: right;
  margin-bottom: 2px;
}

.item-desc {
  color: rgba(250,250,245,0.5);
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.item-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}
.item-features li {
  font-size: 0.83rem;
  color: rgba(250,250,245,0.7);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.35;
}

/* ── ORDER BUMP ── */
.order-bump {
  background: linear-gradient(135deg, #1C1A0A 0%, #141410 100%);
  border: 1px solid var(--gold);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.order-bump:hover { background: linear-gradient(135deg, #221F0C 0%, #18160C 100%); }

.bump-check {
  width: 22px; height: 22px;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}
.bump-check.checked { background: var(--gold); }
.bump-check.checked::after {
  content: '✓';
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
}

.bump-tag {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--red);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.bump-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--gold);
}
.bump-desc {
  font-size: 0.82rem;
  color: rgba(250,250,245,0.6);
  line-height: 1.5;
}
.bump-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-top: 8px;
}
.bump-price .was-p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(250,250,245,0.3);
  text-decoration: line-through;
  margin-left: 6px;
}

/* ── BONUSES ── */
.bonuses-block {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 28px 28px 24px;
  margin-top: 2px;
  margin-bottom: 36px;
}
.bonuses-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bonus-total {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: rgba(250,250,245,0.3);
  text-decoration: line-through;
}
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bonus-item:last-child { border-bottom: none; }
.bonus-icon {
  width: 36px; height: 36px;
  background: rgba(212,168,67,0.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.bonus-name {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.bonus-val {
  font-size: 0.75rem;
  color: rgba(250,250,245,0.4);
}
.bonus-val span {
  color: var(--gold);
  font-weight: 600;
}

/* ── FORM PANEL ── */
.order-right {
  position: sticky;
  top: 88px;
}

.form-box {
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 32px 28px;
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.8rem;
  color: rgba(250,250,245,0.4);
  margin-bottom: 24px;
  line-height: 1.5;
}
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,245,0.5);
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,67,0.2);
  color: var(--white);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-input::placeholder { color: rgba(250,250,245,0.25); }
.form-input:focus {
  border-color: var(--gold);
  background: rgba(212,168,67,0.04);
}
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4A843' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
select.form-input option { background: #1A1A14; color: var(--white); }

/* ── CARD FIELDS ── */
.card-fields {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,67,0.2);
  padding: 14px 16px;
  margin-bottom: 14px;
  position: relative;
}
.card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,245,0.4);
  margin-bottom: 8px;
  display: block;
}
.card-icons { display: flex; gap: 6px; margin-bottom: 10px; }
.card-icon {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  width: 38px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(250,250,245,0.5);
  letter-spacing: 0.05em;
}
.card-number-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.card-number-field input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
}
.card-number-field input::placeholder { color: rgba(250,250,245,0.25); }
.card-sub-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card-sub-fields input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  width: 100%;
}
.card-sub-fields input::placeholder { color: rgba(250,250,245,0.25); }

/* ── SUMMARY BOX ── */
.summary-box {
  background: rgba(212,168,67,0.05);
  border: 1px solid var(--border);
  padding: 18px 20px;
  margin-bottom: 18px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(250,250,245,0.55);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.summary-row:last-child { border-bottom: none; }
.summary-row.total {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding-top: 10px;
}
.summary-row.total .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.summary-row.savings { color: #4CAF50; font-size: 0.78rem; }

/* ── CTA BUTTON ── */
.cta-btn {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 18px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  text-decoration: none;
  margin-bottom: 12px;
}
.cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.cta-btn:active { transform: translateY(0); }

/* ── SECURE / BADGES ── */
.secure-note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(250,250,245,0.3);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.secure-note span { color: rgba(212,168,67,0.6); }
.payment-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pay-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(250,250,245,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── GUARANTEE STRIP ── */
.guarantee-strip {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 16px;
}
.guarantee-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.guarantee-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.guarantee-desc { font-size: 0.78rem; color: rgba(250,250,245,0.45); line-height: 1.55; }

/* ── WHAT YOU GET ── */
.what-you-get {
  padding: 60px 5%;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.wyg-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.wyg-list { list-style: none; margin-top: 16px; }
.wyg-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.45;
  color: rgba(250,250,245,0.75);
}
.wyg-list li:last-child { border-bottom: none; }
.wyg-list li strong { color: var(--white); }
.wyg-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.wyg-stat {
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.wyg-stat:hover { border-color: var(--gold); }
.wyg-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 6px;
}
.wyg-stat-label {
  font-size: 0.75rem;
  color: rgba(250,250,245,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── CHECKOUT TESTIMONIALS ── */
.testi-section {
  padding: 60px 5%;
  border-top: 1px solid var(--border);
}
.testi-inner { max-width: 1100px; margin: 0 auto; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

/* ── CHECKOUT FINAL CTA ── */
.final-cta {
  padding: 80px 5%;
  text-align: center;
  background: var(--dark);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(212,168,67,0.09) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.final-cta h2 em { font-family: 'DM Serif Display', serif; font-style: italic; color: var(--gold); }
.final-cta p { color: rgba(250,250,245,0.5); margin-bottom: 32px; font-size: 0.98rem; }
.final-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 18px 52px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.final-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── CHECKOUT RESPONSIVE ── */
@media (max-width: 900px) {
  .checkout-wrap { grid-template-columns: 1fr; }
  .order-right { position: static; order: -1; }
  .wyg-inner { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .item-features { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .wyg-stat-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { gap: 16px; }
}
