/* ==========================================================================
   KDP Mafia - Grid Paper Background, Side 3D Graphic Elements & Screenshot Offer Box
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Manrope:wght@700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg-white: #ffffff;
  --bg-warm: #fffdf5;
  --bg-card: #ffffff;

  --ink-deep: #0b0f19;
  --ink-body: #1e293b;
  --ink-muted: #64748b;

  --amber-primary: #f59e0b;
  --amber-dark: #d97706;
  --amber-bg: #fffbf0;
  --amber-border: #fde047;

  --crimson-fail: #dc2626;
  --crimson-bg: #fef2f2;
  --emerald-pass: #059669;
  --emerald-bg: #ecfdf5;

  --blue-cobalt: #0284c7;

  --surface-border: #e2e8f0;

  --shadow-editorial: 0 12px 32px -4px rgba(11, 15, 25, 0.08);
  --shadow-amber: 0 16px 36px -6px rgba(217, 119, 6, 0.25);

  --font-display: 'Archivo Black', 'Arial Black', Arial, sans-serif;
  --font-body: 'DM Sans', 'Arial', sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
  font-family: var(--font-body);
}

body {
  background-color: var(--bg-white);
  color: var(--ink-body);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.002em;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--ink-deep);
  line-height: 1.13;
  font-weight: 800;
  letter-spacing: -0.04em;
}

p {
  text-wrap: pretty;
}

.mono-spec {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.5;
}

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

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

.highlight-amber {
  color: var(--amber-dark);
}

.highlight-crimson {
  color: var(--crimson-fail);
}

.highlight-emerald {
  color: var(--emerald-pass);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Standalone Section Containers */
.sec-editorial {
  padding: 85px 0;
  position: relative;
  border-bottom: 1px solid var(--surface-border);
  overflow: hidden;
}

/* Light Backdrop Overlays */
.overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.overlay-light-gold {
  background: linear-gradient(180deg, rgba(255, 251, 240, 0.82) 0%, rgba(255, 255, 255, 0.92) 100%);
  backdrop-filter: blur(2px);
}

.overlay-warm-amber {
  background: linear-gradient(180deg, rgba(254, 243, 199, 0.82) 0%, rgba(255, 251, 240, 0.92) 100%);
  backdrop-filter: blur(2px);
}

.overlay-crimson-alert {
  background: linear-gradient(180deg, rgba(254, 242, 242, 0.85) 0%, rgba(255, 255, 255, 0.94) 100%);
  backdrop-filter: blur(2px);
}

.overlay-emerald-pass {
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.85) 0%, rgba(255, 255, 255, 0.94) 100%);
  backdrop-filter: blur(2px);
}

.overlay-slate-cool {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.86) 0%, rgba(255, 255, 255, 0.94) 100%);
  backdrop-filter: blur(2px);
}

/* GRAPH PAPER GRID BACKGROUND (EXACT MATCH TO REFERENCE SCREENSHOT) */
.bg-grid-paper {
  background-color: #ffffff;
  background-image: none !important;
}

/* SCREENSHOT MATCHED OFFER VALUE RECAP BOX */
.screenshot-offer-box {
  background: #ffffff;
  border: 12px solid #fde047;
  border-radius: 28px;
  padding: 45px 35px 55px;
  max-width: 820px;
  margin: 40px auto 24px;
  box-shadow: 0 25px 60px rgba(217, 119, 6, 0.2);
  text-align: center;
  position: relative;
  z-index: 2;
}

.screenshot-offer-box > img {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.offer-bullet-list {
  text-align: left;
  margin: 30px auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink-deep);
  line-height: 1.5;
}

.bullet-check {
  color: var(--emerald-pass);
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-slanted-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 4rem;
  color: #ea580c;
  margin: 10px 0;
  line-height: 1;
  letter-spacing: -1px;
}

.btn-screenshot-orange {
  background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  padding: 18px 45px;
  border-radius: 12px;
  text-decoration: none;
  display: block;
  width: 100%;
  max-width: 650px;
  margin: 20px auto 0;
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.4);
  border: 2px solid #ffffff;
  transition: transform 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.btn-screenshot-orange:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #fb923c 0%, #c2410c 100%);
}

#checkout {
  scroll-margin-top: 24px;
  scroll-margin-bottom: 130px;
}

.checkout-pricing-block {
  padding-bottom: 12px;
}

.checkout-section {
  padding-bottom: 110px;
}

/* TOP-LEFT AMBIENT GLOW AURA (EXACT MATCH TO SCREENSHOT) */
.hero-glow-aura-left {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.55) 0%, rgba(245, 158, 11, 0.35) 50%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

/* SIDE 3D GRAPHIC FLOATING ELEMENTS */
.hero-side-graphic-right {
  position: absolute;
  top: 24%;
  right: 2%;
  width: 140px;
  height: auto;
  z-index: 4;
  animation: floatAnim 6s ease-in-out infinite alternate;
  filter: drop-shadow(0 15px 25px rgba(2, 132, 199, 0.25));
}

.hero-side-graphic-left {
  position: absolute;
  top: 65%;
  left: 2%;
  width: 140px;
  height: auto;
  z-index: 4;
  animation: floatAnim 7s ease-in-out infinite alternate-reverse;
  filter: drop-shadow(0 15px 25px rgba(245, 158, 11, 0.25));
}

@media (max-width: 1250px) {

  .hero-side-graphic-right,
  .hero-side-graphic-left {
    display: none;
  }
}

@keyframes floatAnim {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1.5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulseGlowGold {
  0% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
  }

  50% {
    box-shadow: 0 0 45px rgba(245, 158, 11, 0.65);
  }

  100% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
  }
}

/* HIGHLIGHT BOXES & BRUSH BANNERS (SCREENSHOT MATCH) */
.highlight-orange-box {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.dark-pill-bar {
  background: #0b0f19;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  margin: 25px 0 15px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
}

/* Trust bar — infinite marquee ticker */
.trust-bar {
  background: #0b0f19;
  color: #ffffff;
  padding: 18px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.trust-bar-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.trust-bar-track {
  display: flex;
  width: max-content;
  animation: trustMarquee 28s linear infinite;
}

.trust-bar-content {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  flex-shrink: 0;
}

.trust-bar-content span {
  white-space: nowrap;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.3px;
}

@keyframes trustMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-bar-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .trust-bar-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
  }

  .trust-bar-content {
    padding-right: 0;
    gap: 12px 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-bar-content[aria-hidden="true"] {
    display: none;
  }
}

.brush-stroke-banner {
  background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
  color: #0b0f19;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  padding: 12px 40px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
  border: 2px solid #ffffff;
}

/* Eyebrow & Badges */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-bg);
  color: var(--amber-dark);
  border: 1.5px solid var(--amber-border);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 8px 22px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  animation: none;
}

.sec-title {
  font-size: 2.75rem;
  margin-bottom: 20px;
}

.sec-desc {
  font-size: 1.25rem;
  color: var(--ink-muted);
  max-width: 860px;
  margin: 0 auto 40px;
}

/* Action Buttons */
.btn-editorial-gold {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0f19;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  padding: 20px 48px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--shadow-amber);
  border: 2px solid #ffffff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-align: center;
  animation: pulseGlowGold 4s infinite ease-in-out;
}

.btn-editorial-gold:hover {
  transform: translateY(-3px) scale(1.01);
  background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
  box-shadow: 0 20px 45px rgba(217, 119, 6, 0.4);
}

.btn-caption {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-top: 3px;
  opacity: 0.9;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

/* Site Header */
.site-header {
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surface-border);
  position: relative;
  z-index: 10;
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-header-logo img {
  height: 55px;
  width: auto;
  display: block;
}

.site-header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-bg);
  border: 1px solid #6ee7b7;
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--emerald-pass);
  font-weight: 800;
  font-size: 0.82rem;
}

.site-header-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-pass);
  border-radius: 50%;
  flex-shrink: 0;
}

.site-header-cta {
  padding: 10px 22px !important;
  font-size: 0.9rem !important;
  border-width: 2px !important;
  white-space: nowrap;
}

/* Hero */
.hero-title {
  font-size: clamp(1.65rem, 5.5vw, 3.2rem) !important;
  max-width: 1080px;
  margin: 0 auto 20px;
  line-height: 1.25 !important;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 0.95rem;
  color: var(--ink-muted);
  font-weight: 700;
}

.vsl-caption {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 12px;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(0.78rem, 2.5vw, 1.15rem);
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Responsive tables */
.table-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 30px 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-editorial);
}

.table-scroll-wrap .editorial-table {
  margin: 0;
  min-width: 580px;
}

/* Sticky bar */
.sticky-bar-content {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.sticky-bar-content img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.sticky-bar-title {
  font-weight: 800;
  font-size: clamp(0.82rem, 2.5vw, 1.05rem);
  color: #0b0f19;
  line-height: 1.25;
}

.sticky-bar-price {
  color: var(--crimson-fail);
  font-weight: 800;
  font-size: 0.82rem;
}

.sticky-bar-btn {
  padding: 10px 22px !important;
  font-size: 0.9rem !important;
  border-width: 2px !important;
  flex-shrink: 0;
}

body.has-sticky-bar {
  padding-bottom: 100px;
}

.site-footer {
  padding: 50px 0 120px;
  background: #0b0f19;
  color: #94a3b8;
  font-size: 0.88rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.site-footer-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  opacity: 1;
  margin: 0 auto 25px;
  display: block;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  font-weight: 700;
}

.site-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 100px;
    font-size: 0.82rem;
  }

  .site-footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Card Panels */
