/* =================================================================
   nineclip.css v3.0 — NineClip HindiBooks Design System
   DeepSeek-style · Light cream · Saffron palette · Mobile-first
   ================================================================= */

/* -----------------------------------------------------------------
   1. TOKENS
   ----------------------------------------------------------------- */
:root {
  /* Backgrounds */
  --nc-bg:          #FFFDF7;
  --nc-bg-alt:      #FFF8ED;
  --nc-bg-card:     #FFFFFF;
  --nc-bg-hero:     linear-gradient(135deg, #FFF8ED 0%, #FFF3E0 100%);
  --nc-bg-section:  #FFF8ED;
  --nc-bg-footer:   #1A1208;

  /* Brand */
  --nc-saffron:     #E8751A;
  --nc-saffron-dk:  #C85E0A;
  --nc-saffron-lt:  #FFF3E8;
  --nc-saffron-mid: rgba(232,117,26,0.12);
  --nc-gold:        #C8900A;
  --nc-gold-lt:     #FFF8E1;
  --nc-green:       #2E7D52;
  --nc-green-lt:    #E8F5EE;
  --nc-red:         #C0392B;

  /* Text */
  --nc-ink:         #1A1208;
  --nc-ink-soft:    #5C4A32;
  --nc-ink-muted:   #9C8060;
  --nc-ink-light:   #C4A882;

  /* Borders */
  --nc-border:      #EDE0CC;
  --nc-border-card: rgba(232,117,26,0.15);

  /* Typography */
  --nc-font:        'Noto Sans Devanagari', 'Inter', Arial, sans-serif;
  --nc-font-brand:  'EB Garamond', 'Palatino Linotype', serif;

  /* Spacing */
  --nc-max:         700px;
  --nc-pad:         1.25rem;
  --nc-r:           16px;
  --nc-r-pill:      100px;
  --nc-r-card:      20px;

  /* Gradients */
  --nc-grad-btn:    linear-gradient(105deg, #E8751A 0%, #C85E0A 100%);
  --nc-grad-title:  linear-gradient(120deg, #C85E0A, #E8A020);

  /* Shadows */
  --nc-shadow-sm:   0 2px 12px rgba(26,18,8,0.08);
  --nc-shadow-md:   0 8px 24px rgba(26,18,8,0.10);
  --nc-shadow-lg:   0 20px 50px rgba(26,18,8,0.14);
  --nc-shadow-btn:  0 8px 20px rgba(232,117,26,0.35);
  --nc-shadow-book: 0 24px 48px rgba(26,18,8,0.25), 4px 4px 0 rgba(200,90,10,0.3);
}

/* -----------------------------------------------------------------
   2. RESET & BASE
   ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--nc-font);
  background: var(--nc-bg);
  color: var(--nc-ink);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--nc-saffron); text-decoration: none; }
a:hover { text-decoration: underline; }

/* -----------------------------------------------------------------
   3. LAYOUT
   ----------------------------------------------------------------- */
.nc-container {
  width: 100%;
  max-width: var(--nc-max);
  margin: 0 auto;
  padding: 0 var(--nc-pad);
}
.nc-section     { padding: 3rem 0; }
.nc-section-alt { padding: 3rem 0; background: var(--nc-bg-section); }
.nc-divider     { border: none; height: 1px; background: var(--nc-border); margin: 0; }

/* -----------------------------------------------------------------
   4. ANNOUNCEMENT BAR
   ----------------------------------------------------------------- */
.nc-topbar {
  background: var(--nc-saffron);
  color: #fff;
  text-align: center;
  padding: 0.5rem var(--nc-pad);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* -----------------------------------------------------------------
   5. HEADER / NAV
   ----------------------------------------------------------------- */
.nc-header {
  background: rgba(255,253,247,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nc-border);
  padding: 0.9rem var(--nc-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nc-brand {
  font-family: var(--nc-font-brand);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nc-ink);
  letter-spacing: 0.03em;
}
.nc-brand em { font-style: normal; color: var(--nc-saffron); }
.nc-brand-tag {
  font-size: 0.68rem;
  color: var(--nc-ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.5rem;
  font-family: var(--nc-font);
}

/* -----------------------------------------------------------------
   6. HERO
   ----------------------------------------------------------------- */
.nc-hero {
  background: var(--nc-bg-hero);
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--nc-border);
}
.nc-hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.nc-hero-image { flex: 1; min-width: 140px; max-width: 200px; margin: 0 auto; }
.nc-hero-content { flex: 2; min-width: 260px; }

.nc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--nc-saffron-mid);
  color: var(--nc-saffron-dk);
  border: 1px solid var(--nc-border-card);
  padding: 0.3rem 0.9rem;
  border-radius: var(--nc-r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.nc-hero-title {
  font-size: clamp(1.65rem, 5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--nc-ink);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}
.nc-hero-title .nc-grad {
  background: var(--nc-grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nc-hero-desc {
  font-size: 1rem;
  color: var(--nc-ink-soft);
  border-left: 4px solid var(--nc-saffron);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.nc-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.nc-stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--nc-ink-soft);
  font-weight: 500;
}
.nc-stat i { color: var(--nc-saffron); }

/* Book cover */
.nc-book-cover {
  width: 100%;
  max-width: 180px;
  border-radius: 10px;
  box-shadow: var(--nc-shadow-book);
  transform: perspective(600px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.nc-book-cover:hover { transform: perspective(600px) rotateY(0) rotateX(0); }

/* Stars */
.nc-stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--nc-ink-soft);
}
.nc-stars i { color: #F5A623; font-size: 0.9rem; }
.nc-stars strong { color: var(--nc-ink); }

/* -----------------------------------------------------------------
   7. BUTTONS
   ----------------------------------------------------------------- */
.nc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.75rem;
  background: var(--nc-grad-btn);
  color: #fff;
  font-family: var(--nc-font);
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  border-radius: var(--nc-r-pill);
  cursor: pointer;
  box-shadow: var(--nc-shadow-btn);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nc-btn-primary:hover  { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(232,117,26,0.45); color: #fff; text-decoration: none; }
.nc-btn-primary:active { transform: translateY(0); }
.nc-btn-primary:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.nc-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.75rem;
  background: #fff;
  color: var(--nc-saffron);
  font-family: var(--nc-font);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--nc-saffron);
  border-radius: var(--nc-r-pill);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.nc-btn-secondary:hover { background: var(--nc-saffron-lt); transform: translateY(-2px); color: var(--nc-saffron); text-decoration: none; }

.nc-cta-group { display: flex; flex-direction: column; gap: 0.75rem; }
.nc-btn-note  { text-align: center; font-size: 0.78rem; color: var(--nc-ink-muted); margin-top: 0.5rem; }

/* -----------------------------------------------------------------
   8. SECTION LABELS & TITLES
   ----------------------------------------------------------------- */
.nc-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nc-saffron);
  margin-bottom: 0.5rem;
}
.nc-section-title {
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--nc-ink);
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.nc-section-sub {
  text-align: center;
  font-size: 0.95rem;
  color: var(--nc-ink-soft);
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* -----------------------------------------------------------------
   9. PAIN POINTS
   ----------------------------------------------------------------- */
.nc-pain-grid { display: flex; flex-direction: column; gap: 0.85rem; }
.nc-pain-card {
  background: var(--nc-bg-card);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-r-card);
  padding: 1.1rem 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--nc-shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.nc-pain-card:hover { box-shadow: var(--nc-shadow-md); transform: translateY(-2px); }
.nc-pain-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--nc-saffron-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.nc-pain-title { font-size: 0.92rem; font-weight: 700; color: var(--nc-ink); margin-bottom: 0.2rem; }
.nc-pain-desc  { font-size: 0.85rem; color: var(--nc-ink-soft); line-height: 1.6; }

/* -----------------------------------------------------------------
   10. FEATURE CARDS (Benefits grid)
   ----------------------------------------------------------------- */
.nc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.nc-feature-card {
  background: var(--nc-bg-card);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-r-card);
  padding: 1.1rem 1rem;
  box-shadow: var(--nc-shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.nc-feature-card:hover { box-shadow: var(--nc-shadow-md); transform: translateY(-2px); }
.nc-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--nc-saffron-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  color: var(--nc-saffron);
}
.nc-feature-title { font-size: 0.88rem; font-weight: 700; color: var(--nc-ink); margin-bottom: 0.35rem; line-height: 1.3; }
.nc-feature-desc  { font-size: 0.8rem; color: var(--nc-ink-soft); line-height: 1.55; }

/* -----------------------------------------------------------------
   11. ABOUT / BOOK DETAIL (side-by-side)
   ----------------------------------------------------------------- */
.nc-about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  align-items: center;
}
.nc-about-img {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  margin: 0 auto;
}
.nc-about-img img { border-radius: var(--nc-r-card); box-shadow: var(--nc-shadow-md); }
.nc-about-content { flex: 2; min-width: 240px; }
.nc-about-title { font-size: 1.2rem; font-weight: 800; color: var(--nc-ink); margin-bottom: 0.75rem; line-height: 1.35; }
.nc-about-text  { font-size: 0.9rem; color: var(--nc-ink-soft); line-height: 1.75; margin-bottom: 0.75rem; }
.nc-check-list  { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.nc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--nc-ink-soft);
}
.nc-check-list i { color: var(--nc-green); margin-top: 0.15rem; flex-shrink: 0; }

/* -----------------------------------------------------------------
   12. TESTIMONIALS
   ----------------------------------------------------------------- */
.nc-testi-grid { display: flex; flex-direction: column; gap: 1rem; }
.nc-testi-card {
  background: var(--nc-bg-card);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-r-card);
  padding: 1.25rem;
  box-shadow: var(--nc-shadow-sm);
}
.nc-testi-stars { margin-bottom: 0.6rem; }
.nc-testi-stars i { color: #F5A623; font-size: 0.9rem; }
.nc-testi-text {
  font-size: 0.92rem;
  color: var(--nc-ink-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.nc-testi-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nc-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nc-border);
  flex-shrink: 0;
}
.nc-testi-avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--nc-saffron-lt);
  border: 2px solid var(--nc-border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--nc-saffron);
  flex-shrink: 0;
}
.nc-testi-name  { font-size: 0.88rem; font-weight: 700; color: var(--nc-ink); }
.nc-testi-role  { font-size: 0.76rem; color: var(--nc-ink-muted); }
.nc-verified    { font-size: 0.7rem; color: var(--nc-green); font-weight: 600; display: flex; align-items: center; gap: 0.2rem; margin-top: 0.1rem; }

/* -----------------------------------------------------------------
   13. STATS BAR
   ----------------------------------------------------------------- */
.nc-stats-bar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--nc-bg-card);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-r-card);
  padding: 1.25rem 1rem;
  box-shadow: var(--nc-shadow-sm);
}
.nc-stat-block { text-align: center; }
.nc-stat-num   { font-size: 1.6rem; font-weight: 900; color: var(--nc-saffron); line-height: 1; }
.nc-stat-lbl   { font-size: 0.75rem; color: var(--nc-ink-muted); margin-top: 0.2rem; }