.card-panel {
  background: var(--bg-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-editorial);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.card-panel:hover {
  transform: translateY(-4px);
  border-color: var(--amber-dark);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 24px;
}

/* 2-Column Split Feature Grid */
.feature-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.feature-img-frame {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-editorial);
  border: 4px solid #ffffff;
  transition: transform 0.3s ease;
}

.feature-img-frame:hover {
  transform: scale(1.02);
  border-color: var(--amber-dark);
}

/* Signature Component: KDP Print Previewer Simulator */
.kdp-previewer-sim {
  background: #0f172a;
  color: #f8fafc;
  border: 2px solid #334155;
  border-radius: var(--radius-md);
  padding: 24px;
  font-family: var(--font-mono);
  max-width: 850px;
  margin: 30px auto 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  z-index: 2;
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #334155;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.sim-badge-pass {
  background: rgba(5, 150, 105, 0.2);
  color: #34d399;
  border: 1px solid #059669;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 800;
}

.sim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.sim-item {
  background: #1e293b;
  padding: 12px;
  border-radius: 6px;
  border-left: 3px solid #34d399;
}

/* Master Comparison Table */
.editorial-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
  border: 1px solid var(--surface-border);
  position: relative;
  z-index: 2;
}

.editorial-table th {
  background: #0b0f19;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 18px 24px;
  text-align: left;
}

.editorial-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--surface-border);
  font-size: 1.05rem;
  text-align: left;
  color: var(--ink-body);
}

.editorial-table tr:last-child td {
  border-bottom: none;
}

/* Top Sticky Ticker */
.top-ticker {
  background: #ff0000;
  color: #ffffff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: var(--font-heading, system-ui, sans-serif);
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.35);
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-ticker .ticker-price {
  background: #ffeb3b;
  color: #000000;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  margin: 0 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.top-ticker-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 800;
  font-size: 1.5rem;
  text-align: center;
  flex-wrap: wrap;
}

.ticker-coupon-code {
  text-decoration: underline;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.ticker-buy-btn {
  background: #ffff00;
  color: #000000 !important;
  padding: 6px 20px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.ticker-buy-btn:hover {
  background: #e6e600;
  transform: scale(1.04);
  color: #000000 !important;
}

@media (max-width: 640px) {
  .top-ticker-content {
    font-size: 0.82rem;
    gap: 10px;
  }

  .ticker-buy-btn {
    font-size: 0.8rem;
    padding: 4px 12px;
  }
}


/* Accordions */
.accordion-item {
  background: #ffffff;
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease;
  position: relative;
  z-index: 2;
}

.accordion-item.active {
  border-color: var(--amber-dark);
  box-shadow: var(--shadow-editorial);
}

.accordion-q {
  padding: 22px 26px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
  color: var(--ink-body);
  font-size: 1.05rem;
  line-height: 1.75;
}

.accordion-item.active .accordion-a {
  max-height: 300px;
  padding: 0 26px 22px;
}

/* FAQ Section — brushstroke title + card grid */
.faq-section {
  padding: 70px 0 85px;
  background-color: #ffffff;
  background-image:
    linear-gradient(to right, rgba(203, 213, 225, 0.45) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(203, 213, 225, 0.45) 1px, transparent 1px);
  background-size: 32px 32px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--surface-border);
}

.faq-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.faq-blob--orange {
  top: -70px;
  left: -70px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.42) 0%, rgba(245, 158, 11, 0.32) 45%, transparent 72%);
  filter: blur(48px);
}

.faq-blob--blue {
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.5) 0%, rgba(14, 165, 233, 0.2) 50%, transparent 72%);
  filter: blur(42px);
}

.faq-section-header {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.faq-brush-title {
  display: inline-block;
  background: linear-gradient(90deg, #fde047 0%, #fbbf24 22%, #f97316 68%, #ea580c 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 800;
  padding: 16px 56px;
  line-height: 1.2;
  position: relative;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.32);
  transform: rotate(-0.4deg);
}

.faq-brush-title::before,
.faq-brush-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 72%;
  background: inherit;
  transform: translateY(-50%);
  border-radius: 3px;
}

.faq-brush-title::before {
  left: -14px;
  transform: translateY(-50%) skewX(-14deg);
}

.faq-brush-title::after {
  right: -14px;
  transform: translateY(-50%) skewX(14deg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-card {
  background: #fffdf8;
  border: 1.5px solid #fcd34d;
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.16);
}

.faq-card-q {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink-deep);
  margin-bottom: 14px;
  line-height: 1.45;
}

.faq-card-a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-body);
  line-height: 1.75;
}

.faq-label {
  font-weight: 800;
  color: var(--ink-deep);
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-brush-title {
    padding: 14px 32px;
    font-size: 1.25rem;
  }

  .faq-card {
    padding: 22px 20px;
  }
}

/* CTA Break — reusable executive mid-page conversion block */
.cta-break {
  padding: 60px 0;
  background: #07090e;
  position: relative;
  overflow: hidden;
}

.cta-break-shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-break-inner {
  background: linear-gradient(135deg, #0b0f19 0%, #131d30 50%, #080c14 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-top: 4px solid var(--amber-primary);
  border-radius: 24px;
  box-shadow:
    0 25px 65px -10px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(245, 158, 11, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 44px 40px 38px;
  overflow: hidden;
}

.cta-break-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 36px;
  align-items: center;
}

.cta-break-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 30px;
  color: #fbbf24;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.cta-break-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.highlight-gold-gradient {
  background: linear-gradient(135deg, #fde047 0%, #fbbf24 40%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-break-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 26px;
}

.cta-break-btn-modern {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: 1px solid rgba(254, 240, 138, 0.4);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 12px 35px rgba(217, 119, 6, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 24px;
}

.cta-break-btn-modern:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 45px rgba(217, 119, 6, 0.6);
}

.btn-icon-circle {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  font-size: 1.4rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}

.cta-break-btn-modern:hover .btn-icon-circle {
  transform: translateX(4px);
}

.btn-text-block {
  display: flex;
  flex-direction: column;
}

.btn-text-block strong {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.btn-text-block small {
  color: #fef3c7;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

.cta-break-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 16px;
}

.trust-badge-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shield-check-icon {
  width: 32px;
  height: 32px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.shield-text-col {
  display: flex;
  flex-direction: column;
}

.shield-text-col strong {
  color: #22c55e;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.shield-text-col span {
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 600;
}

.trust-badge-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}

.pay-chip {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  color: #e2e8f0;
}

.pay-visa {
  color: #60a5fa;
}

.pay-mc {
  color: #f87171;
}

.pay-amex {
  color: #38bdf8;
}

.pay-discover {
  color: #fb923c;
}

/* ==========================================================================
   CTA PAYMENT ICONS & TRUST BADGE SYSTEM
   ========================================================================== */
.cta-payment-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.cta-payment-lock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cta-payment-lock svg {
  color: #22c55e;
  flex-shrink: 0;
}

.cta-payment-trust--light .cta-payment-lock {
  color: var(--ink-muted);
}

.cta-payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.cta-payment-trust--light .cta-payment-icons {
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(203, 213, 225, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-payment-icons img,
.trust-badge-payments img.pay-icon-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  background: #ffffff;
  padding: 3px 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.cta-payment-icons img:hover,
.trust-badge-payments img.pay-icon-img:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  filter: brightness(1.05);
}

.cta-break-tech-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

.tech-dot {
  width: 6px;
  height: 6px;
  background: #38bdf8;
  border-radius: 50%;
}

.cta-break-visual {
  text-align: center;
}

.cta-break-mockup {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.cta-break-urgency-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.cta-break-urgency-header {
  background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  text-align: center;
  text-transform: uppercase;
}

.fire-icon {
  margin-right: 4px;
}

.cta-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
  background: rgba(11, 15, 25, 0.95);
}

.cta-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-countdown-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
}

.cta-countdown-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .cta-break-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-break-visual {
    order: -1;
  }

  .cta-break-mockup {
    max-width: 340px;
  }

  .cta-break-trust {
    justify-content: center;
  }

  .cta-break-copy {
    text-align: center;
  }

  .cta-break-btn {
    margin: 0 auto;
  }

  .cta-break-btn-text {
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .cta-break-inner {
    padding: 24px 16px 20px;
  }

  .cta-countdown-num {
    font-size: 1.35rem;
    min-height: 44px;
  }

  .cta-break-guarantee {
    width: 76px;
    height: 76px;
    font-size: 0.55rem;
  }
}

/* Floating Sticky Footer */
.floating-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 3px solid var(--amber-dark);
  padding: 12px 24px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

@media (max-width: 992px) {
  .sec-title {
    font-size: 2.2rem;
  }

  .sec-desc {
    font-size: 1.12rem;
  }

  .sec-editorial {
    padding: 60px 0;
  }

  .btn-editorial-gold {
    font-size: 1.1rem;
    padding: 16px 28px;
  }

  .feature-split-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dark-pill-bar {
    font-size: 1.25rem;
    padding: 14px 24px;
  }

  .brush-stroke-banner {
    font-size: 1.15rem;
    padding: 10px 28px;
  }

  .eyebrow-badge {
    font-size: 0.82rem;
    padding: 8px 16px;
  }

  .screenshot-offer-box {
    padding: 32px 24px 40px;
    border-width: 8px;
  }

  .value-slanted-price {
    font-size: 3rem;
  }

  .btn-screenshot-orange {
    font-size: 1.25rem;
    padding: 16px 24px;
  }

  .kdp-previewer-sim {
    padding: 18px;
  }

  .sim-header {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .container {
    padding: 0 16px;
  }

  .sec-title {
    font-size: 1.75rem;
  }

  .sec-desc {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }

  .sec-editorial {
    padding: 48px 0;
  }

  .faq-section {
    padding: 48px 0 60px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card-panel {
    padding: 22px 18px;
  }

  .btn-editorial-gold {
    font-size: 1rem;
    padding: 14px 22px;
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
  }

  .btn-caption {
    font-size: 0.78rem;
  }

  .site-header-inner {
    justify-content: space-between;
  }

  .site-header-logo img {
    height: 44px;
  }

  .site-header-badge {
    order: 3;
    width: 100%;
    justify-content: center;
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .site-header-cta {
    order: 2;
    padding: 8px 14px !important;
    font-size: 0.75rem !important;
    max-width: calc(100% - 120px);
    white-space: normal;
    line-height: 1.2;
  }

  .top-ticker {
    font-size: 0.78rem;
    padding: 8px 12px;
    line-height: 1.4;
  }

  .dark-pill-bar {
    font-size: 1.05rem;
    padding: 12px 16px;
    display: block;
    margin: 18px 0 12px;
  }

  .brush-stroke-banner {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 14px;
  }

  .editorial-table th,
  .editorial-table td {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .table-scroll-wrap .editorial-table {
    min-width: 520px;
  }

  .offer-bullet-item {
    font-size: 0.95rem;
  }

  .screenshot-offer-box {
    padding: 24px 16px 32px;
    border-width: 6px;
    border-radius: 20px;
    margin: 24px auto 16px;
  }

  .value-slanted-price {
    font-size: 2.5rem;
  }

  .btn-screenshot-orange {
    font-size: 1.1rem;
    padding: 14px 18px;
    border-radius: 10px;
  }

  .checkout-section {
    padding-bottom: 90px;
  }

  #checkout {
    scroll-margin-bottom: 150px;
  }

  .floating-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 10px 14px;
  }

  .sticky-bar-content {
    justify-content: center;
    text-align: left;
  }

  .sticky-bar-btn {
    width: 100%;
    max-width: 100%;
  }

  body.has-sticky-bar {
    padding-bottom: 130px;
  }

  .cta-break {
    padding: 32px 0;
  }

  .cta-break-shell {
    padding: 0 14px;
  }

  .cta-break-urgency-bar {
    font-size: 0.82rem;
    padding: 10px 12px;
  }

  .cta-break-web-badge {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .sec-title {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1.45rem !important;
  }

  .eyebrow-badge {
    font-size: 0.72rem;
    padding: 7px 14px;
    border-radius: 12px;
    text-align: center;
    line-height: 1.35;
  }

  .sec-editorial {
    padding: 40px 0;
  }

  .btn-editorial-gold {
    font-size: 0.92rem;
    padding: 13px 16px;
  }

  .site-header-inner {
    gap: 8px;
  }

  .site-header-logo img {
    height: 38px;
  }

  .site-header-cta {
    max-width: 100%;
    width: 100%;
    order: 3;
  }

  .site-header-badge {
    order: 2;
  }

  .hero-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .hero-trust-row span:nth-child(even) {
    display: none;
  }

  .vsl-caption {
    bottom: 10px;
    font-size: 0.72rem;
  }

  #playBtn {
    width: 70px !important;
    height: 70px !important;
  }

  .value-slanted-price {
    font-size: 2rem;
  }

  .faq-brush-title {
    padding: 12px 24px;
    font-size: 1.1rem;
  }

  .faq-brush-title::before,
  .faq-brush-title::after {
    display: none;
  }

  .cta-break-btn {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .cta-break-btn-icon {
    width: 100%;
    min-width: 0;
    padding: 12px;
  }

  .cta-break-btn-text {
    padding: 14px 16px !important;
    text-align: center;
    align-items: center;
  }

  .cta-break-btn-text strong {
    font-size: 1rem;
  }

  .cta-countdown {
    gap: 6px;
    padding: 10px 8px;
  }

  .cta-countdown-num {
    font-size: 1.15rem;
    min-height: 40px;
    border-radius: 8px;
  }

  .cta-countdown-label {
    font-size: 0.58rem;
  }

  .cta-break-trust {
    flex-direction: column;
    align-items: center;
  }

  .pay-badge {
    min-width: 46px;
    height: 28px;
    font-size: 0.62rem;
  }

  .sim-grid {
    grid-template-columns: 1fr;
  }

  .top-ticker {
    font-size: 0.72rem;
  }
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {

  .btn-editorial-gold,
  .btn-screenshot-orange,
  .cta-break-btn,
  .accordion-q {
    min-height: 44px;
  }
}


/* Shared microcopy polish — keeps every landing and OTO badge clean and readable. */
:root {
  --font-mono: 'Manrope', 'Arial', sans-serif;
}

.mono-spec {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-badge {
  background: #fffaf0;
  border-color: #fcd34d;
  color: #92400e;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .mono-spec {
    font-size: 0.69rem;
    letter-spacing: 0.04em;
  }

  .eyebrow-badge {
    font-size: 0.7rem;
    letter-spacing: 0.035em;
  }
}


/* Long eyebrow messages read better as a compact sentence than spaced all-caps. */
.eyebrow-badge {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

@media (max-width: 768px) {
  .eyebrow-badge {
    font-size: 0.72rem;
    letter-spacing: 0.005em;
  }
}


/* Final badge override: sentence-case product messaging on every page. */
.eyebrow-badge {
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 700;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

@media (max-width: 768px) {
  .eyebrow-badge {
    font-size: 0.72rem !important;
    letter-spacing: 0.005em !important;
  }
}


/* Wider desktop reading canvas for the landing page and every OTO. */
:root {
  --max-width: 1360px;
}

.container {
  padding-left: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
}

.hero-title {
  max-width: 1240px;
}

.sec-desc {
  max-width: 980px;
}

#hero .sec-desc {
  max-width: 1080px;
}

.cta-break-shell {
  max-width: 1320px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sec-desc,
  #hero .sec-desc {
    max-width: 100%;
  }
}


/* ==========================================================================
   Front landing page — premium vibrant editorial backgrounds
   Controlled palette + supplied textures; scoped so OTO pages remain clean.
   ========================================================================== */
.front-page>.sec-editorial {
  isolation: isolate;
  background-color: #f7f9ff;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(99, 102, 241, 0.2), transparent 26%),
    radial-gradient(circle at 92% 86%, rgba(14, 165, 233, 0.16), transparent 30%),
    url('assets/bg_tech_light.png');
  background-position: center;
  background-size: cover;
  border-bottom-color: rgba(148, 163, 184, 0.28);
}

.front-page>.sec-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.front-page>.sec-editorial>.overlay-layer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(248, 250, 252, 0.62)) !important;
  backdrop-filter: none;
}

.front-page>.sec-editorial:nth-of-type(4n + 1) {
  background-color: #eef5ff;
  background-image:
    radial-gradient(circle at 10% 18%, rgba(59, 130, 246, 0.32), transparent 27%),
    radial-gradient(circle at 90% 82%, rgba(129, 140, 248, 0.26), transparent 31%),
    url('assets/bg_tech_light.png');
}

.front-page>.sec-editorial:nth-of-type(4n + 2) {
  background-color: #ebfff7;
  background-image:
    radial-gradient(circle at 10% 82%, rgba(16, 185, 129, 0.28), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(45, 212, 191, 0.22), transparent 28%),
    url('assets/bg_emerald_pattern.png');
}

.front-page>.sec-editorial:nth-of-type(4n + 3) {
  background-color: #fff8e8;
  background-image:
    radial-gradient(circle at 9% 15%, rgba(251, 146, 60, 0.3), transparent 28%),
    radial-gradient(circle at 91% 82%, rgba(250, 204, 21, 0.25), transparent 31%),
    url('assets/bg_gold_pattern.png');
}

.front-page>.sec-editorial:nth-of-type(4n) {
  background-color: #f7f1ff;
  background-image:
    radial-gradient(circle at 12% 78%, rgba(168, 85, 247, 0.22), transparent 29%),
    radial-gradient(circle at 90% 18%, rgba(236, 72, 153, 0.18), transparent 26%),
    url('assets/bg_tech_light.png');
}

.front-page>#hero {
  background-color: #fff8e8;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(249, 115, 22, 0.38), transparent 27%),
    radial-gradient(circle at 91% 20%, rgba(59, 130, 246, 0.26), transparent 26%),
    radial-gradient(circle at 52% 100%, rgba(250, 204, 21, 0.2), transparent 32%),
    url('assets/bg_gold_pattern.png');
}

.front-page>.sec-editorial .card-panel,
.front-page>.sec-editorial .editorial-table,
.front-page>.sec-editorial .kdp-previewer-sim {
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
}

.front-page>.sec-editorial .card-panel,
.front-page>.sec-editorial .editorial-table {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.front-page>.trust-bar {
  background: linear-gradient(100deg, #0f172a 0%, #172554 46%, #0f766e 100%);
  border-top: 1px solid rgba(250, 204, 21, 0.45);
  border-bottom: 1px solid rgba(45, 212, 191, 0.35);
}

.front-page .cta-break {
  background:
    radial-gradient(circle at 8% 50%, rgba(249, 115, 22, 0.42), transparent 27%),
    radial-gradient(circle at 90% 18%, rgba(45, 212, 191, 0.3), transparent 25%),
    linear-gradient(120deg, #060b1c 0%, #172554 48%, #042f2e 100%);
}

.front-page .faq-section {
  background-color: #eef5ff;
  background-image:
    radial-gradient(circle at 8% 16%, rgba(59, 130, 246, 0.26), transparent 27%),
    radial-gradient(circle at 92% 84%, rgba(168, 85, 247, 0.2), transparent 28%),
    url('assets/bg_tech_light.png');
}

.front-page .checkout-section {
  background-color: #fff7df !important;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(249, 115, 22, 0.3), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(250, 204, 21, 0.28), transparent 30%),
    url('assets/bg_gold_pattern.png') !important;
}

@media (max-width: 768px) {
  .front-page>.sec-editorial::before {
    background-size: 32px 32px;
  }

  .front-page>.sec-editorial .card-panel,
  .front-page>.sec-editorial .editorial-table {
    backdrop-filter: none;
  }
}


/* Keep the color system visible; earlier light overlays were washing it out. */
.front-page>.sec-editorial>.overlay-layer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(248, 250, 252, 0.3)) !important;
}

.front-page>#hero>.overlay-layer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 235, 0.24)) !important;
}


/* Rich gradient foundations — visible color without noisy generated imagery. */
.front-page>.sec-editorial {
  background-image:
    radial-gradient(circle at 8% 12%, rgba(99, 102, 241, 0.3), transparent 28%),
    radial-gradient(circle at 92% 86%, rgba(14, 165, 233, 0.24), transparent 31%),
    linear-gradient(135deg, #edf5ff 0%, #dce8ff 50%, #f3edff 100%);
}

.front-page>.sec-editorial:nth-of-type(4n + 1) {
  background-image:
    radial-gradient(circle at 10% 18%, rgba(37, 99, 235, 0.42), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(79, 70, 229, 0.34), transparent 32%),
    linear-gradient(135deg, #e8f2ff 0%, #cedcff 52%, #ede9fe 100%);
}

.front-page>.sec-editorial:nth-of-type(4n + 2) {
  background-image:
    radial-gradient(circle at 10% 82%, rgba(5, 150, 105, 0.36), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(20, 184, 166, 0.3), transparent 30%),
    linear-gradient(135deg, #e5fff6 0%, #c5f7e7 52%, #d8f8f4 100%);
}

.front-page>.sec-editorial:nth-of-type(4n + 3) {
  background-image:
    radial-gradient(circle at 9% 15%, rgba(234, 88, 12, 0.38), transparent 30%),
    radial-gradient(circle at 91% 82%, rgba(234, 179, 8, 0.34), transparent 33%),
    linear-gradient(135deg, #fff6dd 0%, #ffe4b0 52%, #fff0ca 100%);
}

.front-page>.sec-editorial:nth-of-type(4n) {
  background-image:
    radial-gradient(circle at 12% 78%, rgba(147, 51, 234, 0.32), transparent 31%),
    radial-gradient(circle at 90% 18%, rgba(219, 39, 119, 0.27), transparent 28%),
    linear-gradient(135deg, #f5ecff 0%, #e9d5ff 52%, #ffe4f2 100%);
}

.front-page>#hero {
  background-image:
    radial-gradient(circle at 8% 18%, rgba(234, 88, 12, 0.52), transparent 29%),
    radial-gradient(circle at 91% 20%, rgba(37, 99, 235, 0.38), transparent 28%),
    radial-gradient(circle at 52% 100%, rgba(234, 179, 8, 0.42), transparent 34%),
    linear-gradient(135deg, #fff8e9 0%, #ffe6bb 48%, #e5f4ff 100%);
}


/* Front-page conversion header — compact three-column lockup. */
.front-page .site-header {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.front-page .site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 62px;
  gap: 20px;
  flex-wrap: nowrap;
}

.front-page .site-header-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(217, 119, 6, 0.24);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 7px 16px rgba(15, 23, 42, 0.09);
  overflow: hidden;
}

.front-page .site-header-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.front-page .site-header-badge {
  justify-self: center;
  padding: 8px 16px;
  border-color: rgba(5, 150, 105, 0.28);
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
  box-shadow: 0 5px 14px rgba(5, 150, 105, 0.08);
  white-space: nowrap;
}

.front-page .site-header-cta {
  justify-self: end;
  min-height: 44px;
  padding: 10px 20px !important;
  border: 0 !important;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  box-shadow: 0 9px 18px rgba(234, 88, 12, 0.24);
}

@media (max-width: 768px) {
  .front-page .site-header-inner {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    min-height: auto;
  }

  .front-page .site-header-logo {
    width: 48px;
    height: 48px;
  }

  .front-page .site-header-logo img {
    width: 44px;
    height: 44px;
  }

  .front-page .site-header-badge {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: center;
    white-space: normal;
  }
}


/* Refined front hero — structured editorial paper, no blurry AI-style blobs. */
.front-page>#hero {
  background-color: #fffbf3;
  background-image:
    linear-gradient(rgba(180, 132, 46, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 132, 46, 0.11) 1px, transparent 1px),
    linear-gradient(135deg, #fffdf8 0%, #fff7e8 52%, #f8efe0 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
}

.front-page>#hero::before {
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(217, 119, 6, 0.11) 12% 12.15%, transparent 12.15% 87.85%, rgba(2, 132, 199, 0.1) 87.85% 88%, transparent 88%),
    linear-gradient(180deg, transparent 0 86%, rgba(217, 119, 6, 0.1) 86% 86.15%, transparent 86.15%);
  mask-image: none;
}

.front-page>#hero>.overlay-layer {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.32), rgba(255, 253, 248, 0.14)) !important;
}

.front-page>#hero .hero-glow-aura-left {
  display: none;
}

.hero-demo-shell {
  max-width: 920px;
  margin: 0 auto 35px;
  padding: 7px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fbbf24, #f97316 48%, #0ea5e9);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.2);
  position: relative;
  z-index: 2;
}

.hero-demo-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #101827 0%, #16233e 55%, #0b3c45 100%);
  background-size: 34px 34px, 34px 34px, 100% 100%;
  color: #ffffff;
}

.hero-demo-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.13);
}