/* -----------------------------------------------------------------
   14. PRICING CARD
   ----------------------------------------------------------------- */
.nc-pricing-card {
  background: var(--nc-bg-card);
  border: 2px solid var(--nc-border-card);
  border-radius: var(--nc-r-card);
  box-shadow: var(--nc-shadow-lg);
  overflow: hidden;
}
.nc-pricing-header {
  background: var(--nc-grad-btn);
  padding: 1rem 1.5rem;
  text-align: center;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nc-pricing-body { padding: 1.75rem 1.5rem; }
.nc-pricing-title { font-size: 1rem; font-weight: 700; color: var(--nc-ink); margin-bottom: 1rem; text-align: center; }
.nc-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.nc-price-now  { font-size: 3.2rem; font-weight: 900; color: var(--nc-saffron); line-height: 1; }
.nc-price-was  { font-size: 1.3rem; color: var(--nc-ink-muted); text-decoration: line-through; }
.nc-price-save {
  display: inline-block;
  background: var(--nc-green-lt);
  color: var(--nc-green);
  border: 1px solid rgba(46,125,82,0.25);
  padding: 0.2rem 0.7rem;
  border-radius: var(--nc-r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.nc-price-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--nc-bg-alt);
  border-radius: var(--nc-r);
}
.nc-price-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--nc-ink-soft);
}
.nc-price-perks i { color: var(--nc-green); flex-shrink: 0; }