.hero-demo-workspace {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 28px;
  min-height: 360px;
  padding: 40px 64px 62px;
}

.hero-demo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  max-width: 470px;
  text-align: left;
}

.hero-demo-label,
.hero-demo-status {
  color: #fcd34d;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.hero-demo-copy strong {
  max-width: 430px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero-demo-copy>span:last-child {
  max-width: 410px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-demo-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
}

.hero-demo-visual img {
  position: relative;
  z-index: 1;
  width: min(230px, 100%);
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.3));
}

.hero-demo-ring {
  position: absolute;
  width: 230px;
  aspect-ratio: 1;
  border: 1px solid rgba(251, 191, 36, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(14, 165, 233, 0.08), 0 0 0 52px rgba(251, 191, 36, 0.05);
}

.hero-demo-status {
  position: absolute;
  right: 0;
  bottom: 4px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  border-radius: 6px;
  background: rgba(8, 15, 30, 0.76);
}

.hero-demo-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(180deg, #fbbf24, #ea580c);
  box-shadow: 0 0 0 8px rgba(251, 191, 36, 0.12), 0 14px 28px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.hero-demo-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #ffffff;
}

.hero-demo-panel .vsl-caption {
  bottom: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
}

@media (max-width: 768px) {
  .front-page>#hero {
    background-size: 26px 26px, 26px 26px, 100% 100%;
  }

  .hero-demo-panel {
    min-height: 440px;
  }

  .hero-demo-workspace {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 390px;
    padding: 34px 28px 56px;
  }

  .hero-demo-copy {
    align-items: center;
    text-align: center;
  }

  .hero-demo-copy>span:last-child {
    font-size: 0.92rem;
  }

  .hero-demo-visual {
    min-height: 150px;
  }

  .hero-demo-visual img {
    width: 145px;
  }

  .hero-demo-ring {
    width: 145px;
    box-shadow: 0 0 0 17px rgba(14, 165, 233, 0.08), 0 0 0 34px rgba(251, 191, 36, 0.05);
  }

  .hero-demo-status {
    right: 50%;
    bottom: -8px;
    transform: translateX(50%);
    white-space: nowrap;
  }
}


/* Unified page header — centred KDP MAFIA wordmark only. */
.site-header-badge,
.site-header-cta {
  display: none !important;
}