/* -----------------------------------------------------------------
   15. BUYER FORM
   ----------------------------------------------------------------- */
.nc-form { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 0.85rem; }
.nc-input {
  width: 100%;
  height: 3rem;
  padding: 0 1.1rem;
  background: var(--nc-bg-alt);
  border: 1.5px solid var(--nc-border);
  border-radius: var(--nc-r-pill);
  font-family: var(--nc-font);
  font-size: 0.95rem;
  color: var(--nc-ink);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.nc-input:focus { border-color: var(--nc-saffron); background: #fff; }
.nc-input::placeholder { color: var(--nc-ink-light); }

/* -----------------------------------------------------------------
   16. GUARANTEE
   ----------------------------------------------------------------- */
.nc-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--nc-green-lt);
  border: 1px solid rgba(46,125,82,0.2);
  border-radius: var(--nc-r);
  padding: 1rem 1.1rem;
  margin-top: 1rem;
}
.nc-guarantee-icon  { font-size: 1.75rem; flex-shrink: 0; }
.nc-guarantee-title { font-size: 0.88rem; font-weight: 700; color: var(--nc-ink); margin-bottom: 0.2rem; }
.nc-guarantee-desc  { font-size: 0.8rem; color: var(--nc-ink-soft); line-height: 1.5; }

/* -----------------------------------------------------------------
   17. TRUST BAR
   ----------------------------------------------------------------- */
.nc-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: center;
  padding: 1.25rem var(--nc-pad);
  background: var(--nc-bg-card);
  border-top: 1px solid var(--nc-border);
  border-bottom: 1px solid var(--nc-border);
}
.nc-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--nc-ink-soft);
  font-weight: 500;
}
.nc-trust-item i { color: var(--nc-saffron); font-size: 0.9rem; }

/* -----------------------------------------------------------------
   18. FAQ ACCORDION
   ----------------------------------------------------------------- */
.nc-faq-wrap { display: flex; flex-direction: column; }
.nc-faq-item { border-bottom: 1px solid var(--nc-border); }
.nc-faq-item:first-child { border-top: 1px solid var(--nc-border); }
.nc-faq-toggle { display: none; }
.nc-faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--nc-ink);
  cursor: pointer;
  gap: 1rem;
  user-select: none;
  line-height: 1.4;
}
.nc-faq-label::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--nc-saffron);
  flex-shrink: 0;
  font-weight: 400;
  transition: transform 0.25s;
}
.nc-faq-toggle:checked + .nc-faq-label::after { transform: rotate(45deg); }
.nc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.88rem;
  color: var(--nc-ink-soft);
  line-height: 1.7;
}
.nc-faq-toggle:checked ~ .nc-faq-answer { max-height: 300px; padding-bottom: 1rem; }

/* -----------------------------------------------------------------
   19. PUBLISHER SECTION
   ----------------------------------------------------------------- */
.nc-publisher-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--nc-bg-card);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-r-card);
  padding: 1.25rem;
  box-shadow: var(--nc-shadow-sm);
}
.nc-publisher-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--nc-saffron-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--nc-saffron);
}
.nc-publisher-name { font-size: 1rem; font-weight: 700; color: var(--nc-ink); margin-bottom: 0.35rem; }
.nc-publisher-desc { font-size: 0.85rem; color: var(--nc-ink-soft); line-height: 1.65; }

/* -----------------------------------------------------------------
   20. URGENCY / SOCIAL PROOF
   ----------------------------------------------------------------- */