.site-header,
.front-page .site-header {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.site-header .site-header-inner,
.front-page .site-header-inner {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
}

.site-header .site-header-logo,
.front-page .site-header-logo {
  display: flex;
  width: auto;
  height: 66px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.site-header .site-header-logo img,
.front-page .site-header-logo img {
  width: min(260px, 62vw);
  height: 66px;
  object-fit: contain;
}

@media (max-width: 768px) {

  .site-header,
  .front-page .site-header {
    padding: 8px 0;
  }

  .site-header .site-header-inner,
  .front-page .site-header-inner {
    display: flex;
    min-height: 50px;
    justify-content: center;
  }

  .site-header .site-header-logo,
  .front-page .site-header-logo,
  .site-header .site-header-logo img,
  .front-page .site-header-logo img {
    width: min(210px, 76vw);
    height: 50px;
  }
}


/* Show product-bundle image inside the Introducing KDP MAFIA section cleanly without cropping */
img[src*="assets/bundle.png"] {
  display: block !important;
}

.kdp-mafia-bundle-frame {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  border-radius: 20px !important;
  border: 3px solid #f59e0b !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 158, 11, 0.3) !important;
  position: relative;
  z-index: 2;
  overflow: hidden !important;
  background: #ffffff !important;
}

.kdp-mafia-bundle-frame img,
.kdp-mafia-bundle-frame img[src*="bundle.png"] {
  display: block !important;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 17px !important;
}

/* Larger centred KDP MAFIA wordmark from the supplied reference image. */
.site-header .site-header-inner,
.front-page .site-header-inner {
  min-height: 82px;
}

.site-header .site-header-logo,
.front-page .site-header-logo {
  height: 82px;
}

.site-header .site-header-logo img,
.front-page .site-header-logo img {
  width: min(330px, 72vw);
  height: 82px;
  object-fit: contain;
}

@media (max-width: 768px) {

  .site-header .site-header-inner,
  .front-page .site-header-inner {
    min-height: 62px;
  }

  .site-header .site-header-logo,
  .front-page .site-header-logo,
  .site-header .site-header-logo img,
  .front-page .site-header-logo img {
    width: min(250px, 82vw);
    height: 62px;
  }
}


/* Logo must scale by width and never clip vertically. */
.site-header .site-header-logo,
.front-page .site-header-logo {
  height: auto;
  overflow: visible;
}

.site-header .site-header-logo img,
.front-page .site-header-logo img {
  width: min(300px, 70vw);
  height: auto;
  max-height: 84px;
  object-fit: contain;
}

@media (max-width: 768px) {

  .site-header .site-header-logo,
  .front-page .site-header-logo,
  .site-header .site-header-logo img,
  .front-page .site-header-logo img {
    height: auto;
  }

  .site-header .site-header-logo img,
  .front-page .site-header-logo img {
    width: min(230px, 80vw);
    max-height: 62px;
  }
}


/* 3 SIMPLE STEPS — visual workflow section inspired by the supplied reference */
.simple-steps-section {
  background-color: #ffffff !important;
  background-image:
    linear-gradient(to right, rgba(203, 213, 225, 0.34) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(203, 213, 225, 0.34) 1px, transparent 1px) !important;
  background-size: 32px 32px !important;
}

.simple-steps-header {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.simple-steps-header .sec-desc {
  margin-bottom: 18px;
}

.simple-steps-highlight {
  display: inline-block;
  color: #ffffff;
  background: linear-gradient(135deg, #168ee5 0%, #0874c9 100%);
  padding: 2px 12px 5px;
  border-radius: 5px;
  box-shadow: 0 5px 14px rgba(2, 132, 199, 0.24);
}

.simple-steps-pill {
  display: inline-block;
  color: #ffffff;
  background: #080721;
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(8, 7, 33, 0.18);
}

.simple-step-card {
  max-width: 920px;
  min-height: 255px;
  margin: 0 auto 22px;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: 30px;
  align-items: center;
  border: 2px solid #39a9ed;
  border-radius: 11px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.12);
}

.simple-step-card--blue {
  background: linear-gradient(135deg, #d9f0ff 0%, #c4e8fc 100%);
}

.simple-step-card--dark {
  background: linear-gradient(135deg, #0a0829 0%, #050416 100%);
  border-color: #17135b;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(8, 7, 33, 0.24);
}

.simple-step-card--reverse .simple-step-copy {
  order: 2;
}

.simple-step-card--reverse .simple-step-visual {
  order: 1;
}

.simple-step-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  line-height: 1.2;
  color: var(--ink-deep);
}

.simple-step-card--dark .simple-step-copy h3 {
  color: #ffffff;
}

.simple-step-copy p {
  max-width: 460px;
  margin: 0 0 12px;
  color: var(--ink-body);
  font-size: 0.98rem;
  line-height: 1.65;
}

.simple-step-card--dark .simple-step-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.simple-step-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 17px;
  border-radius: 999px;
  background: #1099e6;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.simple-step-card--dark .simple-step-label {
  background: #173bd4;
}

.simple-step-note {
  font-size: 0.85rem !important;
  font-weight: 700;
  margin-bottom: 0 !important;
}

.simple-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.simple-step-visual img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border: 2px solid #5744d7;
  border-radius: 9px;
  box-shadow: 0 10px 22px rgba(8, 7, 33, 0.22);
}

@media (max-width: 700px) {
  .simple-steps-section {
    padding: 48px 0;
  }

  .simple-steps-header {
    margin-bottom: 28px;
  }

  .simple-steps-header .sec-title {
    font-size: 1.8rem;
  }

  .simple-steps-pill {
    font-size: 0.63rem;
    line-height: 1.5;
    padding: 8px 14px;
  }

  .simple-step-card,
  .simple-step-card--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 18px;
  }

  .simple-step-card--reverse .simple-step-copy,
  .simple-step-card--reverse .simple-step-visual {
    order: initial;
  }

  .simple-step-card--reverse .simple-step-visual {
    order: -1;
  }

  .simple-step-visual img {
    max-height: 240px;
  }
}


/* Prominent, static treatment for the 3-step workflow */
.simple-steps-section {
  padding: 110px 0;
  border-top: 6px solid #168ee5;
  box-shadow: inset 0 16px 0 rgba(22, 142, 229, 0.08);
}

.simple-steps-header {
  max-width: 1040px;
  margin-bottom: 58px;
}

.simple-steps-header .eyebrow-badge {
  animation: none !important;
  box-shadow: 0 6px 0 #dbeafe, 0 12px 24px rgba(2, 132, 199, 0.16);
}

.simple-steps-header .sec-title {
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-shadow: 0 3px 0 rgba(8, 7, 33, 0.06);
}

.simple-steps-highlight {
  padding: 5px 16px 8px;
  box-shadow: 0 6px 0 #075985, 0 12px 24px rgba(2, 132, 199, 0.28);
}

.simple-steps-pill {
  padding: 12px 28px;
  border: 2px solid #3730a3;
  box-shadow: 0 8px 0 #c7d2fe, 0 16px 28px rgba(8, 7, 33, 0.2);
  font-size: 0.78rem;
}

.simple-step-card {
  max-width: 1040px;
  min-height: 310px;
  padding: 36px;
  border-width: 3px;
  box-shadow: 0 18px 0 rgba(2, 132, 199, 0.12), 0 26px 42px rgba(2, 132, 199, 0.16);
}

.simple-step-card--blue {
  border-color: #0ea5e9;
}

.simple-step-card--dark {
  border-color: #312e81;
  box-shadow: 0 18px 0 rgba(8, 7, 33, 0.22), 0 28px 44px rgba(8, 7, 33, 0.3);
}

.simple-step-card .simple-step-copy h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-weight: 900;
}

.simple-step-card .simple-step-copy p {
  font-size: 1.04rem;
}

.simple-step-card .simple-step-label {
  padding: 8px 20px;
  font-size: 0.78rem;
  box-shadow: 0 4px 0 rgba(7, 89, 133, 0.25);
}

.simple-step-card--dark .simple-step-label {
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
}

.simple-step-visual img {
  max-height: 250px;
  border-width: 3px;
  box-shadow: 0 14px 28px rgba(8, 7, 33, 0.28);
}

@media (max-width: 700px) {
  .simple-steps-section {
    padding: 58px 0;
  }

  .simple-steps-header {
    margin-bottom: 34px;
  }

  .simple-steps-header .sec-title {
    font-size: 2.05rem;
  }

  .simple-steps-highlight {
    padding: 4px 10px 6px;
  }

  .simple-steps-pill {
    padding: 9px 13px;
    font-size: 0.62rem;
  }

  .simple-step-card,
  .simple-step-card--reverse {
    min-height: 0;
    padding: 24px 18px;
  }
}


/* Tighten the space above the workflow and between its heading and first card */
.simple-steps-section {
  padding-top: 72px;
}

.simple-steps-header {
  margin-bottom: 32px;
}

@media (max-width: 700px) {
  .simple-steps-section {
    padding-top: 42px;
  }

  .simple-steps-header {
    margin-bottom: 24px;
  }
}


/* Reference-style hero headline colors */
.hero-highlight-blue {
  background: linear-gradient(90deg, #1438c9 0%, #0874c9 100%);
}

.hero-highlight-orange {
  background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
}

.hero-word-blue {
  color: #0874c9;
}

.hero-word-purple {
  color: #7c3aed;
}

.hero-word-green {
  color: #059669;
}

.hero-word-orange {
  color: #ea580c;
}

/* Main unified Hero Title System - Wide 4-Line Layout */
.hero-title-reference {
  display: block !important;
  width: 100% !important;
  max-width: 1350px !important;
  margin: 24px auto 28px !important;
  text-align: center !important;
  font-size: clamp(1.4rem, 2.5vw, 2.3rem) !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
  letter-spacing: -0.02em !important;
  color: #0b0f19 !important;
}

.hero-title-reference .hero-highlight {
  display: inline-block !important;
  color: #ffffff !important;
  padding: 0.08em 0.35em !important;
  border-radius: 6px !important;
  line-height: 1.1 !important;
  vertical-align: baseline !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  white-space: nowrap !important;
}

.hero-title-reference .hero-word {
  display: inline !important;
  vertical-align: baseline !important;
}

@media (max-width: 768px) {
  .hero-title-reference {
    font-size: clamp(1.25rem, 5vw, 1.85rem) !important;
    line-height: 1.45 !important;
    margin: 16px auto 20px !important;
    max-width: 100% !important;
  }

  .hero-title-reference br {
    display: none !important;
  }

  .hero-title-reference .hero-highlight {
    white-space: normal !important;
    display: inline !important;
    padding: 0.08em 0.25em !important;
  }
}


/* Tall, Premium Bonus Cards System (600px+ height pass) */
#bonuses .card-panel {
  padding: 45px 40px !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  border-radius: 24px !important;
  margin-bottom: 40px !important;
}

#bonuses .feature-split-grid {
  width: 100% !important;
  min-height: 540px !important;
  align-items: center !important;
}

#bonuses .bonus-visual-shell {
  padding: 32px 24px !important;
  border-radius: 20px !important;
  width: 100% !important;
  max-width: 480px !important;
  display: inline-block !important;
  min-height: 520px !important;
  text-align: center !important;
}

#bonuses .bonus-visual-shell img {
  max-width: 400px !important;
  width: 100% !important;
  height: auto !important;
  min-height: 420px !important;
  max-height: 560px !important;
  object-fit: contain !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35) !important;
  display: block !important;
  margin: 0 auto !important;
}

#bonuses .bonus-badge-tag {
  font-size: 0.95rem !important;
  padding: 6px 18px !important;
  margin-top: 18px !important;
  border-radius: 6px !important;
  letter-spacing: 0.05em !important;
}

#bonuses .bonus-copy-shell h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.2rem) !important;
  margin-bottom: 16px !important;
  line-height: 1.3 !important;
}

#bonuses .bonus-copy-shell p {
  font-size: 1.2rem !important;
  line-height: 1.8 !important;
  margin-bottom: 20px !important;
}

@media (max-width: 768px) {
  #bonuses .card-panel {
    padding: 24px 18px !important;
    min-height: 0 !important;
  }

  #bonuses .bonus-visual-shell {
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 20px 14px !important;
  }

  #bonuses .bonus-visual-shell img {
    max-width: 100% !important;
    min-height: 260px !important;
  }
}

/* Explicit 3-Column and 4-Column Grid Utility System */
.grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.grid-4 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

@media (max-width: 992px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
  }
}

/* UNIVERSAL GRID LINE OVERLAY REMOVAL (PURGING ALL GRID LINES ACROSS ENTIRE WEBSITE) */
.bg-grid-paper,
.bg-img-hero,
.bg-img-features,
.bg-img-pricing,
.bg-img-stack,
[class*="bg-grid"],
[class*="bg-img"] {
  background-image: none !important;
}

.sec-editorial::before,
.sec-editorial::after,
.bg-img-hero::before,
.bg-img-hero::after,
.bg-img-features::before,
.bg-img-features::after,
.bg-img-pricing::before,
.bg-img-pricing::after,
.bg-img-stack::before,
.bg-img-stack::after,
.checkout-section::before,
.checkout-section::after,
[class*="sec-"]::before,
[class*="sec-"]::after {
  background-image: none !important;
  display: none !important;
}

/* ==========================================================================
   SEE YOU ON THE INSIDE - TEAM KALKI AI SECTION
   ========================================================================== */
.see-you-inside-section {
  padding: 60px 20px 40px;
  background: #05070d;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.see-you-inside-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.see-you-inside-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 750px;
  margin: 0 auto;
}

.see-you-inside-circle-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #a855f7, #3b82f6, #ec4899);
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.55), 0 0 15px rgba(59, 130, 246, 0.4);
  margin-bottom: 18px;
  animation: pulseNeon 3s infinite alternate;
}

@keyframes pulseNeon {
  0% {
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5), 0 0 12px rgba(59, 130, 246, 0.3);
  }

  100% {
    box-shadow: 0 0 45px rgba(168, 85, 247, 0.8), 0 0 25px rgba(236, 72, 153, 0.6);
  }
}

.see-you-inside-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #090d16;
}

.see-you-inside-name-badge {
  display: inline-block;
  background: linear-gradient(180deg, #fb923c 0%, #ea580c 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  padding: 10px 36px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.see-you-inside-promise {
  font-size: 1.12rem;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto 16px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 30px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.see-you-inside-ps {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--amber-dark);
  margin-top: 10px;
}

/* ==========================================================================
   BOOK SHOWCASE MARQUEE SLIDER
   ========================================================================== */
.book-marquee-section {
  padding: 40px 0 60px;
  background: #080c14;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.book-marquee-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--amber-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.book-marquee-track {
  display: flex;
  width: max-content;
  gap: 25px;
  animation: marqueeScroll 38s linear infinite;
}

.book-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.book-showcase-card {
  flex-shrink: 0;
  width: 220px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #1e293b;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.book-showcase-card:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: #fbbf24;
  box-shadow: 0 18px 40px rgba(251, 191, 36, 0.35);
}

.book-showcase-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.book-marquee-track--reverse {
  display: flex;
  width: max-content;
  gap: 25px;
  margin-top: 25px;
  animation: marqueeScrollReverse 34s linear infinite;
}

.book-marquee-track--reverse:hover {
  animation-play-state: paused;
}

@keyframes marqueeScrollReverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ==========================================================================
   EXIT INTENT POPUP MODAL STYLES (MATCHING DESIGN REFERENCE)
   ========================================================================== */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 15px;
}

.exit-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.exit-popup-modal {
  position: relative;
  width: 100%;
  max-width: 580px;
  background-color: #ff0505;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

.exit-popup-overlay.active .exit-popup-modal {
  transform: scale(1);
}

.exit-popup-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  background: #ff0505;
  border: 3px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.exit-popup-close:hover {
  transform: scale(1.1);
  background: #cc0000;
}

.exit-popup-header {
  background: #ff0505;
  padding: 18px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.exit-popup-warning-icon {
  width: 48px;
  height: 48px;
  background: #ffcc00;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.exit-popup-title {
  color: #ffffff;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 1.5px;
  font-family: 'Arial Black', Impact, sans-serif;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.exit-popup-body {
  padding: 0 14px 14px 14px;
  background: #ff0505;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.exit-popup-inner {
  background: #ffffff;
  border: 3px dashed #ff0505;
  border-radius: 8px;
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.exit-popup-headline {
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 8px 0;
  font-family: var(--font-body), system-ui, sans-serif;
}

.exit-coupon-badge {
  background: #ff0505;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 26px;
  font-family: inherit;
  display: inline-block;
  letter-spacing: 1px;
}

.exit-popup-discount {
  color: #ff0505;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  margin: 8px 0 16px 0;
  font-family: 'Arial Black', Impact, sans-serif;
  letter-spacing: -0.5px;
}

.exit-popup-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.exit-popup-pricing .strike {
  text-decoration: line-through;
  opacity: 0.8;
}

.exit-popup-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff7a18 0%, #af002d 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 16px 40px;
  border-radius: 14px;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(255, 122, 24, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 90%;
  max-width: 360px;
}

.exit-popup-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 122, 24, 0.6);
}

.exit-popup-cta-btn .cta-arrow {
  font-size: 30px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.exit-popup-cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 540px) {
  .exit-popup-title {
    font-size: 34px;
  }

  .exit-popup-warning-icon {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .exit-popup-headline {
    font-size: 19px;
  }

  .exit-coupon-badge {
    font-size: 20px;
    padding: 2px 6px;
  }

  .exit-popup-discount {
    font-size: 40px;
  }

  .exit-popup-cta-btn {
    font-size: 20px;
    padding: 14px 24px;
  }

  .exit-popup-close {
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* Sub-headline No-Skills Text */
.hero-no-skills-bar {
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #080000;
  margin-bottom: 25px;
  letter-spacing: 0.01em;
  text-transform: none;
}

.hero-no-skills-bar .no-highlight {
  color: #ff0000;
  font-weight: 900;
}

@media (max-width: 768px) {
  .hero-no-skills-bar {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   ANIMATED DARK FORMAT PILL BAR
   ========================================================================== */
.dark-pill-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #090d16;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 2.15rem;
  margin-bottom: 28px;
  border: 1.5px solid rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2), inset 0 0 15px rgba(249, 115, 22, 0.08);
  position: relative;
  overflow: hidden;
  animation: pillPulse 3s ease-in-out infinite alternate;
  font-family: var(--font-body), system-ui, sans-serif;
  letter-spacing: 0.02em;
}

/* Shimmer overlay beam */
.dark-pill-bar::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.22) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  animation: pillShimmer 3.5s linear infinite;
  pointer-events: none;
}

.pill-text-lead {
  color: #ffffff;
}

.pill-rotator-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.35s ease, transform 0.35s ease;
  opacity: 1;
  transform: translateY(0);
}

.pill-rotator-group.changing {
  opacity: 0;
  transform: translateY(-8px);
}

.pill-dot {
  color: #64748b;
  font-size: 0.9rem;
}

.pill-word {
  display: inline-block;
  font-weight: 900;
}

.pill-word-1 {
  color: #f97316;
  animation: wordGlowOrange 2.4s ease-in-out infinite alternate;
}

.pill-word-2 {
  color: #f59e0b;
  animation: wordGlowYellow 2.4s ease-in-out 0.8s infinite alternate;
}

.pill-word-3 {
  color: #ea580c;
  animation: wordGlowOrange 2.4s ease-in-out 1.6s infinite alternate;
}

/* Keyframe Animations */
@keyframes pillPulse {
  0% {
    transform: translateY(0) scale(1);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.2), inset 0 0 10px rgba(249, 115, 22, 0.05);
  }

  100% {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(251, 191, 36, 0.8);
    box-shadow: 0 0 32px rgba(251, 191, 36, 0.45), inset 0 0 20px rgba(251, 191, 36, 0.12);
  }
}

@keyframes pillShimmer {
  0% {
    left: -60%;
  }

  30%,
  100% {
    left: 140%;
  }
}

@keyframes wordGlowOrange {
  0% {
    text-shadow: 0 0 0px transparent;
    transform: scale(1);
  }

  100% {
    text-shadow: 0 0 14px rgba(249, 115, 22, 0.9);
    transform: scale(1.06);
  }
}

@keyframes wordGlowYellow {
  0% {
    text-shadow: 0 0 0px transparent;
    transform: scale(1);
  }

  100% {
    text-shadow: 0 0 14px rgba(245, 158, 11, 0.9);
    transform: scale(1.06);
  }
}

@media (max-width: 640px) {
  .dark-pill-bar {
    font-size: 0.9rem;
    padding: 8px 18px;
    gap: 8px;
  }
}

/* ==========================================================================
   KDP MAFIA JV PAGE STYLES
   ========================================================================== */
.jv-page {
  background-color: #080a10;
  color: #e2e8f0;
}

.jv-page h1,
.jv-page h2,
.jv-page h3,
.jv-page h4,
.jv-page h5,
.jv-page .sec-title {
  color: #ffffff !important;
}

.jv-page .sec-desc {
  color: #94a3b8;
}

.jv-ticker {
  background: linear-gradient(90deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  border-bottom: 1px solid rgba(129, 140, 248, 0.3);
}

.jv-ticker-btn {
  background: #f59e0b !important;
  color: #000000 !important;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.jv-logo-tag {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  margin-left: 8px;
  text-transform: uppercase;
}

.jv-header-badge {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
}

.jv-top-cta {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.jv-hero-sec {
  background: url('assets/jv_hero_bg.png?v=2') center center / cover no-repeat;
  padding-top: 55px;
  padding-bottom: 70px;
  position: relative;
}

.jv-eyebrow {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #93c5fd;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.jv-hero-title {
  color: #ffffff !important;
}

.jv-hero-desc {
  color: #cbd5e1 !important;
  max-width: 900px;
  margin: 0 auto 35px auto;
  font-size: 1.25rem;
}

.jv-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  max-width: 980px;
  margin: 0 auto 40px auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.jv-stat-item {
  text-align: center;
  flex: 1;
}

.jv-stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.jv-stat-lbl {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jv-stat-divider {
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
}

.jv-demo-shell {
  max-width: 900px;
  margin: 0 auto 40px auto;
  border: 2px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.25);
}

.jv-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.jv-btn-lg {
  font-size: 1.35rem !important;
  padding: 20px 42px !important;
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-md) !important;
}

.jv-sub-action-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.jv-quick-link {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.jv-quick-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.jv-dot-sep {
  color: rgba(255, 255, 255, 0.3);
}

/* LAUNCH DETAILS SECTION */
.jv-sec-dark {
  background: url('assets/jv_calendar_bg.jpg') center center / cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 85px 0;
  position: relative;
}

.jv-sec-dark .sec-title,
.jv-sec-dark .dark-mode-title {
  color: #0b1329 !important;
}

.jv-sec-dark .sec-desc,
.jv-sec-dark .dark-mode-desc {
  color: #334155 !important;
  font-weight: 600;
}

.gold-eyebrow {
  background: rgba(2, 132, 199, 0.15);
  border-color: rgba(2, 132, 199, 0.4);
  color: #0284c7;
  font-weight: 700;
}

.jv-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 45px;
}

.jv-detail-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(2, 132, 199, 0.25);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.12);
}