.nc-urgency-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #FFF5F5;
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: var(--nc-r-pill);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--nc-ink-soft);
  margin-bottom: 1rem;
}
.nc-urgency-dot {
  width: 8px;
  height: 8px;
  background: var(--nc-red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: nc-pulse 1.5s infinite;
}
@keyframes nc-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.75); }
}
.nc-social-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--nc-saffron-lt);
  border: 1px solid var(--nc-border-card);
  border-radius: var(--nc-r-pill);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--nc-ink-soft);
  margin-bottom: 1rem;
}

/* -----------------------------------------------------------------
   21. STICKY BOTTOM CTA
   ----------------------------------------------------------------- */
.nc-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,253,247,0.97);
  border-top: 1px solid var(--nc-border);
  padding: 0.85rem var(--nc-pad);
  backdrop-filter: blur(12px);
  display: none;
  box-shadow: 0 -4px 20px rgba(26,18,8,0.10);
}
.nc-sticky-inner {
  max-width: var(--nc-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nc-sticky-price .amt { font-size: 1.45rem; font-weight: 900; color: var(--nc-saffron); line-height: 1; }
.nc-sticky-price .was { font-size: 0.78rem; color: var(--nc-ink-muted); text-decoration: line-through; }
.nc-sticky-price .lbl { font-size: 0.65rem; color: var(--nc-ink-muted); }
.nc-sticky-btn {
  flex: 1;
  padding: 0.85rem;
  background: var(--nc-grad-btn);
  color: #fff;
  font-family: var(--nc-font);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  border: none;
  border-radius: var(--nc-r-pill);
  cursor: pointer;
  box-shadow: var(--nc-shadow-btn);
}

/* -----------------------------------------------------------------
   22. LOADING / THANK YOU
   ----------------------------------------------------------------- */
.nc-loading {
  display: inline-block;
  width: 1rem; height: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: nc-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.4rem;
}
@keyframes nc-spin { to { transform: rotate(360deg); } }
.nc-thankyou {
  text-align: center;
  padding: 2rem var(--nc-pad);
  background: var(--nc-green-lt);
  border: 1px solid rgba(46,125,82,0.2);
  border-radius: var(--nc-r-card);
}
.nc-thankyou-icon  { font-size: 3rem; margin-bottom: 0.75rem; }
.nc-thankyou-title { font-size: 1.3rem; font-weight: 800; color: var(--nc-ink); margin-bottom: 0.5rem; }
.nc-thankyou-desc  { font-size: 0.9rem; color: var(--nc-ink-soft); line-height: 1.65; }

/* -----------------------------------------------------------------
   23. FOOTER
   ----------------------------------------------------------------- */
.nc-footer {
  background: var(--nc-bg-footer);
  color: rgba(255,253,247,0.65);
  padding: 2rem var(--nc-pad) 5rem;
  text-align: center;
}
.nc-footer-brand { font-family: var(--nc-font-brand); font-size: 1.1rem; color: #fff; margin-bottom: 0.75rem; }
.nc-footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.nc-footer-links a { font-size: 0.8rem; color: rgba(255,253,247,0.5); }
.nc-footer-links a:hover { color: var(--nc-saffron); text-decoration: none; }
.nc-footer-copy { font-size: 0.72rem; color: rgba(255,253,247,0.3); }

/* -----------------------------------------------------------------
   24. UTILITIES
   ----------------------------------------------------------------- */
.nc-text-center { text-align: center; }
.nc-mt-1 { margin-top: 1rem; }
.nc-mt-2 { margin-top: 2rem; }
.nc-mb-1 { margin-bottom: 1rem; }
.nc-mb-2 { margin-bottom: 2rem; }

/* -----------------------------------------------------------------
   25. RESPONSIVE
   ----------------------------------------------------------------- */
@media (max-width: 480px) {
  .nc-hero-grid    { flex-direction: column; text-align: center; }
  .nc-hero-image   { max-width: 160px; margin: 0 auto; }
  .nc-hero-desc    { text-align: left; }
  .nc-about-flex   { flex-direction: column; text-align: center; }
  .nc-about-img    { margin: 0 auto; }
  .nc-check-list   { text-align: left; }
  .nc-features-grid { grid-template-columns: 1fr; }
  .nc-hero-stats   { justify-content: center; }
}
@media (max-width: 360px) {
  .nc-hero-title { font-size: 1.45rem; }
  .nc-price-now  { font-size: 2.6rem; }
}
@media (max-width: 768px) {
  .nc-sticky-cta { display: block; }
}

/* =================================================================
   v3.1 OVERRIDES — Larger fonts, bigger hero cover, better readability
   Appended — these declarations override earlier identical properties
   ================================================================= */

html { font-size: 17px; }

/* Hero */
.nc-hero-title   { font-size: clamp(2rem, 6.5vw, 2.75rem); font-weight: 900; }
.nc-hero-sub     { font-size: 1.05rem; line-height: 1.75; }
.nc-hero-image   { flex: 1.2; min-width: 160px; max-width: 280px; }
.nc-book-cover   { max-width: 265px; width: 100%; }
.nc-hero-desc    { font-size: 1.02rem; line-height: 1.75; }

/* Section headings */
.nc-section-title { font-size: clamp(1.55rem, 5vw, 2.1rem); }
.nc-section-sub   { font-size: 1rem; line-height: 1.75; }
.nc-label         { font-size: 0.78rem; }

/* Body text — readability */
.nc-pain-title    { font-size: 1rem; }
.nc-pain-desc     { font-size: 0.97rem; line-height: 1.75; }
.nc-feature-title { font-size: 0.95rem; }
.nc-feature-desc  { font-size: 0.9rem; }
.nc-about-title   { font-size: 1.3rem; }
.nc-about-text    { font-size: 0.97rem; line-height: 1.82; }
.nc-testi-text    { font-size: 0.97rem; line-height: 1.78; }
.nc-testi-name    { font-size: 0.92rem; }
.nc-publisher-name{ font-size: 1.05rem; }
.nc-publisher-desc{ font-size: 0.92rem; line-height: 1.72; }
.nc-faq-label     { font-size: 1rem; }
.nc-faq-answer    { font-size: 0.95rem; line-height: 1.78; padding-bottom:1.1rem; }
.nc-check-list li { font-size: 0.95rem; }

/* Buttons */
.nc-btn-primary   { font-size: 1.1rem; padding: 1.1rem 1.75rem; }
.nc-btn-secondary { font-size: 1rem; }

/* Pricing */
.nc-price-now     { font-size: 3.5rem; }
.nc-pricing-title { font-size: 1.05rem; }

/* Stats + trust */
.nc-stat-num  { font-size: 1.8rem; }
.nc-stat-lbl  { font-size: 0.8rem; }
.nc-trust-item{ font-size: 0.85rem; }

/* Responsive */
@media (max-width: 480px) {
  .nc-hero-image { max-width: 200px; }
  .nc-book-cover { max-width: 190px; }
}
@media (max-width: 360px) {
  .nc-hero-title { font-size: 1.7rem; }
  .nc-price-now  { font-size: 2.75rem; }
}

/* =================================================================
   v3.2 — Larger responsive book cover in hero
   ================================================================= */
.nc-hero-image { flex: 1.5; min-width: 180px; max-width: 380px; }
.nc-book-cover { max-width: 360px; width: 100%; }
@media (max-width: 600px) {
  .nc-hero-image { max-width: 270px; }
  .nc-book-cover { max-width: 250px; }
}
@media (max-width: 360px) {
  .nc-hero-image { max-width: 200px; }
  .nc-book-cover { max-width: 185px; }
}

/* =================================================================
   v3.3 — Book card portrait aspect-ratio 2/3 (live + coming-soon)
   ================================================================= */
.book-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 399px) {
  .book-grid { grid-template-columns: 1fr; }
}
.book-card-cover {
  aspect-ratio: 2 / 3;
  width: 100%;
  overflow: hidden;
  height: auto;
}
.book-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