.jv-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 132, 199, 0.6);
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.22);
}

.jv-detail-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.jv-detail-card h3 {
  font-size: 0.85rem;
  color: #475569 !important;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.jv-detail-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #0b1329;
  margin-bottom: 4px;
}

.jv-detail-sub {
  font-size: 0.85rem;
  color: #475569;
}

/* REASONS SECTION */
.jv-sec-reasons {
  background: url('assets/jv_reasons_bg.jpg') center center / cover no-repeat;
  padding: 95px 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
}

.jv-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.jv-reason-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.jv-reason-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
}

.jv-reason-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.jv-reason-card h3 {
  font-size: 1.25rem;
  color: #f8fafc;
  margin-bottom: 12px;
}

.jv-reason-card p {
  color: #94a3b8;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* PRIZES SECTION */
.jv-sec-prizes {
  background: url('assets/jv_prizes_bg.png?v=2') center center / cover no-repeat;
  padding: 95px 0;
  border-top: 1px solid rgba(139, 92, 246, 0.25);
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
  position: relative;
}

.jv-sec-prizes .sec-title,
.jv-sec-prizes .dark-mode-title {
  color: #ffffff !important;
}

/* CONTEST & PRIZES UPDATED STYLES */
.jv-contest-alert-banner {
  background: rgba(220, 38, 38, 0.12);
  border: 1.5px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  max-width: 860px;
  margin: 20px auto 35px auto;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.02em;
}

.jv-contest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 960px;
  margin: 0 auto 40px auto;
}

.jv-contest-box-card {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.jv-contest-box-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.5);
}

.jv-contest-box-card.speed-card {
  border-top: 4px solid #f59e0b;
}

.jv-contest-box-card.closing-card {
  border-top: 4px solid #3b82f6;
}

.jv-contest-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #ffffff !important;
  margin-bottom: 6px;
}

.jv-contest-card-duration {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 24px;
}

.jv-contest-places {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jv-contest-place-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
}

.jv-contest-place-name {
  color: #f8fafc;
  font-size: 1rem;
}

.jv-contest-place-val {
  font-family: var(--font-display);
  color: #fbbf24;
  font-size: 1.2rem;
}

.jv-contest-policy-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.68;
}

.jv-contest-policy-card p {
  margin-bottom: 12px;
}

.jv-contest-policy-card p:last-child {
  margin-bottom: 0;
}

.jv-contest-policy-title {
  color: #ffffff;
  font-weight: 800;
}

/* FUNNEL SECTION */
.jv-sec-funnel {
  background: url('assets/jv_funnel_bg.jpg') center center / cover no-repeat;
  padding: 95px 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
}

.jv-funnel-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.jv-funnel-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.jv-funnel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(30, 41, 59, 0.8);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 10px;
}

.jv-funnel-type {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #93c5fd;
}

.jv-funnel-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #ffffff;
}

.jv-funnel-commission {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.jv-funnel-body {
  padding: 24px;
}

.jv-funnel-body h3 {
  font-size: 1.2rem;
  color: #f8fafc;
  margin-bottom: 8px;
}

.jv-funnel-body p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.fe-card {
  border-color: rgba(245, 158, 11, 0.4);
}

.fe-card .jv-funnel-header {
  background: rgba(245, 158, 11, 0.15);
}

.fe-card .jv-funnel-type {
  color: #fbbf24;
}

/* LINK GENERATOR SECTION */
.jv-sec-linkgen {
  background: url('assets/jv_linkgen_bg.jpg?v=1') center center / cover no-repeat;
  padding: 70px 0;
  position: relative;
}

.jv-sec-linkgen .sec-title {
  color: #0b1329 !important;
  margin-bottom: 16px;
}

.jv-sec-linkgen .sec-desc {
  color: #334155 !important;
  font-weight: 600;
  margin-bottom: 25px;
}

.jv-linkgen-split {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 35px;
  align-items: center;
}

.jv-linkgen-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jv-linkgen-img {
  max-width: 100%;
  max-height: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.18));
  transition: transform 0.3s ease;
}

.jv-linkgen-img:hover {
  transform: translateY(-4px) scale(1.02);
}

.jv-linkgen-content .jv-generator-box {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

@media (max-width: 880px) {
  .jv-linkgen-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .jv-linkgen-content {
    text-align: center !important;
  }
  .jv-linkgen-content .sec-desc {
    text-align: center !important;
  }
}

.jv-input-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.jv-input-text {
  flex: 1;
  min-width: 280px;
  background: #0b0f19;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 16px 20px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  outline: none;
  font-family: var(--font-body);
}

.jv-input-text:focus {
  border-color: #f59e0b;
}

.jv-gen-btn {
  padding: 16px 28px !important;
  font-size: 0.95rem !important;
  border-radius: var(--radius-sm) !important;
}

.jv-output-box {
  margin-top: 24px;
  text-align: left;
  background: rgba(11, 15, 25, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 20px;
  border-radius: var(--radius-sm);
}

.jv-out-label {
  font-size: 0.85rem;
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 8px;
}

.jv-out-link-wrap {
  display: flex;
  gap: 10px;
}

.jv-output-text {
  flex: 1;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #34d399;
  font-family: var(--font-mono);
  padding: 12px 16px;
  font-size: 0.9rem;
  border-radius: 4px;
}

.jv-copy-btn {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 0 18px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.jv-copy-btn:hover {
  background: #1d4ed8;
}

/* EMAIL SWIPES SECTION */
.jv-sec-swipes {
  background: #080a10;
  padding: 90px 0;
}

.jv-swipes-container {
  max-width: 900px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.jv-swipe-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.jv-swipe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1e293b;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 12px;
}

.jv-swipe-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fbbf24;
}

.jv-swipe-copy-all-btn {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.jv-swipe-copy-all-btn:hover {
  background: #f59e0b;
  color: #000000;
}

.jv-swipe-body {
  padding: 28px;
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.jv-subject-list {
  list-style: none;
  margin: 10px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jv-subject-list li {
  background: rgba(30, 41, 59, 0.5);
  padding: 8px 14px;
  border-radius: 4px;
  color: #f8fafc;
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.jv-swipe-hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.jv-email-text p {
  margin-bottom: 14px;
}

/* PROMO ASSETS SECTION */
.jv-sec-assets {
  background: #0d111d;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.jv-assets-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.jv-asset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 0.2s;
}

.jv-asset-btn:hover {
  transform: translateY(-3px);
}

.jv-asset-btn.gold-btn {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000000;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.jv-asset-btn.dark-btn {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* CONTACT SECTION */
.jv-sec-contact {
  background: url('assets/jv_contact_bg.png?v=1') center center / cover no-repeat;
  padding: 95px 0;
  position: relative;
}

.jv-sec-contact .sec-title,
.jv-sec-contact .dark-mode-title {
  color: #0b1329 !important;
}

.jv-sec-contact .sec-desc,
.jv-sec-contact .dark-mode-desc {
  color: #334155 !important;
  font-weight: 600;
}

.jv-contact-cards-wrap {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.jv-contact-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 40px;
  border-radius: var(--radius-md);
  max-width: 500px;
  text-align: center;
}

.jv-contact-avatar {
  font-size: 3rem;
  margin-bottom: 12px;
}

.jv-contact-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.jv-contact-role {
  color: #f59e0b;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.jv-contact-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.jv-contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: opacity 0.2s;
}

.jv-contact-btn:hover {
  opacity: 0.9;
}

.jv-contact-btn.email {
  background: #2563eb;
  color: #ffffff;
}

.jv-contact-btn.telegram {
  background: #0088cc;
  color: #ffffff;
}

.jv-contact-btn.teams {
  background: #5b5fc7;
  color: #ffffff;
}

/* FOOTER */
.jv-footer {
  background: #05070c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
}

.jv-footer-text {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.jv-footer-sub {
  color: #475569;
  font-size: 0.78rem;
  max-width: 800px;
  margin: 0 auto;
}

/* RESPONSIVE JV BREAKPOINTS */
@media (max-width: 768px) {
  .jv-stats-bar {
    flex-direction: column;
    gap: 16px;
  }
  .jv-stat-divider {
    width: 80%;
    height: 1px;
  }
  .jv-hero-title {
    font-size: 2rem !important;
  }
  .jv-btn-lg {
    font-size: 1.1rem !important;
    padding: 16px 24px !important;
  }
}

/* ==========================================================================
   TEAM KALKI AI AFFILIATE SUPPORT SECTION STYLES
   ========================================================================== */
.jv-sec-kalki {
  background: url('assets/jv_kalki_bg.jpg') center center / cover no-repeat;
  padding: 95px 0;
  border-top: 1px solid rgba(139, 92, 246, 0.25);
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
  position: relative;
}

.jv-sec-kalki .sec-title,
.jv-sec-kalki .dark-mode-title {
  color: #0b1329 !important;
}

.jv-sec-kalki .sec-desc,
.jv-sec-kalki .dark-mode-desc {
  color: #334155 !important;
  font-weight: 600;
}

.kalki-eyebrow {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #6d28d9;
  font-weight: 700;
}

.kalki-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.kalki-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(139, 92, 246, 0.25);
  padding: 32px 26px;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.12);
}

.kalki-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 16px 36px rgba(139, 92, 246, 0.22);
}

.kalki-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.kalki-card h3 {
  font-size: 1.2rem;
  color: #000000 !important;
  font-weight: 700;
  margin-bottom: 10px;
}

.kalki-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.kalki-guarantee-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  max-width: 860px;
  margin: 50px auto 0 auto;
  text-align: center;
  box-shadow: 0 14px 35px rgba(139, 92, 246, 0.15);
  backdrop-filter: blur(12px);
}

.kalki-guarantee-badge {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: #d97706;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.kalki-guarantee-text {
  font-size: 1.12rem;
  color: #1e293b;
  line-height: 1.7;
}

.kalki-guarantee-text strong {
  color: #6d28d9;
}

/* ==========================================================================
   FLOATING PILL NAVBAR STYLES (MATCHING REFERENCE IMAGE)
   ========================================================================== */
.jv-pill-header {
  position: sticky;
  top: 15px;
  z-index: 1000;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.jv-pill-nav-container {
  background: #333333;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 6px 12px 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1050px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}

.jv-pill-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.jv-pill-logo img {
  height: 56px;
  width: auto;
  max-width: 220px;
  display: block;
}

.jv-pill-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.jv-pill-menu-item {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.jv-pill-menu-item:hover {
  color: #60a5fa;
}

.jv-pill-btn {
  background: #3b82f6;
  color: #ffffff !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.jv-pill-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.5);
}

@media (max-width: 850px) {
  .jv-pill-menu {
    display: none;
  }
  .jv-pill-nav-container {
    padding: 8px 16px;
  }
}

.kalki-logo-header-wrap {
  margin: 22px auto 25px auto;
  display: flex;
  justify-content: center;
}

.kalki-header-logo {
  height: 240px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 0 35px rgba(56, 189, 248, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.kalki-header-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 45px rgba(56, 189, 248, 0.55));
}

/* ==========================================================================
   OTO Dual Action Buttons (Side-by-Side Accept & Decline CTA)
   ========================================================================== */
.oto-dual-cta-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  max-width: 960px;
  margin: 32px auto 0;
  flex-wrap: wrap;
}

.oto-cta-col {
  flex: 1 1 340px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none !important;
}

.oto-btn-box-green {
  width: 100%;
  flex: 1 1 auto;
  min-height: 84px;
  background: #00c853;
  color: #ffffff !important;
  font-family: var(--font-heading, sans-serif);
  font-size: 1.2rem;
  font-weight: 900;
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 200, 83, 0.4);
  transition: all 0.25s ease;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.oto-btn-box-green:hover {
  background: #00e676;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 230, 118, 0.5);
}

.oto-btn-box-red {
  width: 100%;
  flex: 1 1 auto;
  min-height: 84px;
  background: #ff0000;
  color: #ffffff !important;
  font-family: var(--font-heading, sans-serif);
  font-size: 1.2rem;
  font-weight: 900;
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
  transition: all 0.25s ease;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.oto-btn-box-red:hover {
  background: #ff3333;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 51, 51, 0.5);
}

.oto-btn-subcaption {
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
  text-align: center;
}

/* ==========================================================================
   DOWNSELL MODAL POPUP STYLES
   ========================================================================== */
.downsell-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.downsell-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.downsell-modal-card {
  background: #0f172a;
  border: 3px solid #fbbf24;
  border-radius: 20px;
  max-width: 620px;
  width: 100%;
  padding: 35px 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 35px rgba(251, 191, 36, 0.3);
  text-align: center;
  position: relative;
  color: #ffffff;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
}

.downsell-modal-overlay.active .downsell-modal-card {
  transform: scale(1);
}

.downsell-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.downsell-modal-close:hover {
  color: #ffffff;
}

.downsell-badge {
  display: inline-block;
  background: #dc2626;
  color: #ffffff;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  animation: pulse-downsell 2s infinite;
}

@keyframes pulse-downsell {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.downsell-title {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.downsell-price-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(251, 191, 36, 0.5);
  border-radius: 12px;
  padding: 12px 20px;
  margin: 16px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.downsell-old-price {
  font-size: 1.15rem;
  text-decoration: line-through;
  color: #94a3b8;
}

.downsell-new-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: #10b981;
}

.downsell-bullet-list {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.downsell-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.downsell-btn-buy {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  font-family: var(--font-heading, sans-serif);
  font-size: 1.2rem;
  font-weight: 900;
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  transition: all 0.25s ease;
  box-sizing: border-box;
  text-align: center;
  border: none;
}

.downsell-btn-buy:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
}

.downsell-decline-link {
  display: inline-block;
  margin-top: 16px;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.downsell-decline-link:hover {
  color: #f87171;
}

/* ==========================================================================
   30 DAY FULL MONEY-BACK GUARANTEE SECTION (REFERENCE MATCH)
   ========================================================================== */
.guarantee-30day-section {
  padding: 60px 0 80px 0;
  background: #ffffff;
  position: relative;
}

.guarantee-30day-title {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: #000000;
  text-align: center;
  margin-bottom: 75px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.guarantee-30day-box {
  background: #000000;
  border: 3px solid #ea580c;
  border-radius: 4px;
  max-width: 860px;
  margin: 0 auto;
  padding: 75px 48px 42px 48px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.guarantee-badge-wrap {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.guarantee-gold-badge {
  width: 145px;
  height: 145px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.guarantee-30day-text {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 26px;
  text-align: left;
}

.guarantee-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guarantee-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.4;
}

.guarantee-box-icon {
  flex-shrink: 0;
  color: #ffffff;
  stroke-width: 2.2px;
}

@media (max-width: 768px) {
  .guarantee-30day-section {
    padding: 40px 0 60px 0;
  }
  .guarantee-30day-title {
    margin-bottom: 60px;
  }
  .guarantee-30day-box {
    padding: 65px 22px 30px 22px;
    border-width: 2.5px;
  }
  .guarantee-gold-badge {
    width: 120px;
    height: 120px;
  }
  .guarantee-badge-wrap {
    top: -55px;
  }
  .guarantee-30day-text {
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .guarantee-checklist li {
    font-size: 0.95rem;
    align-items: flex-start;
  }
  .guarantee-box-icon {
    margin-top: 2px;
  }
}