/*
 * File: itihaaskar-child/style.css
 * Theme Name:  Itihaaskar Child
 * Theme URI:   https://itihaaskar.com
 * Description: Child theme for Kadence — UGC NET/JRF History Notes by Itihaaskar
 * Author:      Itihaaskar
 * Author URI:  https://itihaaskar.com
 * Template:    kadence
 * Version:     5.2.0 (Scholarly Heritage)
 * License:     GPL-2.0-or-later
 * Text Domain: itihaaskar-child
 */

/* ============================================================
   1. ROOT VARIABLES
   ============================================================ */
:root {
  /* Scholarly Heritage palette */
  --clr-ink:         #0F172A;
  --clr-maroon:      #0F172A;
  --clr-maroon-dark: #1E293B;
  --clr-terracotta:  #B45309;
  --clr-terracotta-dk:#9A3412;
  --clr-emerald:     #166534;
  --clr-gold:        #D4AF37;
  --clr-gold-dark:   #BFA133;
  --clr-cream:       #F8F4ED;
  --clr-cream-2:     #FCFAF4;
  --clr-white:       #FFFFFF;
  --clr-slate:       #0F172A;
  --clr-body:        #475569;
  --clr-muted:       #64748B;
  --clr-border:      #E2E8F0;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   18px;
  --shadow-card: 0 4px 14px rgba(15,23,42,0.07);
  --shadow-lift: 0 14px 34px rgba(15,23,42,0.14);
  --transition:  0.25s ease;

  --sec-pad:   40px;
  --sec-pad-m: 28px;
}

/* ============================================================
   2. GLOBAL BASE OVERRIDES
   ============================================================ */
body {
  background-color: var(--clr-cream);
  color: var(--clr-body);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.wp-block-kadence-advancedheading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--clr-ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
}

/* Mobile readability: comfortable size, tighter section rhythm */
@media (max-width: 600px) {
  body { font-size: 16px; line-height: 1.62; }
  p { margin-top: 0.5em; margin-bottom: 0.5em; }
}

a { color: var(--clr-maroon); transition: color var(--transition); }
a:hover { color: var(--clr-gold-dark); }

/* ============================================================
   3. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Gradient overlay — applied via CSS class "hero-section" on the Kadence Row */
.hero-section .kb-row-layout-overlay,
.hero-section::before {
  background: linear-gradient(
    160deg,
    rgba(92, 43, 43, 0.90) 0%,
    rgba(92, 43, 43, 0.72) 100%
  ) !important;
}

.hero-section .kb-row-layout-inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Trust line under buttons */
.hero-trust-line {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.04em;
  margin-top: 1rem;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn-primary,
.btn-primary a,
.kb-btns-wrap a.btn-primary,
.kt-button.btn-primary,
.edd-submit.btn-primary,
button.btn-primary {
  display: inline-block;
  background: var(--clr-gold) !important;
  color: var(--clr-slate) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent !important;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary:hover,
.btn-primary a:hover,
.kb-btns-wrap a.btn-primary:hover,
.kt-button.btn-primary:hover {
  background: var(--clr-gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.40) !important;
  color: var(--clr-slate) !important;
}

/* Outline button */
.btn-outline,
.btn-outline a,
.kb-btns-wrap a.btn-outline,
.kt-button.btn-outline {
  display: inline-block;
  background: transparent !important;
  color: var(--clr-maroon) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 29px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--clr-maroon) !important;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover,
.btn-outline a:hover,
.kb-btns-wrap a.btn-outline:hover,
.kt-button.btn-outline:hover {
  background: var(--clr-maroon) !important;
  color: var(--clr-white) !important;
  transform: translateY(-2px);
}

/* Outline on dark background (hero) */
.hero-section .btn-outline,
.hero-section .btn-outline a,
.hero-section .kt-button.btn-outline,
.dark-bg .btn-outline,
.dark-bg .btn-outline a {
  color: var(--clr-white) !important;
  border-color: var(--clr-white) !important;
}
.hero-section .btn-outline:hover,
.hero-section .kt-button.btn-outline:hover {
  background: rgba(255,255,255,0.15) !important;
}

/* Bundle CTA — special larger button */
.btn-bundle,
.btn-bundle a,
.kt-button.btn-bundle {
  display: inline-block;
  background: var(--clr-gold) !important;
  color: var(--clr-slate) !important;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  border: none !important;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(212,175,55,0.45);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
}
.btn-bundle:hover,
.btn-bundle a:hover,
.kt-button.btn-bundle:hover {
  background: var(--clr-gold-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212,175,55,0.55) !important;
  color: var(--clr-slate) !important;
}

/* EDD purchase button inherits */
.edd-submit,
#edd-purchase-button,
.edd_checkout_button {
  background: var(--clr-gold) !important;
  color: var(--clr-slate) !important;
  border: none !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.edd-submit:hover { background: var(--clr-gold-dark) !important; transform: translateY(-2px); }

/* ============================================================
   5. TRUST SIGNALS BAR
   ============================================================ */
.trust-bar-item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.trust-bar-item .kt-svg-icon-wrap,
.trust-bar-item .kt-blocks-icon {
  color: var(--clr-gold) !important;
  fill: var(--clr-gold) !important;
}
.trust-bar-item h4,
.trust-bar-item .kt-adv-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-slate);
  margin: 0.5rem 0 0.25rem;
}
.trust-bar-item p {
  font-size: 0.875rem;
  color: var(--clr-muted);
  margin: 0;
}

/* ============================================================
   6. MODULE CARDS
   ============================================================ */
.module-card,
.wp-block-kadence-rowlayout.module-card,
.kb-row-layout-wrap.module-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--clr-maroon);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  padding: 1.75rem !important;
}
.module-card:hover,
.kb-row-layout-wrap.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-top-color: var(--clr-gold);
}
.module-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

/* Module badges (page/chapter counts) */
.module-badge {
  display: inline-block;
  background: var(--clr-cream);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-maroon);
  padding: 3px 12px;
  margin-right: 6px;
  margin-bottom: 10px;
}
.module-badge-gold { background: #FEF3C7; border-color: var(--clr-gold); }

/* ============================================================
   7. PRICING TABLE
   ============================================================ */
.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1rem;
  padding: 0 1rem;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.95rem;
  box-shadow: var(--shadow-card);
}
.pricing-table th {
  background: var(--clr-maroon);
  color: var(--clr-white);
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-table th:last-child,
.pricing-table td:last-child { text-align: center; }
.pricing-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-slate);
  vertical-align: middle;
}
.pricing-table tr:nth-child(odd) td  { background: var(--clr-cream); }
.pricing-table tr:nth-child(even) td { background: var(--clr-white); }
.pricing-table tr:hover td { background: #FEF3E2 !important; }

/* Explicit row-class overrides (complement :nth-child alternating) */
.pricing-row-odd td  { background: var(--clr-cream) !important; }
.pricing-row-even td { background: var(--clr-white) !important; }
.pricing-row:hover td { background: #FEF3E2 !important; }

.pricing-table .price-mrp {
  text-decoration: line-through;
  color: var(--clr-muted);
  font-size: 0.85rem;
}
.pricing-table .price-sell {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-maroon);
}
.pricing-table .price-save {
  background: #FFF0F0;
  color: var(--clr-maroon);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  font-size: 0.8rem;
}

/* Bundle highlight card */
.bundle-card {
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  background: #FFF8F0;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.bundle-card::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 16px; right: -26px;
  background: var(--clr-gold);
  color: var(--clr-slate);
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 40px;
  transform: rotate(35deg);
}
.bundle-price-main {
  font-size: 3rem;
  font-weight: 900;
  color: var(--clr-maroon);
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
}
.bundle-price-mrp {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--clr-muted);
  margin-right: 8px;
}
.bundle-savings {
  display: inline-block;
  background: #DCFCE7;
  color: #166534;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 4px 14px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.bundle-scarcity {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-top: 0.75rem;
}
.bundle-scarcity strong { color: var(--clr-maroon); }

/* Tablet: stacked rows with labels */
@media (max-width: 768px) {
  .pricing-table, .pricing-table thead,
  .pricing-table tbody, .pricing-table th,
  .pricing-table td, .pricing-table tr { display: block; }

  .pricing-table thead tr { position: absolute; top: -9999px; left: -9999px; }

  .pricing-table tr {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    background: var(--clr-white);
    box-shadow: var(--shadow-card);
    padding: 0.5rem 0;
  }
  .pricing-table tr:nth-child(odd) td,
  .pricing-table tr:nth-child(even) td { background: transparent; }

  .pricing-table td {
    border: none;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 45%;
    text-align: right;
  }
  .pricing-table td::before {
    position: absolute;
    top: 50%; left: 16px;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--clr-maroon);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .pricing-table td:nth-child(1)::before { content: 'Module'; }
  .pricing-table td:nth-child(2)::before { content: 'MRP'; }
  .pricing-table td:nth-child(3)::before { content: 'Selling Price'; }
  .pricing-table td:nth-child(4)::before { content: 'You Save'; }
  .pricing-table td:nth-child(5)::before { content: 'Buy Now'; }
  .pricing-table td:last-child { border-bottom: none; }
}

/* Mobile: full card */
@media (max-width: 480px) {
  .pricing-table td { padding-left: 40%; font-size: 0.9rem; }
  .bundle-price-main { font-size: 2.2rem; }
  .bundle-card { padding: 1.5rem 1rem; }
}

/* ============================================================
   8. FAQ ACCORDION (Kadence override)
   ============================================================ */
.kt-accordion-wrap .kt-accordion-header-btn,
.kt-accordion-wrap .kt-blocks-accordion-header {
  background: var(--clr-white) !important;
  color: var(--clr-maroon) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border-bottom: 2px solid var(--clr-border) !important;
  padding: 18px 20px !important;
  text-align: left !important;
  width: 100% !important;
  transition: background var(--transition), border-color var(--transition) !important;
}
.kt-accordion-wrap .kt-accordion-header-btn:hover,
.kt-accordion-wrap .kt-blocks-accordion-header:hover {
  background: #FFF8F0 !important;
  border-bottom-color: var(--clr-gold) !important;
}
/* Active pane */
.kt-accordion-wrap .kt-accordion-pane.kt-accordion-panel-active .kt-accordion-header-btn,
.kt-accordion-wrap .kt-accordion-pane.kt-accordion-panel-active .kt-blocks-accordion-header {
  background: var(--clr-cream) !important;
  border-bottom-color: var(--clr-maroon) !important;
  color: var(--clr-maroon) !important;
}
.kt-accordion-wrap .kt-accordion-pane .kt-accordion-panel-inner {
  padding: 20px !important;
  background: var(--clr-cream);
  color: var(--clr-slate);
  font-size: 0.95rem;
  line-height: 1.75;
  border-bottom: 2px solid var(--clr-gold);
}
/* Icon color */
.kt-accordion-wrap .kt-accordion-icon-trigger svg,
.kt-accordion-wrap .kt-accordion-icon-trigger {
  color: var(--clr-gold) !important;
  fill: var(--clr-gold) !important;
}

/* ============================================================
   9. TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
  border-left: 4px solid var(--clr-gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.testimonial-quote {
  font-style: italic;
  color: var(--clr-slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-quote::before { content: '\201C'; font-size: 2rem; color: var(--clr-gold); line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }
.testimonial-author {
  font-weight: 700;
  color: var(--clr-maroon);
  font-size: 0.9rem;
}
.testimonial-result {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-top: 2px;
}

/* ============================================================
   10. SECTION HELPERS
   ============================================================ */
.section-bg-cream { background: var(--clr-cream) !important; }
.section-bg-white { background: var(--clr-white) !important; }
.section-bg-maroon { background: var(--clr-maroon) !important; }
.text-white, .section-bg-maroon * { color: var(--clr-white) !important; }
.text-center, .align-center { text-align: center !important; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.65;
}

/* Chapter list styling */
.chapter-list { list-style: none; padding: 0; margin: 0; }
.chapter-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.92rem;
  color: var(--clr-slate);
}
.chapter-list li:last-child { border-bottom: none; }
.chapter-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  color: var(--clr-gold);
  font-weight: 700;
}

/* Final CTA section */
.final-cta-section {
  background: var(--clr-maroon);
  padding: 5rem 2rem;
  text-align: center;
}
.final-cta-section h2 { color: var(--clr-white) !important; }
.final-cta-section p  { color: rgba(255,255,255,0.88) !important; }
.final-cta-small-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}
.final-cta-small-text s { color: rgba(255,255,255,0.45); }

/* ============================================================
   11. HEADER / NAV
   ============================================================ */
.site-header.is-sticky,
.kadence-sticky-header.is-sticky { box-shadow: 0 2px 12px rgba(0,0,0,0.10); }

/* ============================================================
   12. RESPONSIVE — TABLET (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  h1, .entry-title { font-size: clamp(1.75rem, 6vw, 2.4rem) !important; }
  h2 { font-size: clamp(1.4rem, 5vw, 1.9rem) !important; }
  .hero-section { min-height: 60vh; }
  .hero-section .kb-row-layout-inner { padding-top: 60px !important; padding-bottom: 60px !important; }
  .kb-btns-wrap { flex-direction: column !important; align-items: center !important; gap: 0.75rem; }
  .kb-btns-wrap .kb-btn-wrap-link { width: 100%; }
  .kb-btns-wrap a.kt-button { width: 100%; text-align: center; }
  .module-card { margin-bottom: 1rem; }
  .bundle-card::before { display: none; }
}

/* ============================================================
   13. RESPONSIVE — MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(1.5rem, 7vw, 2rem) !important; }
  .hero-section { min-height: 55vh; }
  .bundle-price-main { font-size: 2rem; }
  .btn-primary, .btn-outline, .btn-bundle,
  .kt-button.btn-primary, .kt-button.btn-outline { font-size: 0.92rem; padding: 12px 20px; }
}

/* ============================================================
   14. EDD CART / CHECKOUT OVERRIDES
   ============================================================ */
#edd_checkout_cart th { background: var(--clr-maroon); color: var(--clr-white); }
#edd_checkout_cart .edd_cart_item { border-bottom: 1px solid var(--clr-border); }
.edd_errors li { background: #FFF0F0; border: 1px solid var(--clr-maroon); color: var(--clr-maroon); }
#edd-purchase-button { width: 100%; font-size: 1.05rem; padding: 16px; }

/* ============================================================
   15. UTILITY
   ============================================================ */
.kb-spacer { display: block; }
.price-strikethrough { text-decoration: line-through; color: var(--clr-muted); }
.highlight-gold { color: var(--clr-gold) !important; font-weight: 700; }
.highlight-maroon { color: var(--clr-maroon) !important; font-weight: 700; }
.pill {
  display: inline-block;
  border-radius: 100px;
  padding: 3px 14px;
  font-size: 0.78rem;
  font-weight: 600;
}
.pill-maroon { background: var(--clr-maroon); color: var(--clr-white); }
.pill-gold   { background: #FEF3C7; color: #92400E; border: 1px solid var(--clr-gold); }
.pill-green  { background: #DCFCE7; color: #166534; }

/* ============================================================
   16. SAMPLE PAGE IMAGES ON MODULE PAGES
   ============================================================ */
.sample-page-image img {
  border-radius: 6px;
  border: 2px solid rgba(212,175,55,0.35);
  transition: border-color var(--transition), transform var(--transition);
  cursor: zoom-in;
}
.sample-page-image img:hover {
  border-color: var(--clr-gold);
  transform: scale(1.02);
}

/* ============================================================
   17. MODULE CARDS v2 — compact, gradient, golden glow
   ============================================================ */
.mc2 {
  background: linear-gradient(145deg, #ffffff 0%, #FFF9F2 100%);
  border-radius: 10px;
  border-top: 3px solid #0F172A;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(212,175,55,0.12);
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  height: 100%;
  box-sizing: border-box;
}
.mc2:hover {
  box-shadow: 0 8px 28px rgba(212,175,55,0.28), 0 0 0 1px rgba(212,175,55,0.40);
  transform: translateY(-3px);
}
.mc2-top {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.mc2-num {
  background: #0F172A;
  color: #fff;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.mc2-info { flex: 1; min-width: 0; }
.mc2-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 3px;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
}
.mc2-stats {
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 500;
}
.mc2-price-block { text-align: right; flex-shrink: 0; }
.mc2-price-block strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
}
.mc2-mrp {
  font-size: 0.68rem;
  color: #94A3B8;
  text-decoration: line-through;
}
.mc2-divider {
  border: none;
  border-top: 1px solid rgba(212,175,55,0.20);
  margin: 0;
}
.mc2-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.mc2-list li {
  font-size: 0.78rem;
  color: #475569;
  padding: 3px 0 3px 13px;
  position: relative;
  line-height: 1.45;
}
.mc2-list li::before {
  content: 'A';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
}
.mc2-more {
  color: #94A3B8 !important;
  font-style: italic;
  font-size: 0.72rem !important;
}
.mc2-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.mc2-link {
  font-size: 0.75rem;
  color: #0F172A;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.mc2-link:hover { color: #D4AF37; text-decoration: underline; }
.mc2-buy {
  display: inline-block;
  background: #D4AF37;
  color: #0F172A;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.mc2-buy:hover { background: #BFA133; color: #0F172A; }
.mc2-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.mc2-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 726px;
  margin: 18px auto 0;
}
@media (max-width: 768px) {
  .mc2-grid-3, .mc2-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .mc2-grid-3, .mc2-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   18. TRUST CREDENTIALS — dark, impactful, specific
   ============================================================ */
.trust-dark-section {
  background: linear-gradient(135deg, #0F172A 0%, #0B1220 60%, #0F172A 100%);
  padding: 52px 20px;
}
.trust-dark-header {
  text-align: center;
  margin-bottom: 40px;
}
.trust-dark-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 10px;
  display: block;
}
.trust-dark-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
  line-height: 1.3;
}
.trust-cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 12px;
  overflow: hidden;
}
.trust-cred {
  padding: 28px 22px;
  border-right: 1px solid rgba(212,175,55,0.12);
  text-align: center;
  background: rgba(255,255,255,0.025);
  transition: background 0.25s;
}
.trust-cred:last-child { border-right: none; }
.trust-cred:hover { background: rgba(212,175,55,0.06); }
.tc-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.tc-stat {
  font-size: 1.9rem;
  font-weight: 900;
  color: #D4AF37;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.tc-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}
.tc-desc {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .trust-cred-grid { grid-template-columns: repeat(2, 1fr); border-radius: 8px; }
  .trust-cred { border-bottom: 1px solid rgba(212,175,55,0.12); }
  .trust-cred:nth-child(2n) { border-right: none; }
  .trust-cred:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .trust-cred-grid { grid-template-columns: 1fr; }
  .trust-cred { border-right: none; }
  .trust-cred:last-child { border-bottom: none; }
}

/* ============================================================
   19. WHY ITIHAASKAR v2 — teacher story, gradient cards
   ============================================================ */
.why-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.why-card-v2 {
  background: linear-gradient(145deg, #ffffff 0%, #FFF5EC 100%);
  border-radius: 12px;
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 2px 16px rgba(212,175,55,0.10), 0 0 0 1px rgba(212,175,55,0.14);
  border-bottom: 3px solid #D4AF37;
  transition: box-shadow 0.25s, transform 0.25s;
}
.why-card-v2:hover {
  box-shadow: 0 8px 32px rgba(212,175,55,0.22), 0 0 0 1px rgba(212,175,55,0.28);
  transform: translateY(-3px);
}
.why-icon-v2 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
  display: block;
}
.why-title-v2 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 0.55rem;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.35;
}
.why-body-v2 {
  font-size: 0.83rem;
  color: #475569;
  line-height: 1.68;
  margin: 0;
}
.why-tag-v2 {
  display: inline-block;
  background: rgba(180,83,9,0.07);
  color: #0F172A;
  border: 1px solid rgba(180,83,9,0.15);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 0.8rem;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .why-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why-grid-v2 { grid-template-columns: 1fr; }
}

/* ============================================================
   20. SAMPLE PAGES COMPACT
   ============================================================ */
.sample-compact-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.sample-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sample-compact-grid figure {
  margin: 0;
}
.sample-compact-grid img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(212,175,55,0.28);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  display: block;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sample-compact-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(212,175,55,0.25);
}
.sample-compact-cap {
  font-size: 0.70rem;
  color: rgba(255,255,255,0.50);
  text-align: center;
  margin-top: 6px;
  display: block;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .sample-compact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   21. TESTIMONIALS v2 — humane, varied, warm gradient
   ============================================================ */
.testi-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.testi-v2 {
  background: linear-gradient(150deg, #ffffff 0%, #FFF9F2 100%);
  border-radius: 10px;
  padding: 1.4rem 1.4rem 1.2rem;
  border-left: 3px solid #D4AF37;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05), 0 0 0 1px rgba(212,175,55,0.10);
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.testi-v2:hover {
  box-shadow: 0 6px 24px rgba(212,175,55,0.18), 0 0 0 1px rgba(212,175,55,0.22);
  transform: translateY(-2px);
}
.testi-v2-badge {
  position: absolute;
  top: 0;
  right: 16px;
  background: #0F172A;
  color: #fff;
  font-size: 0.60rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 0 0 5px 5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.testi-v2-stars {
  color: #D4AF37;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.55rem;
  display: block;
}
.testi-v2-quote {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.72;
  margin: 0 0 0.9rem;
  font-style: italic;
  position: relative;
}
.testi-v2-quote::before {
  content: '\201C';
  font-size: 2rem;
  color: #D4AF37;
  line-height: 0;
  vertical-align: -0.42rem;
  margin-right: 2px;
  font-style: normal;
  font-family: 'Playfair Display', Georgia, serif;
}
.testi-v2-author {
  font-weight: 700;
  font-size: 0.83rem;
  color: #0F172A;
  margin: 0;
}
.testi-v2-detail {
  font-size: 0.72rem;
  color: #64748B;
  margin-top: 2px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .testi-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .testi-grid-v2 { grid-template-columns: 1fr; }
}

/* ============================================================
   22. PREMIUM POLISH LAYER
   ============================================================ */
:root {
  --glow-gold: 0 0 0 1px rgba(212,175,55,0.30), 0 8px 30px rgba(212,175,55,0.18);
  --premium-shadow: 0 10px 40px rgba(31,41,55,0.10);
}

/* Hero refinement — subtle vignette + grain feel */
.hero-section .kb-row-layout-overlay {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.10), transparent 60%),
    linear-gradient(165deg, rgba(15,23,42,0.94) 0%, rgba(92,43,43,0.78) 55%, rgba(48,18,18,0.92) 100%) !important;
}

/* Section eyebrow — gold divider line accent */
.prem-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
}
.prem-eyebrow::before,
.prem-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}
.prem-eyebrow::after { background: linear-gradient(90deg, #D4AF37, transparent); }

.prem-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: #0F172A;
  font-weight: 700;
  margin: 14px 0 12px;
  line-height: 1.22;
  letter-spacing: -0.3px;
}
.prem-sub {
  color: #64748B;
  font-size: 0.97rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.prem-head { text-align: center; margin-bottom: 44px; }

/* Trust strip under hero — thin gold-on-dark bar */
.hero-proof-strip {
  background: #0B1220;
  border-top: 1px solid rgba(212,175,55,0.20);
  border-bottom: 1px solid rgba(212,175,55,0.20);
  padding: 18px 20px;
}
.hero-proof-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-proof-item strong { color: #D4AF37; font-weight: 800; }
.hero-proof-divider { width: 1px; height: 28px; background: rgba(212,175,55,0.22); }
@media (max-width: 600px) {
  .hero-proof-divider { display: none; }
  .hero-proof-inner { gap: 14px; }
  .hero-proof-item { font-size: 0.76rem; }
}

/* Why cards — premium gradient + glow on hover */
.why-card-v2 {
  background: linear-gradient(150deg, #ffffff 0%, #FFF6ED 100%);
  position: relative;
  overflow: hidden;
}
.why-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0F172A, #D4AF37, #0F172A);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card-v2:hover::before { opacity: 1; }
.why-card-v2 { border-bottom: none; }
.why-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(145deg, #0F172A, #1E293B);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(180,83,9,0.28);
}

/* Module cards — premium gold-edge glow */
.mc2 {
  background: linear-gradient(155deg, #ffffff 0%, #FFFAF4 100%);
  border-top: none;
  position: relative;
}
.mc2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(212,175,55,0.45), rgba(180,83,9,0.12), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.mc2:hover {
  box-shadow: 0 12px 36px rgba(212,175,55,0.30), 0 0 0 1px rgba(212,175,55,0.45);
}

/* Pricing table premium frame */
.pricing-table {
  box-shadow: var(--premium-shadow), 0 0 0 1px rgba(212,175,55,0.18);
}

/* Bundle card — radiant gold glow */
.bundle-card {
  background: linear-gradient(160deg, #FFFDF7 0%, #FBF0D8 100%);
  box-shadow: 0 16px 50px rgba(212,175,55,0.25), 0 0 0 1px rgba(212,175,55,0.30);
}
.bundle-card::after {
  content: '';
  position: absolute;
  top: -60%; left: -20%;
  width: 140%; height: 140%;
  background: radial-gradient(ellipse, rgba(212,175,55,0.12), transparent 60%);
  pointer-events: none;
}

/* Testimonials — premium card depth */
.testi-v2 {
  background: linear-gradient(155deg, #ffffff 0%, #FFFAF4 100%);
}
.testi-v2:hover {
  box-shadow: 0 10px 32px rgba(212,175,55,0.20), 0 0 0 1px rgba(212,175,55,0.30);
}

/* Verified tick on testimonials */
.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.66rem;
  color: #166534;
  font-weight: 700;
  margin-top: 4px;
}
.testi-verified::before {
  content: '\2713';
  background: #166534;
  color: #fff;
  width: 13px; height: 13px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
}

/* Testimonials summary bar */
.testi-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  padding: 18px 28px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  max-width: 640px;
}
.testi-summary-item { text-align: center; }
.testi-summary-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: #0F172A;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
}
.testi-summary-label {
  font-size: 0.72rem;
  color: #64748B;
  margin-top: 3px;
}
.testi-summary-stars { color: #D4AF37; font-size: 1rem; letter-spacing: 1px; }

/* FAQ premium frame */
.kt-accordion-wrap .kt-accordion-header-btn {
  border-radius: 8px !important;
  border: 1px solid rgba(212,175,55,0.20) !important;
  margin-bottom: 10px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
}

/* Final CTA — radiant depth */
.final-cta-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.18), transparent 55%),
    linear-gradient(160deg, #0F172A 0%, #1E293B 100%) !important;
  position: relative;
}

/* Premium author avatar circle */
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0F172A, #D4AF37);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  font-family: 'Playfair Display', Georgia, serif;
  flex-shrink: 0;
}
.testi-foot {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   23. HERO — animated history theme (CSS-only, GPU-light)
   ════════════════════════════════════════════════════════════ */
.hero-anim-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
/* Slow floating manuscript glyphs */
.hero-glyph {
  position: absolute;
  font-family: 'Playfair Display', Georgia, serif;
  color: rgba(212,175,55,0.10);
  user-select: none;
  will-change: transform, opacity;
  animation: heroFloat linear infinite;
}
@keyframes heroFloat {
  0%   { transform: translateY(40px) rotate(0deg);   opacity: 0; }
  15%  { opacity: 0.8; }
  85%  { opacity: 0.8; }
  100% { transform: translateY(-120px) rotate(8deg); opacity: 0; }
}
/* Slow shimmer line sweep */
.hero-shimmer {
  position: absolute;
  top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(212,175,55,0.07), transparent);
  animation: heroSweep 9s ease-in-out infinite;
}
@keyframes heroSweep {
  0%   { left: -40%; }
  100% { left: 120%; }
}
/* Gentle pulse on the gold underline */
.hero-underline {
  display: inline-block;
  position: relative;
}
.hero-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  animation: underlinePulse 3.5s ease-in-out infinite;
}
@keyframes underlinePulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.7); }
  50%      { opacity: 1;   transform: scaleX(1); }
}
.hero-cta-a {
  animation: ctaRise 0.8s ease-out both;
}
@keyframes ctaRise {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glyph, .hero-shimmer, .hero-underline::after, .hero-cta-a { animation: none !important; }
  .hero-glyph { opacity: 0.5 !important; }
}

/* ════════════════════════════════════════════════════════════
   24. WHY ITIHAASKAR v3 — teacher photo + genuine prose
   ════════════════════════════════════════════════════════════ */
.why3-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
.why3-photo {
  position: relative;
}
.why3-photo-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(180,83,9,0.22), 0 0 0 1px rgba(212,175,55,0.25);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #2a1212, #4a1e1e);
}
.why3-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.why3-photo-badge {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(20,8,8,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
}
.why3-photo-badge strong { color: #D4AF37; font-size: 0.92rem; display: block; }
.why3-photo-badge span { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.why3-float-cred {
  position: absolute;
  top: -14px; right: -14px;
  background: linear-gradient(145deg, #D4AF37, #BFA133);
  color: #0F172A;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 10px 16px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
  transform: rotate(4deg);
}
.why3-content h2 { text-align: left !important; }
.why3-lead {
  font-size: 1.12rem;
  color: #0F172A;
  line-height: 1.7;
  font-weight: 500;
  margin: 0 0 1.3rem;
}
.why3-lead strong { color: #0F172A; }
.why3-para {
  font-size: 0.97rem;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 1.2rem;
}
.why3-signature {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: #0F172A;
  font-style: italic;
  margin: 1.5rem 0 0.2rem;
}
.why3-sig-role {
  font-size: 0.82rem;
  color: #94A3B8;
  letter-spacing: 0.03em;
}
.why3-creds-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(212,175,55,0.25);
}
.why3-cred {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: #475569;
  font-weight: 600;
}
.why3-cred span {
  font-size: 1.3rem;
}
@media (max-width: 820px) {
  .why3-wrap { grid-template-columns: 1fr; gap: 32px; }
  .why3-photo { max-width: 380px; margin: 0 auto; }
  .why3-content h2 { text-align: center !important; }
  .why3-lead, .why3-para { text-align: left; }
}

/* ════════════════════════════════════════════════════════════
   25. MODULE TILES v3 — each themed to its era
   ════════════════════════════════════════════════════════════ */
.mt3-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.mt3-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 740px;
  margin: 20px auto 0;
}
.mt3 {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  color: #fff;
}
.mt3:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}
.mt3-banner {
  height: 92px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 18px;
}
.mt3-banner-icon {
  font-size: 2.4rem;
  opacity: 0.92;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  z-index: 2;
}
.mt3-banner-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.mt3-num {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(4px);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  z-index: 3;
}
.mt3-body {
  background: #fff;
  color: #0F172A;
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mt3-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 2px;
  line-height: 1.25;
}
.mt3-stats {
  font-size: 0.74rem;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.mt3-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  flex: 1;
}
.mt3-list li {
  font-size: 0.79rem;
  color: #475569;
  line-height: 1.5;
  padding: 4px 0 4px 18px;
  position: relative;
}
.mt3-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tile-accent, #0F172A);
}
.mt3-more {
  color: #94A3B8 !important;
  font-style: italic;
  font-size: 0.74rem !important;
  padding-left: 18px !important;
}
.mt3-more::before { display: none !important; }
.mt3-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #F0EBE3;
}
.mt3-price strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--tile-accent, #0F172A);
}
.mt3-price s {
  font-size: 0.72rem;
  color: #94A3B8;
  margin-left: 4px;
}
.mt3-buy {
  background: var(--tile-accent, #0F172A);
  color: #fff !important;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.2s;
}
.mt3-buy:hover { filter: brightness(1.12); color: #fff !important; }
.mt3-viewall {
  display: block;
  text-align: center;
  font-size: 0.74rem;
  color: var(--tile-accent, #0F172A);
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
  opacity: 0.85;
}
.mt3-viewall:hover { opacity: 1; }

/* Era themes */
.mt3-ancient   { --tile-accent: #B45309; }
.mt3-ancient   .mt3-banner { background: linear-gradient(135deg, #92400E 0%, #B45309 55%, #D97706 100%); }
.mt3-medieval  { --tile-accent: #7C2D12; }
.mt3-medieval  .mt3-banner { background: linear-gradient(135deg, #4C1D1D 0%, #7C2D12 60%, #9A3412 100%); }
.mt3-modern    { --tile-accent: #1E3A5F; }
.mt3-modern    .mt3-banner { background: linear-gradient(135deg, #1E3A5F 0%, #2C5282 60%, #3B6BA5 100%); }
.mt3-art       { --tile-accent: #9D174D; }
.mt3-art       .mt3-banner { background: linear-gradient(135deg, #831843 0%, #9D174D 55%, #BE185D 100%); }
.mt3-historio  { --tile-accent: #4338CA; }
.mt3-historio  .mt3-banner { background: linear-gradient(135deg, #312E81 0%, #4338CA 60%, #5B52D6 100%); }

@media (max-width: 768px) {
  .mt3-grid-3, .mt3-grid-2 { grid-template-columns: 1fr; max-width: 420px; }
}

/* ════════════════════════════════════════════════════════════
   26. PRICING v3 — deal-focused, savings highlighted
   ════════════════════════════════════════════════════════════ */
.price3-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  max-width: 940px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31,41,55,0.10), 0 0 0 1px rgba(212,175,55,0.2);
}
.price3-table thead th {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: #fff;
  padding: 16px 14px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  text-align: center;
}
.price3-table thead th:first-child { text-align: left; }
.price3-table tbody td {
  padding: 15px 14px;
  border-bottom: 1px solid #F3EEE7;
  text-align: center;
  vertical-align: middle;
}
.price3-table tbody td:first-child { text-align: left; }
.price3-table tbody tr:last-child td { border-bottom: none; }
.price3-table tbody tr:hover td { background: #FFFBF5; }
.price3-mod { font-weight: 700; color: #0F172A; font-size: 0.94rem; }
.price3-mod small { display: block; font-weight: 500; color: #94A3B8; font-size: 0.72rem; margin-top: 2px; }
.price3-mrp { color: #94A3B8; text-decoration: line-through; font-size: 0.85rem; }
.price3-now { font-size: 1.15rem; font-weight: 800; color: #0F172A; }
.price3-save-badge {
  display: inline-block;
  background: #DCFCE7;
  color: #166534;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.price3-off {
  display: inline-block;
  font-size: 0.64rem;
  color: #166534;
  font-weight: 700;
  margin-top: 3px;
}
.price3-buy {
  background: #D4AF37;
  color: #0F172A !important;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  white-space: nowrap;
}
.price3-buy:hover { background: #BFA133; transform: translateY(-1px); color: #0F172A !important; }

/* Bundle hero row inside pricing */
.price3-bundle {
  max-width: 940px;
  margin: 24px auto 0;
  background: linear-gradient(135deg, #0B1220 0%, #3D1414 100%);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(180,83,9,0.3);
  position: relative;
}
.price3-bundle-ribbon {
  position: absolute;
  top: 20px; right: -38px;
  background: #D4AF37;
  color: #0F172A;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 6px 48px;
  transform: rotate(40deg);
  z-index: 3;
}
.price3-bundle-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 0;
}
.price3-bundle-left { padding: 36px 34px; }
.price3-bundle-tag {
  display: inline-block;
  background: rgba(212,175,55,0.18);
  color: #D4AF37;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.price3-bundle-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.25;
}
.price3-bundle-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 18px;
}
.price3-bundle-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.price3-bundle-feats li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  padding-left: 20px;
  position: relative;
}
.price3-bundle-feats li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: #D4AF37; font-weight: 800;
}
.price3-bundle-right {
  background: rgba(212,175,55,0.08);
  border-left: 1px solid rgba(212,175,55,0.2);
  padding: 36px 30px;
  text-align: center;
}
.price3-bundle-mrp { color: rgba(255,255,255,0.5); text-decoration: line-through; font-size: 1.1rem; }
.price3-bundle-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #D4AF37;
  line-height: 1;
  margin: 4px 0 8px;
}
.price3-bundle-save {
  display: inline-block;
  background: #166534;
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.price3-bundle-btn {
  display: block;
  background: #D4AF37;
  color: #0F172A !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
  transition: all 0.2s;
}
.price3-bundle-btn:hover { background: #d9b87c; transform: translateY(-2px); color: #0F172A !important; }
.price3-bundle-scarcity {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}
.price3-bundle-scarcity strong { color: #D4AF37; }
@media (max-width: 768px) {
  .price3-bundle-inner { grid-template-columns: 1fr; }
  .price3-bundle-right { border-left: none; border-top: 1px solid rgba(212,175,55,0.2); }
  .price3-bundle-feats { grid-template-columns: 1fr; }
  /* responsive pricing table: horizontal scroll */
  .price3-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price3-table { min-width: 640px; }
}

/* ════════════════════════════════════════════════════════════
   27. SAMPLE PAGES v3 — compact device-frame strip
   ════════════════════════════════════════════════════════════ */
.sample3 {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.sample3-left h2 { text-align: left !important; color: #fff !important; }
.sample3-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sample3-desc { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; margin: 0 0 22px; }
.sample3-points { list-style: none; padding: 0; margin: 0 0 26px; }
.sample3-points li {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  padding: 7px 0 7px 26px;
  position: relative;
}
.sample3-points li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: #D4AF37; font-weight: 800;
  background: rgba(212,175,55,0.15);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  top: 8px;
}
.sample3-btn {
  display: inline-block;
  border: 1.5px solid rgba(212,175,55,0.6);
  color: #D4AF37;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.sample3-btn:hover { background: rgba(212,175,55,0.12); color: #D4AF37; }
.sample3-right {
  position: relative;
  height: 360px;
}
.sample3-pg {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.4);
  border: 1px solid rgba(212,175,55,0.3);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.sample3-pg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sample3-pg1 { width: 56%; top: 0; left: 4%; z-index: 1; transform: rotate(-5deg); }
.sample3-pg2 { width: 56%; top: 30px; left: 38%; z-index: 3; transform: rotate(3deg); }
.sample3-pg3 { width: 50%; bottom: 0; left: 18%; z-index: 2; transform: rotate(-2deg); }
.sample3-right:hover .sample3-pg1 { transform: rotate(-7deg) translateY(-4px); }
.sample3-right:hover .sample3-pg2 { transform: rotate(4deg) translateY(-6px); }
.sample3-right:hover .sample3-pg3 { transform: rotate(-3deg) translateY(-3px); }
@media (max-width: 768px) {
  .sample3 { grid-template-columns: 1fr; gap: 40px; }
  .sample3-left h2 { text-align: center !important; }
  .sample3-tag { justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   28. TESTIMONIALS v3 — masonry, humane, varied
   ════════════════════════════════════════════════════════════ */
.testi3-masonry {
  column-count: 3;
  column-gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.testi3 {
  break-inside: avoid;
  background: #fff;
  border-radius: 12px;
  padding: 20px 20px 18px;
  margin-bottom: 18px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
  border: 1px solid rgba(212,175,55,0.12);
  transition: box-shadow 0.25s, transform 0.25s;
}
.testi3:hover {
  box-shadow: 0 10px 30px rgba(212,175,55,0.18);
  transform: translateY(-2px);
}
.testi3-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.testi3-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  flex-shrink: 0;
}
.testi3-meta { flex: 1; min-width: 0; }
.testi3-name { font-weight: 700; font-size: 0.88rem; color: #0F172A; display: flex; align-items: center; gap: 6px; }
.testi3-vtick {
  background: #1D9BF0; color: #fff;
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.6rem; flex-shrink: 0;
}
.testi3-sub { font-size: 0.72rem; color: #94A3B8; }
.testi3-stars { color: #D4AF37; font-size: 0.82rem; letter-spacing: 1px; margin-bottom: 8px; }
.testi3-text { font-size: 0.86rem; color: #475569; line-height: 1.65; margin: 0; }
.testi3-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.testi3-tag-jrf { background: #FEF3C7; color: #92400E; }
.testi3-tag-net { background: #DBEAFE; color: #1E40AF; }
.testi3-tag-upsc { background: #F3E8FF; color: #6B21A8; }
@media (max-width: 880px) { .testi3-masonry { column-count: 2; } }
@media (max-width: 560px) { .testi3-masonry { column-count: 1; } }

/* ════════════════════════════════════════════════════════════
   29. FOOTER — links + social subscribe
   ════════════════════════════════════════════════════════════ */
.ihfooter {
  background: linear-gradient(160deg, #0B1220 0%, #0F172A 100%);
  color: rgba(255,255,255,0.7);
  padding: 56px 20px 24px;
}
.ihfooter-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 36px;
}
.ihfooter h4 {
  color: #D4AF37;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.ihfooter-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px;
}
.ihfooter-tagline { font-size: 0.84rem; line-height: 1.6; margin: 0 0 16px; color: rgba(255,255,255,0.6); }
.ihfooter-links { list-style: none; padding: 0; margin: 0; }
.ihfooter-links li { margin-bottom: 9px; }
.ihfooter-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s, padding-left 0.2s;
}
.ihfooter-links a:hover { color: #D4AF37; padding-left: 4px; }
.ihfooter-social { display: flex; flex-direction: column; gap: 10px; }
.ihf-social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff !important;
  transition: transform 0.2s, filter 0.2s;
}
.ihf-social-btn:hover { transform: translateY(-2px); filter: brightness(1.1); color: #fff !important; }
.ihf-social-btn svg { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }
.ihf-yt { background: #FF0000; }
.ihf-tg { background: #229ED9; }
.ihf-ig { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.ihf-wa { background: #25D366; }
.ihfooter-bottom {
  max-width: 1100px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(212,175,55,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.ihfooter-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.ihfooter-bottom a:hover { color: #D4AF37; }
@media (max-width: 860px) {
  .ihfooter-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .ihfooter-grid { grid-template-columns: 1fr; }
  .ihfooter-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   30. HERO v3 — gradient card, glowing border, content inside
   ════════════════════════════════════════════════════════════ */
.hero3 {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212,175,55,0.22), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(180,83,9,0.45), transparent 60%),
    linear-gradient(150deg, #4A1E1E 0%, #1E293B 40%, #0F172A 100%);
  padding: 4px; /* space for glow border */
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.35),
    0 0 40px rgba(212,175,55,0.25),
    0 30px 80px rgba(15,23,42,0.45);
  animation: hero3Glow 4s ease-in-out infinite;
}
@keyframes hero3Glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(212,175,55,0.35), 0 0 40px rgba(212,175,55,0.22), 0 30px 80px rgba(15,23,42,0.45); }
  50%      { box-shadow: 0 0 0 1px rgba(212,175,55,0.55), 0 0 60px rgba(212,175,55,0.40), 0 30px 80px rgba(15,23,42,0.50); }
}
.hero3-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 70px 28px 64px;
  border-radius: 21px;
}
.hero3-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 1;
}
/* Animated layer */
.hero3-anim { position: absolute; inset: 0; overflow: hidden; z-index: 2; pointer-events: none; border-radius: 21px; }
.hero3-glyph {
  position: absolute;
  font-family: 'Playfair Display', Georgia, serif;
  color: rgba(212,175,55,0.13);
  user-select: none;
  will-change: transform, opacity;
  animation: hero3Float linear infinite;
}
@keyframes hero3Float {
  0%   { transform: translateY(40px) rotate(0deg); opacity: 0; }
  15%  { opacity: 0.85; }
  85%  { opacity: 0.85; }
  100% { transform: translateY(-120px) rotate(8deg); opacity: 0; }
}
.hero3-shimmer {
  position: absolute; top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(212,175,55,0.08), transparent);
  animation: hero3Sweep 9s ease-in-out infinite;
}
@keyframes hero3Sweep { 0% { left: -40%; } 100% { left: 120%; } }

.hero3-pill {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D4AF37;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 100px;
  padding: 7px 18px;
  margin: 0 0 24px;
  background: rgba(212,175,55,0.06);
}
.hero3-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  color: #fff;
  line-height: 1.16;
  font-weight: 900;
  margin: 0 0 22px;
  letter-spacing: -0.5px;
}
.hero3-underline { color: #D4AF37; position: relative; display: inline-block; }
.hero3-underline::after {
  content: ''; position: absolute; left: 0; bottom: -8px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  animation: hero3Pulse 3.5s ease-in-out infinite;
}
@keyframes hero3Pulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.7); }
  50%      { opacity: 1; transform: scaleX(1); }
}
.hero3-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.12rem);
  color: rgba(255,255,255,0.9);
  margin: 0 0 36px;
  line-height: 1.6;
}
.hero3-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: hero3Rise 0.8s ease-out both;
}
@keyframes hero3Rise { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.hero3-btn-gold {
  background: #D4AF37; color: #0F172A;
  padding: 17px 38px; border-radius: 8px;
  font-size: 1.04rem; font-weight: 800;
  text-decoration: none; display: inline-block;
  box-shadow: 0 8px 28px rgba(212,175,55,0.5);
  min-height: 48px; line-height: 1.2;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero3-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(212,175,55,0.6); color: #0F172A; }
.hero3-btn-ghost {
  background: rgba(255,255,255,0.07); color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 15px 32px; border-radius: 8px;
  font-size: 1rem; font-weight: 700;
  text-decoration: none; display: inline-block;
  min-height: 48px; line-height: 1.2;
  transition: background 0.2s, border-color 0.2s;
}
.hero3-btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: #fff; color: #fff; }
.hero3-trust {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  margin: 24px 0 0; letter-spacing: 0.03em;
}
@media (prefers-reduced-motion: reduce) {
  .hero3, .hero3-glyph, .hero3-shimmer, .hero3-underline::after, .hero3-cta { animation: none !important; }
  .hero3-glyph { opacity: 0.5 !important; }
}
@media (max-width: 600px) {
  .hero3-inner { padding: 50px 18px 46px; }
  .hero3-btn-gold, .hero3-btn-ghost { width: 100%; text-align: center; }
}

/* British flag emoji fallback sizing inside tile banner */
.mt3-banner-icon { line-height: 1; }

/* ════════════════════════════════════════════════════════════
   31. HERO v4 — clean gradient, gold glow, animated text
   ════════════════════════════════════════════════════════════ */
.hero3 {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(212,175,55,0.24), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(180,83,9,0.5), transparent 60%),
    linear-gradient(150deg, #4A1E1E 0%, #1E293B 42%, #0F172A 100%);
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.4),
    0 0 50px rgba(212,175,55,0.25),
    0 30px 80px rgba(15,23,42,0.45);
  animation: hero3Glow 4s ease-in-out infinite;
}
@keyframes hero3Glow {
  0%,100% { box-shadow: 0 0 0 1px rgba(212,175,55,0.4), 0 0 45px rgba(212,175,55,0.22), 0 30px 80px rgba(15,23,42,0.45); }
  50%     { box-shadow: 0 0 0 1px rgba(212,175,55,0.6), 0 0 70px rgba(212,175,55,0.42), 0 30px 80px rgba(15,23,42,0.5); }
}
.hero3-shimmer {
  position: absolute; top: 0; left: -40%;
  width: 40%; height: 100%; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(212,175,55,0.1), transparent);
  animation: hero3Sweep 8s ease-in-out infinite;
}
@keyframes hero3Sweep { 0% { left: -40%; } 100% { left: 130%; } }
.hero3-inner { position: relative; z-index: 2; text-align: center; padding: 76px 28px 70px; }
.hero3-pill {
  display: inline-block; font-size: 0.70rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: #D4AF37;
  border: 1px solid rgba(212,175,55,0.45); border-radius: 100px;
  padding: 7px 18px; margin: 0 0 26px; background: rgba(212,175,55,0.07);
  opacity: 0; animation: heroFadeUp 0.7s ease-out 0.05s both;
}
.hero3-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  color: #fff; line-height: 1.16; font-weight: 900;
  margin: 0 0 22px; letter-spacing: -0.5px;
}
.hero3-line { display: block; opacity: 0; }
.hero3-line1 { animation: heroFadeUp 0.7s ease-out 0.18s both; }
.hero3-line2 { animation: heroFadeUp 0.7s ease-out 0.34s both; }
.hero3-underline { color: #D4AF37; position: relative; display: inline-block; }
.hero3-underline::after {
  content: ''; position: absolute; left: 0; bottom: -8px; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  animation: hero3Pulse 3.5s ease-in-out infinite 1s;
}
@keyframes hero3Pulse { 0%,100% { opacity: 0.4; transform: scaleX(0.7);} 50% { opacity: 1; transform: scaleX(1);} }
.hero3-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.12rem); color: rgba(255,255,255,0.9);
  margin: 0 0 36px; line-height: 1.6; opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.5s both;
}
.hero3-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: heroFadeUp 0.7s ease-out 0.66s both; }
.hero3-btn-gold {
  background: #D4AF37; color: #0F172A !important; padding: 17px 38px; border-radius: 8px;
  font-size: 1.04rem; font-weight: 800; text-decoration: none; display: inline-block;
  box-shadow: 0 8px 28px rgba(212,175,55,0.5); min-height: 48px; line-height: 1.2;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero3-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(212,175,55,0.6); }
.hero3-btn-ghost {
  background: rgba(255,255,255,0.07); color: #fff !important; border: 2px solid rgba(255,255,255,0.7);
  padding: 15px 32px; border-radius: 8px; font-size: 1rem; font-weight: 700;
  text-decoration: none; display: inline-block; min-height: 48px; line-height: 1.2;
  transition: background 0.2s, border-color 0.2s;
}
.hero3-btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: #fff; }
.hero3-trust { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin: 24px 0 0; opacity: 0; animation: heroFadeUp 0.7s ease-out 0.82s both; }
@keyframes heroFadeUp { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hero3, .hero3-shimmer, .hero3-underline::after,
  .hero3-pill, .hero3-line, .hero3-sub, .hero3-cta, .hero3-trust { animation: none !important; opacity: 1 !important; }
}
@media (max-width: 600px) {
  .hero3-inner { padding: 54px 18px 50px; }
  .hero3-btn-gold, .hero3-btn-ghost { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   32. FAQ v3 — native <details> accordion (no JS needed)
   ════════════════════════════════════════════════════════════ */
.faq3-head { text-align: center; margin-bottom: 40px; }
.faq3 { max-width: 800px; margin: 0 auto; }
.faq3-item {
  background: #fff;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq3-item[open] {
  border-color: #D4AF37;
  box-shadow: 0 6px 22px rgba(212,175,55,0.15);
}
.faq3-q {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: #0F172A;
  position: relative;
  user-select: none;
  font-family: 'Inter', sans-serif;
  line-height: 1.45;
}
.faq3-q::-webkit-details-marker { display: none; }
.faq3-q::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: #D4AF37;
  transition: transform 0.25s;
  line-height: 1;
}
.faq3-item[open] .faq3-q::after { transform: translateY(-50%) rotate(45deg); }
.faq3-q:hover { background: #FFFBF5; }
.faq3-a {
  padding: 0 22px 20px;
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.75;
  animation: faqReveal 0.3s ease-out;
}
.faq3-a p { margin: 0 0 0.85rem; }
.faq3-a p:last-child { margin-bottom: 0; }
.faq3-a ul { margin: 0 0 0.85rem; padding-left: 20px; }
.faq3-a li { padding: 3px 0; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ════════════════════════════════════════════════════════════
   33. FOOTER v2 — clean, modern, fast
   ════════════════════════════════════════════════════════════ */
.ihf2 {
  background: linear-gradient(165deg, #0F172A 0%, #0B1220 100%);
  color: rgba(255,255,255,0.65);
}
.ihf2-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.ihf2-cta-text h3 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 6px;
  font-weight: 700;
}
.ihf2-cta-text p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.ihf2-cta-socials { display: flex; gap: 12px; }
.ihf2-soc {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, filter 0.2s;
}
.ihf2-soc svg { width: 20px; height: 20px; fill: #fff; }
.ihf2-soc:hover { transform: translateY(-3px) scale(1.05); filter: brightness(1.12); }
.ihf2-yt { background: #FF0000; }
.ihf2-tg { background: #229ED9; }
.ihf2-ig { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.ihf2-wa { background: #25D366; }
.ihf2-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.ihf2-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
.ihf2-brand p { font-size: 0.86rem; line-height: 1.65; margin: 0 0 14px; color: rgba(255,255,255,0.55); }
.ihf2-mail { color: #D4AF37; text-decoration: none; font-size: 0.85rem; font-weight: 600; }
.ihf2-mail:hover { color: #d9b87c; }
.ihf2-col h4 {
  color: #D4AF37;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  font-weight: 700;
}
.ihf2-col a {
  display: block;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 0.86rem;
  padding: 6px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.ihf2-col a:hover { color: #D4AF37; padding-left: 4px; }
.ihf2-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(212,175,55,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 860px) {
  .ihf2-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  .ihf2-cta { flex-direction: column; text-align: center; }
  .ihf2-cta-text h3 { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .ihf2-main { grid-template-columns: 1fr; }
  .ihf2-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   34. FRONT PAGE — remove title bar & top gap above hero
   ════════════════════════════════════════════════════════════ */
/* Hide Kadence's page title hero on the front page only */
.home .entry-hero,
.home .entry-hero-container-inner,
.home .kadence-breadcrumbs,
.home header.entry-header.page-title,
.home .page-title,
.page-template-front-page .entry-hero {
  display: none !important;
}
/* Remove default content top padding on the homepage so hero sits flush under nav */
.home .content-area,
.home .content-container,
.home .site-content,
.home .entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
/* Kill any empty leading paragraph/spacer the editor may leave */
.home .entry-content > p:empty,
.home .entry-content > .wp-block-spacer:first-child {
  display: none !important;
  margin: 0 !important;
  height: 0 !important;
}

/* ════════════════════════════════════════════════════════════
   35. FOOTER — labeled social buttons (icon + inline CTA text)
   ════════════════════════════════════════════════════════════ */
.ihf2-connect h4 { margin-bottom: 14px; }
.ihf2-connect { display: flex; flex-direction: column; }
.ihf2-social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ihf2-sbtn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff !important;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  line-height: 1.15;
}
.ihf2-sbtn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
  color: #fff !important;
}
.ihf2-sbtn-ic {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ihf2-sbtn-ic svg { width: 16px; height: 16px; fill: #fff; }
.ihf2-sbtn-tx { line-height: 1.2; }
.ihf2-sbtn-yt .ihf2-sbtn-ic { background: #FF0000; }
.ihf2-sbtn-tg .ihf2-sbtn-ic { background: #229ED9; }
.ihf2-sbtn-ig .ihf2-sbtn-ic { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.ihf2-sbtn-wa .ihf2-sbtn-ic { background: #25D366; }
.ihf2-sbtn-yt:hover { border-color: rgba(255,0,0,0.5); }
.ihf2-sbtn-tg:hover { border-color: rgba(34,158,217,0.5); }
.ihf2-sbtn-ig:hover { border-color: rgba(221,42,123,0.5); }
.ihf2-sbtn-wa:hover { border-color: rgba(37,211,102,0.5); }
.ihf2-bottom-links a { color: rgba(255,255,255,0.55); text-decoration: none; }
.ihf2-bottom-links a:hover { color: #D4AF37; }

/* CTA band now just headline (no icons) */
.ihf2-cta { justify-content: flex-start; }
.ihf2-cta-text { max-width: 100%; }

/* ════════════════════════════════════════════════════════════
   36. HINDI TYPOGRAPHY + LANGUAGE SWITCHER
   ════════════════════════════════════════════════════════════ */
/* Apply Devanagari font when body/element is Hindi */
html[lang="hi"] body,
html[lang="hi-IN"] body,
.trp-language-hi body,
[lang="hi"] {
  font-family: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;
}
html[lang="hi"] h1, html[lang="hi"] h2, html[lang="hi"] h3,
html[lang="hi"] .prem-h2, html[lang="hi"] .hero3-h1,
[lang="hi"] h1, [lang="hi"] h2, [lang="hi"] h3 {
  font-family: 'Noto Sans Devanagari', 'Playfair Display', Georgia, serif;
  letter-spacing: 0;
}
/* Devanagari text anywhere gets the right font automatically */
:lang(hi) { font-family: 'Noto Sans Devanagari', 'Inter', sans-serif; }

/* Language switcher */
.ihl-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(180,83,9,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  background: #fff;
}
.ihl-opt {
  color: #64748B;
  text-decoration: none;
  padding: 2px 4px;
  transition: color 0.2s;
}
.ihl-opt:hover { color: #0F172A; }
.ihl-opt.ihl-active { color: #0F172A; font-weight: 800; }
.ihl-sep { color: #D1D5DB; }
.ihl-header-wrap { display: inline-flex; align-items: center; margin-left: 14px; }
/* Footer variant */
.ihf2 .ihl-switch { background: rgba(255,255,255,0.07); border-color: rgba(212,175,55,0.3); }
.ihf2 .ihl-opt { color: rgba(255,255,255,0.7); }
.ihf2 .ihl-opt.ihl-active { color: #D4AF37; }
.ihf2 .ihl-sep { color: rgba(255,255,255,0.3); }

/* ════════════════════════════════════════════════════════════
   37. LATEST FROM BLOG cards
   ════════════════════════════════════════════════════════════ */
.ih-latest-posts.wp-block-latest-posts.is-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.ih-latest-posts.wp-block-latest-posts.is-grid li {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
  border: 1px solid rgba(212,175,55,0.14);
  transition: transform 0.25s, box-shadow 0.25s;
  margin: 0;
}
.ih-latest-posts li:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(212,175,55,0.18); }
.ih-latest-posts .wp-block-latest-posts__featured-image img { width: 100%; height: 170px; object-fit: cover; }
.ih-latest-posts .wp-block-latest-posts__post-title {
  display: block; padding: 14px 18px 0; font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; color: #0F172A; font-weight: 700; line-height: 1.3; text-decoration: none;
}
.ih-latest-posts .wp-block-latest-posts__post-date { padding: 6px 18px 0; font-size: 0.75rem; color: #94A3B8; }
.ih-latest-posts .wp-block-latest-posts__post-excerpt { padding: 8px 18px 18px; font-size: 0.85rem; color: #475569; line-height: 1.6; }
@media (max-width: 768px) { .ih-latest-posts.wp-block-latest-posts.is-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   38. TRUST BADGES (Double JRF / 1380 pages / Secure Payment)
   ════════════════════════════════════════════════════════════ */
.ih-trustbadges {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  max-width: 760px; margin: 0 auto;
}
.ih-badge {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(212,175,55,0.3);
  border-radius: 100px; padding: 8px 18px;
  font-size: 0.82rem; font-weight: 700; color: #0F172A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.ih-badge-ic { font-size: 1.1rem; }

/* ════════════════════════════════════════════════════════════
   39. FREE SAMPLES PAGE
   ════════════════════════════════════════════════════════════ */
.fs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
.fs-card {
  background: linear-gradient(155deg,#fff,#FFFAF4);
  border-radius: 14px; padding: 24px 22px;
  border: 1px solid rgba(212,175,55,0.18);
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  text-align: center; transition: transform 0.25s, box-shadow 0.25s;
}
.fs-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(212,175,55,0.2); }
.fs-ic {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  color: #fff;
}
.fs-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; color: #0F172A; font-weight: 700; margin: 0 0 4px; }
.fs-meta { font-size: 0.78rem; color: #94A3B8; margin-bottom: 14px; }
.fs-btn {
  display: inline-block; background: #D4AF37; color: #0F172A !important;
  padding: 10px 22px; border-radius: 7px; font-weight: 700; font-size: 0.85rem;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.fs-btn:hover { background: #BFA133; transform: translateY(-2px); color: #0F172A !important; }
@media (max-width: 768px) { .fs-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   40. LEGAL PAGES typography
   ════════════════════════════════════════════════════════════ */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 0 4px; }
.legal-wrap h2 { font-family: 'Playfair Display', Georgia, serif; color: #0F172A; font-size: 1.4rem; margin: 2rem 0 0.8rem; }
.legal-wrap h3 { color: #0F172A; font-size: 1.05rem; margin: 1.4rem 0 0.5rem; font-weight: 700; }
.legal-wrap p { color: #475569; line-height: 1.8; margin: 0 0 1rem; font-size: 0.96rem; }
.legal-wrap ul, .legal-wrap ol { margin: 0 0 1.2rem; padding-left: 24px; }
.legal-wrap li { color: #475569; line-height: 1.75; margin-bottom: 0.5rem; }
.legal-wrap a { color: #0F172A; font-weight: 600; }
.legal-updated { font-size: 0.82rem; color: #94A3B8; font-style: italic; margin-bottom: 1.5rem; }

/* ════════════════════════════════════════════════════════════
   41. AUTHOR STRIP (homepage)
   ════════════════════════════════════════════════════════════ */
.author-strip {
  display: flex; align-items: center; gap: 22px;
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(150deg,#fff,#FFFAF4);
  border: 1px solid rgba(212,175,55,0.22); border-radius: 16px;
  padding: 22px 26px; box-shadow: 0 4px 20px rgba(212,175,55,0.1);
}
.author-strip-photo img {
  width: 92px; height: 92px; border-radius: 50%; object-fit: cover;
  border: 3px solid #D4AF37; flex-shrink: 0;
}
.author-strip-name { font-family:'Playfair Display', Georgia, serif; font-size:1.25rem; font-weight:700; color:#0F172A; display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.author-strip-badge { background:#0F172A; color:#fff; font-size:0.66rem; font-weight:700; padding:3px 10px; border-radius:100px; letter-spacing:0.05em; }
.author-strip-bio { font-size:0.88rem; color:#475569; line-height:1.6; margin:6px 0 8px; }
.author-strip-link { font-size:0.85rem; color:#0F172A; font-weight:700; text-decoration:none; }
.author-strip-link:hover { color:#D4AF37; }
@media (max-width:600px){ .author-strip{ flex-direction:column; text-align:center; } .author-strip-name{ justify-content:center; } }

/* ════════════════════════════════════════════════════════════
   42. HERO TRUST BADGES
   ════════════════════════════════════════════════════════════ */
.hero3-badges { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:18px; }
.hero3-badge {
  font-size:0.74rem; font-weight:700; color:#fff;
  background:rgba(255,255,255,0.08); border:1px solid rgba(212,175,55,0.4);
  border-radius:100px; padding:6px 14px;
}

/* ════════════════════════════════════════════════════════════
   43. UPSC COMING SOON cards
   ════════════════════════════════════════════════════════════ */
.upsc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:1080px; margin:0 auto; }
.upsc-card {
  position:relative; background:linear-gradient(155deg,#fff,#F8F4ED);
  border:1px solid rgba(212,175,55,0.2); border-radius:14px;
  padding:24px 20px; text-align:center;
  box-shadow:0 3px 14px rgba(0,0,0,0.05); transition:transform 0.25s, box-shadow 0.25s;
}
.upsc-card:hover { transform:translateY(-4px); box-shadow:0 14px 34px rgba(212,175,55,0.18); }
.upsc-badge {
  position:absolute; top:14px; right:14px;
  background:#D4AF37; color:#0F172A; font-size:0.62rem; font-weight:800;
  padding:4px 11px; border-radius:100px; letter-spacing:0.06em; text-transform:uppercase;
}
.upsc-ic { width:54px; height:54px; border-radius:14px; margin:6px auto 14px; display:flex; align-items:center; justify-content:center; font-size:1.6rem; color:#fff; }
.upsc-name { font-family:'Playfair Display', Georgia, serif; font-size:1.05rem; font-weight:700; color:#0F172A; margin:0 0 6px; }
.upsc-teaser { font-size:0.83rem; color:#475569; line-height:1.55; margin:0 0 12px; }
.upsc-launch { font-size:0.78rem; font-weight:700; color:#1E3A5F; background:#EFF6FF; border-radius:100px; padding:4px 12px; display:inline-block; margin-bottom:14px; }
.upsc-btn { display:block; background:#0F172A; color:#fff !important; padding:10px 14px; border-radius:7px; font-weight:700; font-size:0.8rem; text-decoration:none; transition:background 0.2s; }
.upsc-btn:hover { background:#1E293B; color:#fff !important; }
@media (max-width:860px){ .upsc-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .upsc-grid{ grid-template-columns:1fr; } }

/* UPSC coming-soon page extras */
.upsc-waitlist { max-width:640px; margin:0 auto; text-align:center; background:linear-gradient(155deg,#FFFDF7,#FBF0D8); border:1px solid rgba(212,175,55,0.3); border-radius:16px; padding:34px 28px; }
.upsc-waitlist h2 { font-family:'Playfair Display', Georgia, serif; color:#0F172A; font-size:1.4rem; margin:0 0 10px; }
.upsc-waitlist p { color:#475569; font-size:0.92rem; line-height:1.6; margin:0 0 18px; }
.upsc-form-placeholder { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.upsc-input { flex:1; min-width:200px; padding:13px 16px; border:1px solid #D1D5DB; border-radius:8px; font-size:0.9rem; }
.upsc-submit { background:#D4AF37; color:#0F172A; font-weight:800; border:none; padding:13px 22px; border-radius:8px; cursor:pointer; font-size:0.9rem; }
.upsc-form-note { font-size:0.75rem; color:#94A3B8; margin-top:14px; }
.upsc-syllabus { display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:880px; margin:0 auto; }
.usl-col { background:#fff; border-radius:12px; padding:24px; box-shadow:0 3px 14px rgba(0,0,0,0.05); }
.usl-col h3 { color:#0F172A; font-size:1.05rem; margin:0 0 12px; border-bottom:2px solid #D4AF37; padding-bottom:8px; }
.usl-col ul { margin:0; padding-left:18px; }
.usl-col li { color:#475569; font-size:0.88rem; padding:4px 0; line-height:1.5; }
@media (max-width:680px){ .upsc-syllabus{ grid-template-columns:1fr; } }

/* ════════════════════════════════════════════════════════════
   44. URGENCY: timer + scarcity
   ════════════════════════════════════════════════════════════ */
.price3-urgency { max-width:940px; margin:0 auto 0; display:grid; grid-template-columns:auto 1fr; gap:20px; align-items:center;
  background:linear-gradient(135deg,#0B1220,#3D1414); border-radius:14px 14px 0 0; padding:18px 28px; border-bottom:2px solid #D4AF37; }
.price3-urgency-timer { display:flex; flex-direction:column; gap:2px; }
.pu-label { font-size:0.72rem; color:rgba(255,255,255,0.65); text-transform:uppercase; letter-spacing:0.08em; }
.pu-clock { font-family:'Playfair Display', Georgia, serif; font-size:1.6rem; font-weight:900; color:#D4AF37; letter-spacing:1px; }
.price3-urgency-stock { color:#fff; }
.price3-urgency-stock span { font-size:0.85rem; }
.price3-urgency-stock strong { color:#D4AF37; font-size:1rem; }
.pu-bar { height:7px; background:rgba(255,255,255,0.12); border-radius:100px; margin-top:8px; overflow:hidden; }
.pu-bar-fill { height:100%; background:linear-gradient(90deg,#D4AF37,#D97706); border-radius:100px; transition:width 0.6s ease; }
.ih-expired .pu-clock { color:#94A3B8; }
@media (max-width:600px){ .price3-urgency{ grid-template-columns:1fr; gap:14px; text-align:center; } }

/* ════════════════════════════════════════════════════════════
   45. STICKY BUNDLE BUY BAR
   ════════════════════════════════════════════════════════════ */
.ih-sticky-buy {
  position:fixed; left:0; right:0; bottom:0; z-index:9999;
  background:linear-gradient(135deg,#0F172A,#1E293B); color:#fff;
  display:flex; align-items:center; justify-content:center; gap:18px;
  padding:12px 20px; box-shadow:0 -4px 20px rgba(0,0,0,0.25);
  transform:translateY(100%); transition:transform 0.35s ease;
}
.ih-sticky-buy.is-visible { transform:translateY(0); }
.ih-sticky-buy.is-closed { display:none; }
.ih-sticky-text { font-size:0.9rem; }
.ih-sticky-text s { color:rgba(255,255,255,0.5); }
.ih-sticky-text strong { color:#D4AF37; font-size:1.1rem; }
.ih-sticky-text em { color:rgba(255,255,255,0.75); font-style:normal; font-size:0.8rem; }
.ih-sticky-cta { background:#D4AF37; color:#0F172A !important; font-weight:800; padding:10px 24px; border-radius:7px; text-decoration:none; font-size:0.9rem; white-space:nowrap; transition:background 0.2s; }
.ih-sticky-cta:hover { background:#d9b87c; color:#0F172A !important; }
.ih-sticky-close { background:none; border:none; color:rgba(255,255,255,0.7); font-size:1.4rem; cursor:pointer; line-height:1; padding:0 4px; }
.ih-sticky-close:hover { color:#fff; }
/* Prevent the bar from covering content / mobile safe area */
body { padding-bottom:0; }
.ih-sticky-buy.is-visible ~ * { }
@media (max-width:600px){
  .ih-sticky-buy { flex-wrap:wrap; gap:10px; padding:10px 14px; }
  .ih-sticky-text { width:100%; text-align:center; font-size:0.82rem; }
  .ih-sticky-cta { flex:1; text-align:center; }
}

/* ════════════════════════════════════════════════════════════
   46. PRICING: total savings row + most popular
   ════════════════════════════════════════════════════════════ */
.price3-total-row td { background:#FFF8F0 !important; border-top:2px solid #D4AF37; font-size:0.92rem; }
.price3-total-row strong { color:#0F172A; }
/* sticky table header on desktop */
@media (min-width:769px){
  .price3-table thead th { position:sticky; top:0; z-index:2; }
}

/* ════════════════════════════════════════════════════════════
   47. VIDEOS PAGE
   ════════════════════════════════════════════════════════════ */
.vid-subscribe { display:inline-flex; align-items:center; gap:10px; background:#FF0000; color:#fff !important; padding:12px 24px; border-radius:8px; font-weight:700; font-size:0.95rem; text-decoration:none; transition:transform 0.2s, filter 0.2s; }
.vid-subscribe:hover { transform:translateY(-2px); filter:brightness(1.1); color:#fff !important; }
.vid-sub-ic svg { width:22px; height:22px; display:block; }
.vid-filters { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:28px; }
.vid-filter { background:#fff; border:1px solid rgba(180,83,9,0.25); color:#0F172A; font-weight:600; font-size:0.85rem; padding:8px 20px; border-radius:100px; cursor:pointer; transition:all 0.2s; }
.vid-filter:hover { background:#FFF8F0; }
.vid-filter.is-active { background:#0F172A; color:#fff; border-color:#0F172A; }
.vid-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1100px; margin:0 auto; }
.vid-card { background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 3px 14px rgba(0,0,0,0.06); border:1px solid rgba(212,175,55,0.14); text-decoration:none; transition:transform 0.25s, box-shadow 0.25s; display:block; }
.vid-card:hover { transform:translateY(-4px); box-shadow:0 14px 34px rgba(212,175,55,0.18); }
.vid-thumb { position:relative; aspect-ratio:16/9; overflow:hidden; }
.vid-thumb img { width:100%; height:100%; object-fit:cover; }
.vid-play { position:absolute; inset:0; margin:auto; width:54px; height:54px; background:rgba(255,0,0,0.92); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem; padding-left:4px; }
.vid-tag { position:absolute; top:10px; left:10px; background:rgba(0,0,0,0.7); color:#fff; font-size:0.66rem; font-weight:700; padding:3px 9px; border-radius:5px; text-transform:uppercase; }
.vid-body { padding:14px 16px 16px; }
.vid-title { font-family:'Playfair Display', Georgia, serif; font-size:1rem; font-weight:700; color:#0F172A; line-height:1.3; margin-bottom:5px; }
.vid-desc { font-size:0.82rem; color:#64748B; line-height:1.5; margin:0 0 10px; }
.vid-watch { font-size:0.82rem; font-weight:700; color:#FF0000; }
@media (max-width:860px){ .vid-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .vid-grid{ grid-template-columns:1fr; } }

/* ════════════════════════════════════════════════════════════
   48. ABOUT: photo/story, video, timeline, CV
   ════════════════════════════════════════════════════════════ */
.about-story { display:grid; grid-template-columns:0.8fr 1.2fr; gap:44px; max-width:1080px; margin:0 auto; align-items:start; }
.about-photo-frame { position:relative; border-radius:16px; overflow:hidden; box-shadow:0 20px 60px rgba(180,83,9,0.2),0 0 0 1px rgba(212,175,55,0.25); aspect-ratio:4/5; }
.about-photo-frame img { width:100%; height:100%; object-fit:cover; }
.about-photo-badge { position:absolute; bottom:14px; left:14px; right:14px; background:rgba(20,8,8,0.82); backdrop-filter:blur(8px); border:1px solid rgba(212,175,55,0.3); border-radius:10px; padding:11px 14px; color:#fff; }
.about-photo-badge strong { color:#D4AF37; font-size:0.9rem; display:block; }
.about-photo-badge span { font-size:0.74rem; color:rgba(255,255,255,0.7); }
.about-cv-btn { display:block; text-align:center; margin-top:16px; background:#fff; border:1.5px solid #0F172A; color:#0F172A !important; padding:11px 16px; border-radius:8px; font-weight:700; font-size:0.85rem; text-decoration:none; transition:all 0.2s; }
.about-cv-btn:hover { background:#0F172A; color:#fff !important; }
.about-story-col h2 { text-align:left !important; }
.about-video { max-width:760px; margin:0 auto; aspect-ratio:16/9; border-radius:14px; overflow:hidden; box-shadow:0 16px 44px rgba(0,0,0,0.18); }
.about-video iframe { width:100%; height:100%; border:0; display:block; }
.about-timeline { max-width:760px; margin:0 auto; position:relative; padding-left:30px; }
.about-timeline::before { content:''; position:absolute; left:7px; top:6px; bottom:6px; width:2px; background:linear-gradient(#D4AF37,#0F172A); }
.atl-item { position:relative; margin-bottom:20px; }
.atl-dot { position:absolute; left:-30px; top:6px; width:16px; height:16px; border-radius:50%; background:#D4AF37; border:3px solid #fff; box-shadow:0 0 0 2px #D4AF37; }
.atl-card { background:#fff; border:1px solid rgba(212,175,55,0.18); border-radius:10px; padding:14px 18px; box-shadow:0 2px 10px rgba(0,0,0,0.04); }
.atl-year { font-family:'Playfair Display', Georgia, serif; font-weight:700; color:#0F172A; font-size:1rem; margin-bottom:3px; }
.atl-card p { margin:0; font-size:0.86rem; color:#475569; line-height:1.55; }
@media (max-width:820px){ .about-story{ grid-template-columns:1fr; gap:30px; } .about-photo-col{ max-width:360px; margin:0 auto; } .about-story-col h2{ text-align:center !important; } }

/* ════════════════════════════════════════════════════════════
   49. NOTES PREVIEW LIGHTBOX
   ════════════════════════════════════════════════════════════ */
.ih-lightbox { position:fixed; inset:0; background:rgba(15,8,8,0.9); z-index:10000; display:none; align-items:center; justify-content:center; padding:30px; cursor:zoom-out; }
.ih-lightbox.is-open { display:flex; }
.ih-lightbox img { max-width:92%; max-height:92%; border-radius:8px; box-shadow:0 20px 60px rgba(0,0,0,0.5); }
.ih-lightbox-close { position:absolute; top:20px; right:28px; color:#fff; font-size:2.4rem; cursor:pointer; line-height:1; }

/* ════════════════════════════════════════════════════════════
   50. CTA3 (final cta animated, used on multiple pages)
   ════════════════════════════════════════════════════════════ */
.cta3 { position:relative; max-width:1100px; margin:0 auto; border-radius:20px; overflow:hidden;
  background:radial-gradient(ellipse at 20% 0%,rgba(212,175,55,0.22),transparent 55%),linear-gradient(150deg,#0F172A,#1E293B);
  box-shadow:0 0 0 1px rgba(212,175,55,0.35),0 20px 60px rgba(15,23,42,0.4); }
.cta3-shimmer { position:absolute; top:0; left:-40%; width:40%; height:100%; background:linear-gradient(100deg,transparent,rgba(212,175,55,0.1),transparent); animation:hero3Sweep 8s ease-in-out infinite; }
.cta3-inner { position:relative; z-index:2; text-align:center; padding:54px 28px; }
.cta3-h2 { font-family:'Playfair Display', Georgia, serif; font-size:clamp(1.6rem,4vw,2.3rem); color:#fff; margin:0 0 14px; font-weight:700; }
.cta3-sub { color:rgba(255,255,255,0.85); font-size:1rem; margin:0 0 26px; line-height:1.6; }
.cta3-btn { background:#D4AF37; color:#0F172A !important; padding:16px 38px; border-radius:8px; font-size:1.04rem; font-weight:800; text-decoration:none; display:inline-block; box-shadow:0 8px 28px rgba(212,175,55,0.5); transition:transform 0.2s; }
.cta3-btn:hover { transform:translateY(-2px); color:#0F172A !important; }

/* ════════════════════════════════════════════════════════════
   51. FOOTER LANG SWITCHER POSITION
   ════════════════════════════════════════════════════════════ */
.ihf2-bottom { gap: 14px; }
.ihf2-bottom-mid { display: inline-flex; align-items: center; }
.ihf2-bottom .ihl-switch { font-size: 0.8rem; padding: 3px 10px; }
@media (max-width: 600px) {
  .ihf2-bottom { flex-direction: column; text-align: center; gap: 10px; }
}

/* Ensure language switcher in Kadence sticky header is vertically centered */
.site-header-item .ihl-header-wrap,
.header-navigation .ihl-header-wrap { display: inline-flex; align-items: center; }

/* Footer social grid responsive */
@media (max-width: 480px) { .ihf2-social-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   52. WHY ITIHAASKAR v4 (photo + reasons)
   ════════════════════════════════════════════════════════════ */
.why4 { display:grid; grid-template-columns:0.85fr 1.15fr; gap:48px; max-width:1080px; margin:0 auto; align-items:center; }
.why4-photo { position:relative; }
.why4-photo-frame { position:relative; border-radius:16px; overflow:hidden; box-shadow:0 20px 60px rgba(180,83,9,0.22),0 0 0 1px rgba(212,175,55,0.25); aspect-ratio:4/5; background:linear-gradient(160deg,#2a1212,#4a1e1e); }
.why4-photo-frame img { width:100%; height:100%; object-fit:cover; display:block; }
.why4-photo-badge { position:absolute; bottom:16px; left:16px; right:16px; background:rgba(20,8,8,0.82); backdrop-filter:blur(8px); border:1px solid rgba(212,175,55,0.3); border-radius:10px; padding:11px 15px; color:#fff; }
.why4-photo-badge strong { color:#D4AF37; font-size:0.92rem; display:block; }
.why4-photo-badge span { font-size:0.74rem; color:rgba(255,255,255,0.7); }
.why4-float { position:absolute; top:-14px; right:-12px; background:linear-gradient(145deg,#D4AF37,#BFA133); color:#0F172A; font-weight:800; font-size:0.8rem; padding:9px 16px; border-radius:100px; box-shadow:0 8px 24px rgba(212,175,55,0.4); transform:rotate(4deg); }
.why4-content h2 { text-align:left !important; }
.why4-lead { font-size:1.08rem; color:#0F172A; line-height:1.7; font-weight:500; margin:0 0 1.5rem; }
.why4-lead strong { color:#0F172A; }
.why4-reasons { display:flex; flex-direction:column; gap:16px; margin-bottom:1.5rem; }
.why4-reason { display:flex; gap:14px; align-items:flex-start; }
.why4-ic { flex-shrink:0; width:42px; height:42px; border-radius:11px; background:linear-gradient(145deg,#0F172A,#1E293B); display:flex; align-items:center; justify-content:center; font-size:1.2rem; box-shadow:0 6px 16px rgba(180,83,9,0.25); }
.why4-reason strong { display:block; color:#0F172A; font-size:0.98rem; margin-bottom:2px; }
.why4-reason p { margin:0; font-size:0.88rem; color:#64748B; line-height:1.55; }
.why4-link { display:inline-block; color:#0F172A; font-weight:700; text-decoration:none; font-size:0.92rem; }
.why4-link:hover { color:#D4AF37; }
@media (max-width:820px){ .why4{ grid-template-columns:1fr; gap:32px; } .why4-photo{ max-width:360px; margin:0 auto; } .why4-content h2{ text-align:center !important; } }

/* ════════════════════════════════════════════════════════════
   53. MODULE TABS (UGC / UPSC)
   ════════════════════════════════════════════════════════════ */
.mtab-wrap { max-width:1100px; margin:0 auto; }
.mtab-nav { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:36px; }
.mtab-btn { background:#fff; border:2px solid rgba(180,83,9,0.2); color:#0F172A; font-weight:700; font-size:0.92rem; padding:12px 26px; border-radius:100px; cursor:pointer; transition:all 0.22s; font-family:inherit; }
.mtab-btn:hover { border-color:#D4AF37; background:#FFFBF5; }
.mtab-btn.is-active { background:linear-gradient(135deg,#0F172A,#1E293B); color:#fff; border-color:#0F172A; box-shadow:0 8px 22px rgba(180,83,9,0.25); }
.mtab-panel { display:none; animation:mtabFade 0.35s ease; }
.mtab-panel.is-active { display:block; }
@keyframes mtabFade { from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:translateY(0); } }

/* ════════════════════════════════════════════════════════════
   54. FINAL CTA — fix contrast on fine print
   ════════════════════════════════════════════════════════════ */
.cta3-fine { font-size:0.88rem; color:#FBE9D2 !important; margin:20px 0 0; font-weight:500; }
.cta3-strike { color:rgba(255,255,255,0.55); text-decoration:line-through; }
.cta3-now { color:#E6C257; font-weight:800; font-size:1.05rem; }

/* ════════════════════════════════════════════════════════════
   55. HERO VIDEO BUTTON + MODAL
   ════════════════════════════════════════════════════════════ */
.hero3-btn-video { display:inline-flex; align-items:center; gap:9px; background:rgba(255,255,255,0.08); color:#fff; border:2px solid rgba(255,255,255,0.55); padding:15px 28px; border-radius:8px; font-size:1rem; font-weight:700; cursor:pointer; min-height:48px; line-height:1.2; transition:background 0.2s, border-color 0.2s; font-family:inherit; }
.hero3-btn-video:hover { background:rgba(255,255,255,0.16); border-color:#fff; }
.hero3-video-play { display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; background:#D4AF37; color:#0F172A; border-radius:50%; font-size:0.7rem; padding-left:2px; }
.hero3-sample-link { display:inline-block; margin-top:14px; color:rgba(255,255,255,0.75); font-size:0.86rem; text-decoration:underline; text-underline-offset:3px; }
.hero3-sample-link:hover { color:#D4AF37; }

.ih-video-modal { position:fixed; inset:0; background:rgba(10,5,5,0.9); z-index:10001; display:none; align-items:center; justify-content:center; padding:24px; }
.ih-video-modal.is-open { display:flex; animation:mtabFade 0.25s ease; }
.ih-video-modal-inner { position:relative; width:100%; max-width:880px; }
.ih-video-modal-frame { position:relative; aspect-ratio:16/9; border-radius:14px; overflow:hidden; box-shadow:0 30px 80px rgba(0,0,0,0.5); border:1px solid rgba(212,175,55,0.3); }
.ih-video-modal-frame iframe { width:100%; height:100%; border:0; display:block; }
.ih-video-modal-close { position:absolute; top:-44px; right:0; background:none; border:none; color:#fff; font-size:2.2rem; cursor:pointer; line-height:1; }
.ih-video-modal-close:hover { color:#D4AF37; }
@media (max-width:600px){ .hero3-btn-video{ width:100%; justify-content:center; } .ih-video-modal-close{ top:-40px; } }

/* ════════════════════════════════════════════════════════════
   56. SCOPED EN/HINDI TOGGLE
   ════════════════════════════════════════════════════════════ */
.ih-lang-toggle { display:inline-flex; align-items:center; gap:4px; background:#fff; border:1px solid rgba(180,83,9,0.2); border-radius:100px; padding:4px 6px; margin:0 auto 22px; box-shadow:0 2px 10px rgba(0,0,0,0.05); }
.ih-lang-toggle { display:flex; width:fit-content; }
.ih-lang-label { font-size:0.95rem; padding:0 6px; }
.ih-lang-opt { background:none; border:none; color:#64748B; font-weight:700; font-size:0.82rem; padding:6px 14px; border-radius:100px; cursor:pointer; transition:all 0.2s; font-family:'Noto Sans Devanagari','Inter',sans-serif; }
.ih-lang-opt:hover { color:#0F172A; }
.ih-lang-opt.is-active { background:linear-gradient(135deg,#0F172A,#1E293B); color:#fff; }
/* Center the toggle above the modules header */
.prem-head + .ih-lang-toggle, .ih-lang-toggle { margin-left:auto; margin-right:auto; }
/* When Hindi is active, render Devanagari nicely */
[data-hi] { font-feature-settings:"kern"; }
.ih-lang-opt[data-lang="hi"] { font-family:'Noto Sans Devanagari',sans-serif; }

/* ════════════════════════════════════════════════════════════
   57. HERO BACKGROUND VIDEO + SOUND TOGGLE
   ════════════════════════════════════════════════════════════ */
.hero3-hasvideo { position: relative; }
.hero3-bgvid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* Dark gradient overlay so text stays readable over the video */
.hero3-vid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(212,175,55,0.18), transparent 55%),
    linear-gradient(150deg, rgba(15,23,42,0.88) 0%, rgba(109,31,31,0.78) 42%, rgba(42,14,14,0.92) 100%);
}
.hero3-hasvideo .hero3-shimmer { z-index: 2; }
.hero3-hasvideo .hero3-inner { position: relative; z-index: 3; }
/* Sound toggle button */
.hero3-sound {
  position: absolute; top: 16px; right: 16px; z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(20,8,8,0.55); border: 1px solid rgba(212,175,55,0.45);
  color: #fff; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.hero3-sound:hover { background: rgba(20,8,8,0.8); transform: scale(1.06); border-color: #D4AF37; }
.hero3-sound.is-on { background: #D4AF37; border-color: #D4AF37; }
.hero3-sound.is-on .hero3-sound-on { color: #0F172A; }
@media (max-width: 600px) { .hero3-sound { width: 38px; height: 38px; font-size: 0.95rem; top: 12px; right: 12px; } }

/* ════════════════════════════════════════════════════════════
   58. PREMIUM POLISH LAYER — golden accents, refined hovers
   ════════════════════════════════════════════════════════════ */

/* 58.1 Consistent gold hairline accents on section headers */
.prem-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.prem-eyebrow::before,
.prem-eyebrow::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold, #D4AF37));
  opacity: 0.8;
}
.prem-eyebrow::after { background: linear-gradient(90deg, var(--gold, #D4AF37), transparent); }

/* 58.2 Gold gradient underline accent beneath every prem-h2 */
.prem-h2 { position: relative; }
.prem-head .prem-h2::after {
  content: "";
  display: block;
  width: 56px; height: 3px;
  margin: 14px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #D4AF37, #0F172A);
  opacity: 0.9;
}
.why4-content .prem-h2::after,
.about-story-col .prem-h2::after { margin-left: 0; }

/* 58.3 Refined card hover — lift + gold ring + soft glow (applied broadly) */
.mt3, .upsc-card, .testi3, .fs-card, .vid-card,
.ih-latest-posts li, .usl-col {
  transition: transform 0.32s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.32s cubic-bezier(.2,.7,.2,1),
              border-color 0.32s ease;
  will-change: transform;
}
.mt3:hover, .fs-card:hover, .vid-card:hover, .ih-latest-posts li:hover {
  box-shadow: 0 18px 44px rgba(180,83,9,0.16),
              0 0 0 1px rgba(212,175,55,0.5),
              0 0 28px rgba(212,175,55,0.18);
}

/* 58.4 Gold shimmer sweep on primary buttons (hover) */
.hero3-btn-gold, .price3-bundle-btn, .cta3-btn, .ih-sticky-cta, .mt3-buy, .price3-buy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero3-btn-gold::after, .price3-bundle-btn::after, .cta3-btn::after,
.ih-sticky-cta::after, .mt3-buy::after, .price3-buy::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%; z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.hero3-btn-gold:hover::after, .price3-bundle-btn:hover::after, .cta3-btn:hover::after,
.ih-sticky-cta:hover::after, .mt3-buy:hover::after, .price3-buy:hover::after {
  left: 130%;
}

/* 58.5 Subtle gold link underline animation */
.author-strip-link, .why4-link, .mt3-viewall, .mc2-link, .vid-watch {
  position: relative;
  background-image: linear-gradient(var(--gold,#D4AF37), var(--gold,#D4AF37));
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease, color 0.2s ease;
  padding-bottom: 1px;
}
.author-strip-link:hover, .why4-link:hover, .mt3-viewall:hover, .mc2-link:hover, .vid-watch:hover {
  background-size: 100% 1.5px;
}

/* 58.6 Tile banner icons gain a soft gold halo on hover */
.mt3 .mt3-banner-icon { transition: transform 0.4s cubic-bezier(.2,.7,.2,1), filter 0.4s ease; }
.mt3:hover .mt3-banner-icon {
  transform: scale(1.12) translateY(-2px);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35)) drop-shadow(0 0 10px rgba(212,175,55,0.5));
}

/* 58.7 Gold corner flourishes on the bundle card (manuscript feel) */
.price3-bundle { position: relative; }
.price3-bundle::before, .price3-bundle::after {
  content: "";
  position: absolute; width: 26px; height: 26px;
  border: 2px solid rgba(212,175,55,0.55);
  z-index: 2; pointer-events: none;
}
.price3-bundle::before { top: 12px; left: 12px; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.price3-bundle::after  { bottom: 12px; right: 12px; border-left: none; border-top: none; border-radius: 0 0 6px 0; }

/* 58.8 Section divider — subtle gold diamond motif */
.ih-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 0 auto; max-width: 240px; padding: 8px 0;
  color: rgba(212,175,55,0.7);
}
.ih-divider::before, .ih-divider::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5));
}
.ih-divider::after { background: linear-gradient(90deg, rgba(212,175,55,0.5), transparent); }
.ih-divider span { font-size: 0.7rem; }

/* 58.9 Refined focus-visible states for accessibility (gold ring) */
a:focus-visible, button:focus-visible, .mtab-btn:focus-visible, .ih-lang-opt:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
  border-radius: 4px;
}

/* 58.10 Testimonial cards — gold quotation mark accent */
.testi3 { position: relative; }
.testi3::before {
  content: "\201C";
  position: absolute; top: 6px; right: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.4rem; line-height: 1;
  color: rgba(212,175,55,0.18);
  pointer-events: none;
}

/* 58.11 Pricing rows — gold left-accent on hover */
.price3-table tbody tr { transition: background 0.2s ease; }
.price3-table tbody tr td:first-child { position: relative; }
.price3-table tbody tr:hover td:first-child::before {
  content: "";
  position: absolute; left: 0; top: 8%; bottom: 8%;
  width: 3px; border-radius: 3px;
  background: linear-gradient(#D4AF37, #0F172A);
}

/* ════════════════════════════════════════════════════════════
   59. SUBTLE SVG HISTORICAL MOTIFS (hero + footer only)
   Inline data-URI SVGs — zero extra HTTP requests, very light.
   ════════════════════════════════════════════════════════════ */

/* 59.1 Ashoka-Chakra-inspired spoke wheel, faint, top-right of hero */
.hero3-hasvideo::after,
.hero3::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  z-index: 1; pointer-events: none;
  opacity: 0.10;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23C9A66B' stroke-width='1'%3E%3Ccircle cx='50' cy='50' r='46'/%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3Ccircle cx='50' cy='50' r='6'/%3E%3Cg%3E%3Cline x1='50' y1='10' x2='50' y2='90'/%3E%3Cline x1='10' y1='50' x2='90' y2='50'/%3E%3Cline x1='21.7' y1='21.7' x2='78.3' y2='78.3'/%3E%3Cline x1='78.3' y1='21.7' x2='21.7' y2='78.3'/%3E%3Cline x1='33' y1='13' x2='67' y2='87'/%3E%3Cline x1='67' y1='13' x2='33' y2='87'/%3E%3Cline x1='13' y1='33' x2='87' y2='67'/%3E%3Cline x1='87' y1='33' x2='13' y2='67'/%3E%3Cline x1='13' y1='67' x2='87' y2='33'/%3E%3Cline x1='87' y1='67' x2='13' y2='33'/%3E%3Cline x1='33' y1='87' x2='67' y2='13'/%3E%3Cline x1='67' y1='87' x2='33' y2='13'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: chakraSpin 90s linear infinite;
}
@keyframes chakraSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero3::after, .hero3-hasvideo::after { animation: none; } }
@media (max-width: 600px) { .hero3::after, .hero3-hasvideo::after { width: 140px; height: 140px; top: -24px; right: -24px; } }

/* 59.2 Faint manuscript-line texture across the footer */
.ihf2 {
  position: relative;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 26px, rgba(212,175,55,0.04) 27px, transparent 28px),
    linear-gradient(165deg, #0F172A 0%, #0B1220 100%);
}
/* 59.3 Faint column/pillar motif bottom-left of footer */
.ihf2::after {
  content: "";
  position: absolute;
  bottom: 0; left: 24px;
  width: 120px; height: 160px;
  opacity: 0.05; pointer-events: none;
  background-repeat: no-repeat; background-position: bottom left; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 90'%3E%3Cg fill='none' stroke='%23C9A66B' stroke-width='1.2'%3E%3Crect x='12' y='20' width='36' height='4'/%3E%3Crect x='15' y='24' width='30' height='52'/%3E%3Cline x1='21' y1='24' x2='21' y2='76'/%3E%3Cline x1='27' y1='24' x2='27' y2='76'/%3E%3Cline x1='33' y1='24' x2='33' y2='76'/%3E%3Cline x1='39' y1='24' x2='39' y2='76'/%3E%3Crect x='10' y='76' width='40' height='5'/%3E%3Crect x='8' y='81' width='44' height='4'/%3E%3Cpath d='M18 20 Q30 8 42 20'/%3E%3C/g%3E%3C/svg%3E");
}
@media (max-width: 700px) { .ihf2::after { display: none; } }

/* 59.4 Tiny gold lotus/diamond bullet for prem lists (optional accent) */
.ih-gold-dot::before {
  content: "\25C6";
  color: #D4AF37; font-size: 0.6rem;
  margin-right: 8px; vertical-align: middle;
}

/* ════════════════════════════════════════════════════════════
   60. AESTHETIC VIDEO INTEGRATION
   ════════════════════════════════════════════════════════════ */

/* 60.1 Hero video — richer cinematic overlay + gold vignette frame */
.hero3-vid-overlay {
  background:
    radial-gradient(ellipse at 50% 120%, rgba(212,175,55,0.14), transparent 60%),
    radial-gradient(ellipse at 18% 0%, rgba(212,175,55,0.16), transparent 55%),
    linear-gradient(150deg, rgba(15,23,42,0.90) 0%, rgba(109,31,31,0.80) 42%, rgba(42,14,14,0.94) 100%);
}
.hero3-hasvideo::before {
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 120px rgba(20,8,8,0.55), inset 0 0 0 1px rgba(212,175,55,0.18);
  border-radius: inherit;
}
/* subtle film-grain shimmer already present via .hero3-shimmer */

/* 60.2 Sound button — premium pill with label on hover */
.hero3-sound {
  display: inline-flex; align-items: center; gap: 0;
  width: 44px; overflow: hidden;
  transition: width 0.3s ease, background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero3-sound::after {
  content: "Sound";
  font-size: 0.72rem; font-weight: 700; white-space: nowrap;
  max-width: 0; opacity: 0; margin-left: 0;
  transition: max-width 0.3s ease, opacity 0.25s ease, margin-left 0.3s ease;
}
.hero3-sound:hover { width: 92px; }
.hero3-sound:hover::after { max-width: 60px; opacity: 1; margin-left: 6px; }
.hero3-sound.is-on::after { content: "On"; }

/* 60.3 About-page video — gold frame + play sheen */
.about-video {
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22), 0 0 0 1px rgba(212,175,55,0.3);
}
.about-video::before {
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.25);
}

/* 60.4 Video tiles — play button pulse + gold ring on hover */
.vid-thumb .vid-play {
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), background 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.vid-card:hover .vid-play {
  transform: scale(1.12);
  background: #D4AF37;
  color: #0F172A;
  box-shadow: 0 0 0 6px rgba(212,175,55,0.25), 0 8px 22px rgba(0,0,0,0.4);
}
.vid-card:hover .vid-thumb img { transform: scale(1.05); }
.vid-thumb { overflow: hidden; }
.vid-thumb img { transition: transform 0.5s cubic-bezier(.2,.7,.2,1); }

/* ════════════════════════════════════════════════════════════
   61. PREMIUM NAVIGATION BAR (#1)
   Soft cream/maroon sticky header with elegant elevation.
   ════════════════════════════════════════════════════════════ */
.site-header,
.site-header-row,
.site-main-header-wrap {
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF4 100%) !important;
}
/* Sticky header gets a refined shadow + faint gold underline */
.site-header-row-container,
header#masthead {
  box-shadow: 0 2px 18px rgba(15,23,42,0.07), 0 1px 0 rgba(212,175,55,0.25);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.kadence-sticky-header.item-is-fixed,
.site-header-row-container-inner.kadence-sticky-header.item-is-fixed {
  background: rgba(251,248,243,0.92) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(15,23,42,0.12), 0 1px 0 rgba(212,175,55,0.4);
}
/* Nav links — refined spacing + gold hover underline */
.header-navigation .menu-item > a,
.site-header .menu-item > a {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}
.header-navigation .menu-item > a::after,
.site-header .menu-item > a::after {
  content: "";
  position: absolute; left: 12px; right: 12px; bottom: 6px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #D4AF37, #0F172A);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s cubic-bezier(.2,.7,.2,1);
}
.header-navigation .menu-item > a:hover::after,
.header-navigation .current-menu-item > a::after,
.site-header .menu-item > a:hover::after {
  transform: scaleX(1);
}
.header-navigation .menu-item > a:hover,
.site-header .menu-item > a:hover { color: #0F172A; }

/* ════════════════════════════════════════════════════════════
   62. UNIFIED GOLDEN HOVER (#4, #5) — scale 1.03 + glow + border shine
   One consistent premium interaction for all cards/tiles/CTAs.
   ════════════════════════════════════════════════════════════ */
.mt3, .upsc-card, .testi3, .fs-card, .vid-card, .usl-col,
.ih-latest-posts li, .mc2-card, .price3-bundle {
  transition: transform 0.32s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.32s cubic-bezier(.2,.7,.2,1),
              border-color 0.32s ease;
}
.mt3:hover, .upsc-card:hover, .testi3:hover, .fs-card:hover,
.vid-card:hover, .usl-col:hover, .ih-latest-posts li:hover, .mc2-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(212,175,55,0.6) !important;
  box-shadow:
    0 18px 44px rgba(180,83,9,0.15),
    0 0 0 1px rgba(212,175,55,0.55),
    0 0 30px rgba(212,175,55,0.22);
}
/* UPSC cards specifically get the warm gold treatment */
.upsc-card:hover .upsc-ic {
  box-shadow: 0 8px 22px rgba(212,175,55,0.45);
  transform: scale(1.06);
}
.upsc-card .upsc-ic { transition: transform 0.3s ease, box-shadow 0.3s ease; }

/* Buttons share the lift + glow */
.hero3-btn-gold, .price3-buy, .mt3-buy, .upsc-btn, .cta3-btn,
.price3-bundle-btn, .ih-sticky-cta, .vid-subscribe {
  transition: transform 0.22s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s ease, filter 0.2s ease;
}
.hero3-btn-gold:hover, .price3-buy:hover, .mt3-buy:hover, .upsc-btn:hover,
.cta3-btn:hover, .price3-bundle-btn:hover, .ih-sticky-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}

/* ════════════════════════════════════════════════════════════
   63. PRICING BUNDLE STANDOUT (#6)
   Stronger bundle highlight + bigger "You Save".
   ════════════════════════════════════════════════════════════ */
/* Benefit headline above the table */
.price3-headline {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 26px;
}
.price3-headline h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: #0F172A;
  line-height: 1.3;
  margin: 0 0 8px;
}
.price3-headline h3 .pr-gold { color: #A67C00; }
.price3-headline p { color: #64748B; font-size: 0.98rem; margin: 0; }

/* Bundle box — richer background + glow so it dominates */
.price3-bundle {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(212,175,55,0.16), transparent 55%),
    linear-gradient(155deg, #FFFDF7 0%, #FFF4E2 100%);
  border: 2px solid rgba(212,175,55,0.55);
  box-shadow: 0 16px 48px rgba(176,131,46,0.18), inset 0 0 0 1px rgba(255,255,255,0.5);
}
/* Bigger, bolder You Save with coin icon */
.price3-bundle-save {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  padding: 9px 18px !important;
  background: linear-gradient(135deg, #1A7F4B, #15663C) !important;
  color: #fff !important;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(21,102,60,0.3);
  letter-spacing: 0.01em;
}
.price3-bundle-save::before { content: "\1F4B0"; font-size: 1.1rem; }
/* Bundle price emphasis */
.price3-bundle-price { text-shadow: 0 2px 10px rgba(176,131,46,0.25); }
/* The MOST POPULAR ribbon a touch richer */
.price3-bundle-ribbon {
  background: linear-gradient(135deg, #0F172A, #A67C00) !important;
  box-shadow: 0 6px 16px rgba(180,83,9,0.35);
  letter-spacing: 0.08em;
}

/* ════════════════════════════════════════════════════════════
   64. FOOTER SOCIAL BUTTONS — LARGE & COMPELLING (#8)
   ════════════════════════════════════════════════════════════ */
.ihf2-social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin-top: 4px;
}
.ihf2-sbtn {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff !important;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(.2,.7,.2,1), box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
/* gold shimmer sweep */
.ihf2-sbtn::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(212,175,55,0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.ihf2-sbtn:hover::after { left: 130%; }
.ihf2-sbtn:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(212,175,55,0.6);
  box-shadow: 0 10px 26px rgba(0,0,0,0.3), 0 0 22px rgba(212,175,55,0.22);
  color: #fff !important;
}
.ihf2-sbtn-ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ihf2-sbtn-ic svg { width: 20px; height: 20px; fill: #fff; }
.ihf2-sbtn-tx { line-height: 1.2; }
/* brand colours per platform */
.ihf2-sbtn-yt .ihf2-sbtn-ic { background: #FF0000; }
.ihf2-sbtn-tg .ihf2-sbtn-ic { background: #229ED9; }
.ihf2-sbtn-ig .ihf2-sbtn-ic { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.ihf2-sbtn-wa .ihf2-sbtn-ic { background: #25D366; }
.ihf2-sbtn-yt:hover { background: rgba(255,0,0,0.12); border-color: rgba(255,0,0,0.5); }
.ihf2-sbtn-tg:hover { background: rgba(34,158,217,0.12); border-color: rgba(34,158,217,0.5); }
.ihf2-sbtn-ig:hover { background: rgba(221,42,123,0.12); border-color: rgba(221,42,123,0.5); }
.ihf2-sbtn-wa:hover { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.5); }
@media (min-width: 900px) { .ihf2-social-grid { grid-template-columns: 1fr 1fr; } }

/* ════════════════════════════════════════════════════════════
   66. GLOBAL SPACING COMPRESSION (mobile-first, continuous flow)
   Forcibly reduces every section's vertical padding ~35-45% so
   blocks feel connected, not isolated. Overrides inline paddings.
   ════════════════════════════════════════════════════════════ */
.kb-row-layout-wrap[class*="kb-row-layout-id"] {
  padding-top: var(--sec-pad) !important;
  padding-bottom: var(--sec-pad) !important;
}
.kt-inside-inner-col { padding-top: 0 !important; padding-bottom: 0 !important; }
/* tighten common heading/section-intro margins */
.prem-head { margin-bottom: 22px !important; }
.prem-head .prem-h2, .sec-h2 { margin-bottom: 8px !important; }
.entry-content > * { margin-top: 0; margin-bottom: 0; }

@media (max-width: 600px) {
  .kb-row-layout-wrap[class*="kb-row-layout-id"] {
    padding-top: var(--sec-pad-m) !important;
    padding-bottom: var(--sec-pad-m) !important;
  }
  .prem-head { margin-bottom: 16px !important; }
}

/* ════════════════════════════════════════════════════════════
   67. INNER PAGES — remove big hero, use compact title + breadcrumb
   Hide Kadence's default page-title hero everywhere (homepage has
   its own hero; inner pages use the .ihead compact bar below).
   ════════════════════════════════════════════════════════════ */
.entry-hero, .entry-hero-container-inner, header.entry-header.page-title,
.kadence-breadcrumbs.entry-hero, .home .page-title {
  display: none !important;
}
.content-area, .content-container, .site-content, .site-main, .entry-content {
  padding-top: 0 !important; margin-top: 0 !important;
}
.entry-content > .alignfull:first-child { margin-top: 0 !important; }

/* Compact inner-page head (title + breadcrumb) */
.ihead {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: #fff;
  padding: 22px 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ihead::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background: radial-gradient(ellipse at 20% 0%, rgba(212,175,55,0.18), transparent 60%);
}
.ihead-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; }
.ihead h1 {
  color: #fff !important; font-size: clamp(1.4rem, 4.5vw, 2rem);
  margin: 0 0 6px; font-weight: 800; line-height: 1.2;
}
.ihead p { color: rgba(255,255,255,0.82); font-size: 0.92rem; margin: 0; line-height: 1.5; }
.ihead-crumb {
  display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  font-size: 0.74rem; color: rgba(255,255,255,0.7); margin-top: 8px;
}
.ihead-crumb a { color: #E9D9B8; text-decoration: none; }
.ihead-crumb a:hover { color: #fff; }
.ihead-crumb span { opacity: 0.6; }
@media (max-width: 600px) { .ihead { padding: 18px 16px 16px; } }

/* ════════════════════════════════════════════════════════════
   68. TWO-PANE PDF VIEWER (free samples + module pages)
   ════════════════════════════════════════════════════════════ */
.spv { display: grid; grid-template-columns: 280px 1fr; gap: 18px; max-width: 1080px; margin: 0 auto; align-items: start; }
.spv-list { background: #fff; border: 1px solid rgba(212,175,55,0.25); border-radius: 14px; padding: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); position: sticky; top: 84px; }
.spv-list-head { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 700; color: #0F172A; margin: 4px 4px 10px; }
.spv-item { display: flex; align-items: center; gap: 11px; width: 100%; text-align: left; background: transparent; border: 1px solid transparent; border-radius: 10px; padding: 11px; margin-bottom: 5px; cursor: pointer; font-family: 'Inter',sans-serif; font-size: 0.9rem; font-weight: 600; color: #0F172A; transition: background .18s, border-color .18s, transform .18s; }
.spv-item:hover { background: #FCFAF4; border-color: rgba(212,175,55,0.4); transform: translateX(2px); }
.spv-item.is-active { background: linear-gradient(135deg,#0F172A,#1E293B); color: #fff; border-color: #0F172A; }
.spv-item.is-active .spv-item-ic { background: rgba(255,255,255,0.18); color: #E6C257; }
.spv-item.is-active .spv-item-sub { color: rgba(255,255,255,0.7); }
.spv-item-ic { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; background: rgba(212,175,55,0.16); color: #0F172A; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.spv-item-tx { display: flex; flex-direction: column; line-height: 1.2; }
.spv-item-sub { font-size: 0.72rem; font-weight: 500; color: #94A3B8; margin-top: 2px; }
.spv-stage { background: #fff; border: 1px solid rgba(212,175,55,0.25); border-radius: 14px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.08); display: flex; flex-direction: column; min-height: 520px; }
.spv-stage-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 16px; background: #F8F4ED; border-bottom: 1px solid rgba(212,175,55,0.25); }
.spv-stage-title { font-weight: 700; color: #0F172A; font-size: 0.92rem; }
.spv-open { font-size: 0.8rem; font-weight: 700; text-decoration: none; color: #0F172A; border: 1px solid rgba(180,83,9,0.3); padding: 6px 13px; border-radius: 100px; white-space: nowrap; transition: background .18s, color .18s; }
.spv-open:hover { background: #0F172A; color: #fff; }
.spv-frame-wrap { position: relative; flex: 1; background: #525659; min-height: 480px; }
.spv-frame { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }
.spv-empty { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; color: #E2E8F0; padding: 24px; }
.spv-empty-ic { font-size: 2.2rem; opacity: 0.6; }
@media (max-width: 840px) {
  .spv { grid-template-columns: 1fr; gap: 12px; }
  .spv-list { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
  .spv-list-head { width: 100%; }
  .spv-item { width: auto; flex: 1 1 calc(50% - 8px); margin-bottom: 0; }
  .spv-stage { min-height: 460px; }
  .spv-frame-wrap, .spv-frame { min-height: 420px; }
}
@media (max-width: 480px) { .spv-item { flex: 1 1 100%; } }

/* ════════════════════════════════════════════════════════════
   69. TRUST SIGNALS — payment badges + verified-student tags
   ════════════════════════════════════════════════════════════ */
.trust-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; margin: 16px auto 0; max-width: 560px; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; font-weight: 600; color: #64748B; background: #fff; border: 1px solid var(--clr-border); border-radius: 100px; padding: 6px 13px; }
.trust-badge svg { width: 15px; height: 15px; }
.trust-badge-secure { color: #166534; border-color: rgba(21,128,61,0.3); }
.trust-note { text-align: center; font-size: 0.78rem; color: #94A3B8; margin-top: 10px; }
.verified-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 0.68rem; font-weight: 700; color: #166534; background: rgba(21,128,61,0.08); border: 1px solid rgba(21,128,61,0.25); border-radius: 100px; padding: 2px 8px; vertical-align: middle; }
.verified-tag::before { content: "\2713"; font-size: 0.7rem; }

/* ════════════════════════════════════════════════════════════
   70. SITE-WIDE FOOTER (.ihf) — social + columns + Legal
   ════════════════════════════════════════════════════════════ */
.site-footer, footer#colophon, .site-footer-row-container, .site-footer-wrap { display: none !important; }
.ihf { position: relative; background: linear-gradient(180deg,#0F172A,#0B1220); color: rgba(255,255,255,0.62); }
.ihf::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, #D4AF37, transparent); }
.ihf-inner { max-width: 1100px; margin: 0 auto; padding: 42px 20px 24px; position: relative; }
.ihf-head { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ihf-brand { flex: 1 1 340px; max-width: 540px; }
.ihf-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: 0.02em; }
.ihf-logo span { color: #D4AF37; }
.ihf-orn { display: flex; align-items: center; gap: 10px; margin: 6px 0 10px; color: #D4AF37; font-size: 0.85rem; }
.ihf-orn::after { content: ""; width: 72px; height: 1px; background: linear-gradient(90deg, rgba(212,175,55,0.7), transparent); }
.ihf-tag { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 480px; margin: 0; line-height: 1.6; }
.ihf-social { flex: 0 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ihf-s { display: flex; align-items: center; gap: 11px; padding: 7px 20px 7px 7px; border: 1px solid rgba(212,175,55,0.35); border-radius: 100px; background: rgba(255,255,255,0.04); text-decoration: none; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.ihf-s-ic { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ihf-s-ic svg { width: 18px; height: 18px; fill: #fff; }
.ihf-s-label { color: rgba(255,255,255,0.88); font-weight: 700; font-size: 0.86rem; white-space: nowrap; }
.ihf-s-yt .ihf-s-ic { background: #FF0000; } .ihf-s-wa .ihf-s-ic { background: #25D366; }
.ihf-s-tg .ihf-s-ic { background: #229ED9; } .ihf-s-ig .ihf-s-ic { background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF); }
.ihf-s:hover { transform: translateY(-2px); border-color: #D4AF37; background: rgba(212,175,55,0.12); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.ihf-s:hover .ihf-s-label { color: #fff; }
.ihf-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 26px 0; }
.ihf-col h4 { color: #fff; font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; margin: 0 0 12px; }
.ihf-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.86rem; padding: 5px 0; transition: color .18s, padding-left .18s; }
.ihf-col a:hover { color: #D4AF37; padding-left: 4px; }
.ihf-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.ihf-pay { color: rgba(255,255,255,0.55); }
.ihf-mail { color: #D4AF37; text-decoration: none; }
@media (max-width: 760px) {
  .ihf-head { flex-direction: column; align-items: center; text-align: center; }
  .ihf-brand { max-width: 540px; }
  .ihf-orn { justify-content: center; }
  .ihf-orn::after { display: none; }
  .ihf-tag { margin: 0 auto; }
  .ihf-social { width: 100%; max-width: 460px; }
  .ihf-cols { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .ihf-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 460px) { .ihf-social { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .ihf-cols { grid-template-columns: 1fr; text-align: center; } }

/* ════════════════════════════════════════════════════════════
   71. GLOBAL INTERACTIVITY — hover, click, gold-swipe, glow
   Applies on EVERY page. Buttons get a gold sheen swipe + lift +
   press state; tiles/cards get a glowing golden border on hover.
   ════════════════════════════════════════════════════════════ */
.ih-btn, .ih-btn-ghost, a.kt-button, .wp-block-button__link,
.price3-buy, .mc2-buy, .price3-bundle-btn, .spv-open,
.ihm-buy, .ihm-cart, .ihead-crumb a {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
  -webkit-tap-highlight-color: transparent;
}
/* gold sheen swipe */
.ih-btn::after, .ih-btn-ghost::after, a.kt-button::after, .wp-block-button__link::after,
.price3-buy::after, .mc2-buy::after, .price3-bundle-btn::after, .ihm-buy::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: translateX(-130%); transition: transform .55s ease; pointer-events: none;
}
.ih-btn:hover::after, .ih-btn-ghost:hover::after, a.kt-button:hover::after, .wp-block-button__link:hover::after,
.price3-buy:hover::after, .mc2-buy:hover::after, .price3-bundle-btn:hover::after, .ihm-buy:hover::after {
  transform: translateX(130%);
}
.ih-btn:hover, a.kt-button:hover, .wp-block-button__link:hover,
.price3-buy:hover, .mc2-buy:hover, .price3-bundle-btn:hover, .ihm-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212,175,55,0.5);
}
.ih-btn:active, a.kt-button:active, .wp-block-button__link:active,
.price3-buy:active, .mc2-buy:active, .price3-bundle-btn:active,
.ihm-buy:active, .ihm-cart:active { transform: translateY(0) scale(0.97); }
.ihm-cart:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(180,83,9,0.22); }

/* Tiles / cards — glowing golden border + lift on hover */
.ih-tile, .ihm-card, .ih-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}
.ih-tile:hover, .ihm-card:hover, .ih-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-gold) !important;
  box-shadow: 0 0 0 1.5px var(--clr-gold), 0 16px 34px rgba(212,175,55,0.34), 0 0 22px rgba(212,175,55,0.28);
}
/* link rows (e.g. homepage module list, footer) subtle slide */
.ihm-row { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ihm-row:hover { transform: translateX(3px); border-color: var(--clr-gold) !important; box-shadow: 0 6px 18px rgba(212,175,55,0.25); }

@media (prefers-reduced-motion: reduce) {
  .ih-btn::after, a.kt-button::after, .wp-block-button__link::after, .price3-buy::after, .mc2-buy::after, .price3-bundle-btn::after, .ihm-buy::after { display: none; }
  .ih-tile, .ihm-card, .ih-card, .ih-btn, .ihm-row { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   72. SITE-WIDE HISTORICAL WATERMARK (very subtle, non-distracting)
   Faint repeating manuscript/chakra motif behind all content.
   ════════════════════════════════════════════════════════════ */
body {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%238B2A2A' stroke-width='1.1' opacity='0.05'%3E%3Ccircle cx='150' cy='150' r='66'/%3E%3Ccircle cx='150' cy='150' r='18'/%3E%3Cg stroke-width='0.9'%3E%3Cline x1='150' y1='84' x2='150' y2='216'/%3E%3Cline x1='84' y1='150' x2='216' y2='150'/%3E%3Cline x1='103' y1='103' x2='197' y2='197'/%3E%3Cline x1='197' y1='103' x2='103' y2='197'/%3E%3Cline x1='121' y1='90' x2='179' y2='210'/%3E%3Cline x1='210' y1='121' x2='90' y2='179'/%3E%3Cline x1='179' y1='90' x2='121' y2='210'/%3E%3Cline x1='90' y1='121' x2='210' y2='179'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  background-attachment: fixed;
  background-position: center;
}

/* ════════════════════════════════════════════════════════════
   73. ANIMATED ARTEFACT + GOLD SWEEP (hero, bundle, final CTA)
   Pure CSS — a slow-rotating faint chakra + periodic gold sweep.
   Add class ih-relic to a dark section; it layers behind content.
   ════════════════════════════════════════════════════════════ */
.ih-relic { position: relative; overflow: hidden; }
.ih-relic > * { position: relative; z-index: 2; }
.ih-relic::before {  /* faint rotating chakra artefact */
  content: ""; position: absolute; z-index: 0; right: -90px; top: 50%;
  width: 340px; height: 340px; transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='340' viewBox='0 0 340 340'%3E%3Cg fill='none' stroke='%23C9A66B' stroke-width='2' opacity='0.5'%3E%3Ccircle cx='170' cy='170' r='150'/%3E%3Ccircle cx='170' cy='170' r='128'/%3E%3Ccircle cx='170' cy='170' r='34'/%3E%3Cg%3E%3Cline x1='170' y1='20' x2='170' y2='320'/%3E%3Cline x1='20' y1='170' x2='320' y2='170'/%3E%3Cline x1='64' y1='64' x2='276' y2='276'/%3E%3Cline x1='276' y1='64' x2='64' y2='276'/%3E%3Cline x1='108' y1='30' x2='232' y2='310'/%3E%3Cline x1='310' y1='108' x2='30' y2='232'/%3E%3Cline x1='232' y1='30' x2='108' y2='310'/%3E%3Cline x1='30' y1='108' x2='310' y2='232'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.10; animation: ihSpin 90s linear infinite; pointer-events: none;
}
.ih-relic::after {  /* slow gold sweep */
  content: ""; position: absolute; z-index: 1; top: 0; left: -60%;
  width: 55%; height: 100%; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(212,175,55,0.12), transparent);
  animation: ihSweep 7s ease-in-out infinite;
}
@keyframes ihSpin { to { transform: translateY(-50%) rotate(360deg); } }
@keyframes ihSweep { 0% { left: -60%; } 55% { left: 120%; } 100% { left: 120%; } }
@media (prefers-reduced-motion: reduce) {
  .ih-relic::before { animation: none; } .ih-relic::after { display: none; }
}

/* ════════════════════════════════════════════════════════════
   74. MOBILE GRID FIXES — Why & Testimonials stack cleanly
   ════════════════════════════════════════════════════════════ */
.ih-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ih-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: left; }
@media (max-width: 820px) {
  .ih-why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ih-testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ih-why-grid { grid-template-columns: 1fr; gap: 10px; }
  .ih-testi-grid { grid-template-columns: 1fr; gap: 12px; }
  .ih-why-grid > div, .ih-testi-grid > div { text-align: left; }
}

/* ════════════════════════════════════════════════════════════
   75. MODULE PRICING CARDS (homepage) — MRP, price, save, Buy + Cart
   ════════════════════════════════════════════════════════════ */
.ihm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ihm-card {
  background: #fff; border: 1px solid rgba(212,175,55,0.28); border-radius: 14px;
  padding: 18px 16px 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; border-top: 4px solid var(--accent, #0F172A);
}
.ihm-name { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: #0F172A; font-size: 1.02rem; margin: 0 0 2px; }
.ihm-meta { font-size: 0.78rem; color: #64748B; margin-bottom: 12px; }
.ihm-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.ihm-mrp { color: #94A3B8; text-decoration: line-through; font-size: 0.9rem; }
.ihm-now { color: #0F172A; font-weight: 800; font-size: 1.5rem; font-family: 'Playfair Display', Georgia, serif; }
.ihm-save { display: inline-block; background: #DCFCE7; color: #166534; font-weight: 700; font-size: 0.72rem; padding: 2px 9px; border-radius: 100px; margin-bottom: 14px; align-self: flex-start; }
.ihm-btns { margin-top: auto; display: flex; gap: 8px; }
.ihm-buy { flex: 1; text-align: center; background: linear-gradient(135deg,#E6C257,#D4AF37); color: #422006 !important; padding: 11px; border-radius: 9px; font-weight: 800; text-decoration: none; font-size: 0.9rem; }
.ihm-cart { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; gap: 5px; background: #fff; color: #0F172A !important; border: 1.5px solid rgba(180,83,9,0.35); padding: 11px 13px; border-radius: 9px; font-weight: 700; text-decoration: none; font-size: 0.9rem; }
.ihm-cart:hover { background: #0F172A; color: #fff !important; border-color: #0F172A; }
@media (max-width: 820px) { .ihm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ihm-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   76. SCHOLARLY HERITAGE — CTA buttons (terracotta), links (emerald)
   Buttons made terracotta (overrides any inline gold), white text.
   Gold is reserved for savings/stars/badges only.
   ════════════════════════════════════════════════════════════ */
.ih-btn, .ihm-buy, .cta3-btn, .price3-buy, .price3-bundle-btn, .mc2-buy {
  background: linear-gradient(135deg, #C2410C, #B45309) !important;
  color: #FFF7ED !important;
  border: none !important;
}
.ih-btn:hover, .ihm-buy:hover, .cta3-btn:hover, .price3-buy:hover, .price3-bundle-btn:hover, .mc2-buy:hover {
  background: linear-gradient(135deg, #9A3412, #B45309) !important;
  box-shadow: 0 12px 28px rgba(180,83,9,0.42) !important;
}
.ihm-cart { color: #B45309 !important; border-color: rgba(180,83,9,0.4) !important; }
.ihm-cart:hover { background: #B45309 !important; color: #fff !important; border-color: #B45309 !important; }
/* content links -> emerald */
.entry-content a:not(.ih-btn):not(.ihm-buy):not(.ihm-cart):not([class*="btn"]) { color: var(--clr-emerald); text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover:not(.ih-btn):not(.ihm-buy):not(.ihm-cart) { color: #14532D; }

/* ════════════════════════════════════════════════════════════
   77. PARCHMENT TEXTURE (very light) — replaces the chakra wash
   Subtle warm grain for a manuscript feel; optimized inline SVG.
   ════════════════════════════════════════════════════════════ */
body {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E"),
    radial-gradient(circle at 18% 12%, rgba(180,83,9,0.04), transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(212,175,55,0.05), transparent 42%);
  background-attachment: fixed, fixed, fixed;
  background-size: 160px 160px, cover, cover;
}

/* ════════════════════════════════════════════════════════════
   78. STICKY PREMIUM HEADER (nav was not sticky)
   ════════════════════════════════════════════════════════════ */
#masthead, .site-header {
  position: -webkit-sticky; position: sticky; top: 0; z-index: 999;
  background: rgba(248,244,237,0.97);
  -webkit-backdrop-filter: saturate(1.1) blur(8px); backdrop-filter: saturate(1.1) blur(8px);
  box-shadow: 0 2px 14px rgba(15,23,42,0.07);
  border-bottom: 1px solid rgba(180,83,9,0.12);
}
.site-header .menu-container .menu-item > a, #masthead nav a {
  position: relative; font-family: 'Inter', sans-serif; font-weight: 600; color: var(--clr-ink);
}
.site-header .menu-item > a::after, #masthead nav .menu-item > a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px;
  background: var(--clr-terracotta); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.site-header .menu-item:hover > a::after, #masthead nav .menu-item:hover > a::after { transform: scaleX(1); }
.site-header .menu-item > a:hover, #masthead nav a:hover { color: var(--clr-terracotta); }

/* ════════════════════════════════════════════════════════════
   79. BLOG FIX — stop posts being cropped (mobile + desktop)
   ════════════════════════════════════════════════════════════ */
html, body { overflow-x: hidden; max-width: 100%; }
.single .entry-content, .single-post .entry-content,
.blog .content-area, .archive .content-area, .single .content-area {
  max-width: 760px; margin-left: auto; margin-right: auto;
  padding-left: 18px; padding-right: 18px; box-sizing: border-box;
}
.blog .site-main, .archive .site-main, .single .site-main { overflow-x: hidden; }
.entry-content img, .entry-content figure, .wp-block-image img, .wp-block-latest-posts img { max-width: 100%; height: auto; }
.entry-content > *, .wp-block-latest-posts { max-width: 100%; box-sizing: border-box; }
.wp-block-latest-posts.is-grid { margin-left: 0; padding-left: 0; gap: 16px; }
@media (max-width: 600px) {
  .single .entry-content, .single-post .entry-content,
  .blog .content-area, .archive .content-area { padding-left: 16px; padding-right: 16px; }
  .wp-block-latest-posts.is-grid { grid-template-columns: 1fr !important; }
}

/* ════════════════════════════════════════════════════════════
   80. PRICING PROGRESS BARS (savings visual)
   ════════════════════════════════════════════════════════════ */
.ihm-bar-label { font-size: 0.72rem; color: var(--clr-emerald); font-weight: 700; margin: 2px 0 5px; display: flex; justify-content: space-between; }
.ihm-bar { height: 7px; background: #EDE7DA; border-radius: 100px; overflow: hidden; margin: 0 0 14px; }
.ihm-bar > span { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--clr-gold), var(--clr-terracotta)); }

/* ════════════════════════════════════════════════════════════
   81. LANGUAGE TOGGLE — premium pill, sits at start of notes info
   ════════════════════════════════════════════════════════════ */
.ih-lang-toggle {
  display: inline-flex; align-items: center; gap: 3px;
  background: #fff; border: 1px solid rgba(180,83,9,0.3); border-radius: 100px;
  padding: 3px; box-shadow: 0 2px 8px rgba(15,23,42,0.06);
}
.ih-lang-toggle .ih-lang-opt {
  border: 0; background: transparent; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--clr-muted);
  padding: 6px 16px; border-radius: 100px; transition: all .2s ease;
}
.ih-lang-toggle .ih-lang-opt.is-active { background: linear-gradient(135deg,#C2410C,#B45309); color: #fff; box-shadow: 0 2px 8px rgba(180,83,9,0.35); }
.ih-lang-note { font-size: 0.78rem; color: var(--clr-muted); margin-right: 8px; font-weight: 600; }
.ih-lang-bar { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }

/* ════════════════════════════════════════════════════════════
   82. NAV CONTRAST FIX — force solid parchment header + ink text
   (overrides Kadence transparent/dark header so menu is readable)
   ════════════════════════════════════════════════════════════ */
#masthead, .site-header, .site-header-wrap, .site-main-header-wrap,
.site-header-inner-wrap, .site-header-row-container, .site-header-row-container-inner,
.site-top-header-wrap, .site-main-header-wrap-inner,
body.transparent-header #masthead, body.transparent-header .site-header-wrap,
body.transparent-header .site-main-header-wrap {
  background-color: #F8F4ED !important;
  background-image: none !important;
}
#masthead {
  position: -webkit-sticky !important; position: sticky !important; top: 0; z-index: 9999;
  box-shadow: 0 2px 16px rgba(15,23,42,0.09);
  border-bottom: 1px solid rgba(180,83,9,0.16);
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
#masthead a, .site-header a, .header-navigation .menu-item > a,
.site-title a, .site-branding a, #masthead .menu-link, .header-navigation a {
  color: #0F172A !important;
}
#masthead a:hover, .header-navigation .menu-item:hover > a,
.header-navigation .menu-item > a:hover, #masthead .menu-item.current-menu-item > a {
  color: #B45309 !important;
}
/* mobile hamburger lines + close icon */
.menu-toggle, .menu-toggle-open, .kadence-menu-mobile-toggle, .mobile-toggle-open-container .menu-toggle {
  color: #0F172A !important;
}
.menu-toggle .menu-toggle-icon::before, .menu-toggle .menu-toggle-icon::after,
.menu-toggle .menu-toggle-icon, .kadence-menu-mobile-toggle .menu-toggle-icon { background-color: #0F172A !important; }
/* dropdown submenus */
.header-navigation .sub-menu, .header-menu-container ul.sub-menu {
  background: #ffffff !important; border: 1px solid #E2E8F0 !important; box-shadow: 0 12px 28px rgba(15,23,42,0.12) !important;
}
.header-navigation .sub-menu a { color: #0F172A !important; }
.header-navigation .sub-menu a:hover { color: #B45309 !important; background: #FCFAF4 !important; }

/* ════════════════════════════════════════════════════════════
   83. FOOTER SOCIAL RIBBONS — bold, branded, click-worthy
   ════════════════════════════════════════════════════════════ */
.ihf-social { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ihf-rib {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 15px; border-radius: 13px; text-decoration: none;
  color: #fff !important; border: 1px solid rgba(255,255,255,0.16);
  transition: transform .22s ease, box-shadow .22s ease;
}
.ihf-rib .ihf-ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.18) !important; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ihf-rib .ihf-ic svg { width: 21px; height: 21px; fill: #fff; }
.ihf-rib-tx { display: flex; flex-direction: column; line-height: 1.15; }
.ihf-rib-tx strong { font-size: 0.92rem; font-weight: 800; color: #fff; }
.ihf-rib-tx small { font-size: 0.72rem; color: rgba(255,255,255,0.82); font-weight: 600; }
.ihf-rib .ihf-cta { margin-left: auto; font-size: 1.1rem; font-weight: 800; opacity: 0.9; transition: transform .22s ease; }
.ihf-rib:hover .ihf-cta { transform: translateX(4px); }
.ihf-yt { background: linear-gradient(135deg,#FF1A1A,#C4302B) !important; }
.ihf-wa { background: linear-gradient(135deg,#25D366,#0E8C6A) !important; }
.ihf-tg { background: linear-gradient(135deg,#2AABEE,#1E88C7) !important; }
.ihf-ig { background: linear-gradient(135deg,#F58529,#DD2A7B 55%,#8134AF) !important; }
.ihf-rib:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.42); }
.ihf-rib::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent); transform: translateX(-130%); transition: transform .6s ease; pointer-events: none; }
.ihf-rib:hover::after { transform: translateX(130%); }
@media (max-width: 420px) { .ihf-social { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   84. HOMEPAGE BLOG — card grid (no crop) + subtle gridline pattern
   Scoped to the homepage blog column (66_g02).
   ════════════════════════════════════════════════════════════ */
.kb-row-layout-id66_g01 {
  background-color: #FCFAF4 !important;
  background-image:
    linear-gradient(rgba(180,83,9,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,83,9,0.045) 1px, transparent 1px) !important;
  background-size: 30px 30px, 30px 30px !important;
}
.kb-column-id66_g02 { overflow: visible; }
.kb-column-id66_g02 .wp-block-latest-posts,
.kb-column-id66_g02 ul.wp-block-latest-posts__list {
  display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 18px;
  list-style: none !important; margin: 0 auto !important; padding: 0 !important;
  max-width: 1000px; width: 100%; box-sizing: border-box;
}
.kb-column-id66_g02 .wp-block-latest-posts > li {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 14px; overflow: hidden;
  margin: 0 !important; box-shadow: 0 4px 14px rgba(15,23,42,0.06);
  display: flex; flex-direction: column; text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.kb-column-id66_g02 .wp-block-latest-posts > li:hover {
  transform: translateY(-4px); border-color: var(--clr-gold);
  box-shadow: 0 0 0 1.5px var(--clr-gold), 0 16px 32px rgba(212,175,55,0.26);
}
.kb-column-id66_g02 .wp-block-latest-posts__featured-image { margin: 0; line-height: 0; }
.kb-column-id66_g02 .wp-block-latest-posts__featured-image img { width: 100%; height: 168px; object-fit: cover; display: block; }
.kb-column-id66_g02 .wp-block-latest-posts__post-title { display: block; padding: 14px 16px 0; font-family: 'Playfair Display', Georgia, serif; font-size: 1.06rem; font-weight: 700; color: #0F172A !important; text-decoration: none; line-height: 1.3; }
.kb-column-id66_g02 .wp-block-latest-posts__post-title:hover { color: #B45309 !important; }
.kb-column-id66_g02 .wp-block-latest-posts__post-date { display: block; padding: 7px 16px 0; font-size: 0.74rem; color: #94A3B8; }
.kb-column-id66_g02 .wp-block-latest-posts__post-excerpt { padding: 8px 16px 16px; margin: 0; font-size: 0.85rem; color: #475569; line-height: 1.55; }
.kb-column-id66_g02 .wp-block-latest-posts:not(.has-featured-image) > li { padding: 4px 0; }
@media (max-width: 820px) { .kb-column-id66_g02 .wp-block-latest-posts, .kb-column-id66_g02 ul.wp-block-latest-posts__list { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 560px) { .kb-column-id66_g02 .wp-block-latest-posts, .kb-column-id66_g02 ul.wp-block-latest-posts__list { grid-template-columns: 1fr !important; } }

/* ════════════════════════════════════════════════════════════
   85. FOOTER RIBBONS v2 — premium, high-contrast, click-worthy
   (overrides §83; brand glow on hover, circular arrow badge)
   ════════════════════════════════════════════════════════════ */
.ihf-social { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.ihf-rib {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 13px;
  padding: 15px 16px; border-radius: 14px; text-decoration: none;
  color: #fff !important; border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 6px 16px rgba(0,0,0,0.25);
  transition: transform .24s cubic-bezier(.2,.7,.3,1), box-shadow .24s ease;
}
.ihf-rib .ihf-ic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,0.20) !important;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.ihf-rib .ihf-ic svg { width: 23px; height: 23px; fill: #fff; }
.ihf-rib-tx { display: flex; flex-direction: column; line-height: 1.18; }
.ihf-rib-tx strong { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: 0.01em; }
.ihf-rib-tx small { font-size: 0.73rem; color: rgba(255,255,255,0.88); font-weight: 600; }
.ihf-rib .ihf-cta {
  margin-left: auto; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.20); color: #fff; font-size: 0.95rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3); transition: transform .24s ease, background .24s ease;
}
.ihf-rib:hover .ihf-cta { transform: translateX(3px) scale(1.08); background: rgba(255,255,255,0.32); }
.ihf-yt { background: linear-gradient(135deg,#FF2D2D,#C4302B) !important; }
.ihf-wa { background: linear-gradient(135deg,#2BE36B,#0E8C6A) !important; }
.ihf-tg { background: linear-gradient(135deg,#34B4F0,#1E88C7) !important; }
.ihf-ig { background: linear-gradient(135deg,#F9A03F,#DD2A7B 52%,#7B2FF7) !important; }
.ihf-yt:hover { box-shadow: 0 16px 34px rgba(255,45,45,0.45), inset 0 1px 0 rgba(255,255,255,0.25); }
.ihf-wa:hover { box-shadow: 0 16px 34px rgba(18,140,110,0.5), inset 0 1px 0 rgba(255,255,255,0.25); }
.ihf-tg:hover { box-shadow: 0 16px 34px rgba(34,158,217,0.5), inset 0 1px 0 rgba(255,255,255,0.25); }
.ihf-ig:hover { box-shadow: 0 16px 34px rgba(221,42,123,0.5), inset 0 1px 0 rgba(255,255,255,0.25); }
.ihf-rib:hover { transform: translateY(-4px); }
.ihf-rib::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg,transparent,rgba(255,255,255,0.42),transparent); transform: translateX(-130%); transition: transform .6s ease; pointer-events: none; }
.ihf-rib:hover::after { transform: translateX(130%); }
@media (max-width: 440px) { .ihf-social { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   86. REUSABLE RESOURCE LIST (Free Resources pages)
   Add/remove a resource = copy ONE <a class="ih-res-item"> line in
   the block editor. All styling lives here, never per-item.
   ════════════════════════════════════════════════════════════ */
.ih-reslist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 880px; margin: 0 auto; }
.ih-reslist.is-single { grid-template-columns: 1fr; max-width: 680px; }
.ih-res-item {
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid #E2E8F0; border-left: 4px solid var(--clr-terracotta);
  border-radius: 12px; padding: 14px 16px; text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ih-res-item:hover { transform: translateY(-3px); border-color: var(--clr-gold); box-shadow: 0 0 0 1.5px var(--clr-gold), 0 12px 26px rgba(212,175,55,0.24); }
.ih-res-ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(180,83,9,0.10); color: var(--clr-terracotta); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.ih-res-tx { flex: 1; min-width: 0; }
.ih-res-tx strong { display: block; color: var(--clr-ink); font-size: 0.96rem; line-height: 1.3; font-family: 'Inter', sans-serif; font-weight: 700; }
.ih-res-tx small { display: block; color: var(--clr-muted); font-size: 0.8rem; margin-top: 2px; }
.ih-res-dl { font-size: 0.82rem; font-weight: 800; color: var(--clr-terracotta); white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; }
.ih-res-item:hover .ih-res-dl { color: var(--clr-terracotta-dk); }
@media (max-width: 600px) { .ih-reslist { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   82. SPLIT HERO (left text + CTA, right founder/manuscript image)
   ════════════════════════════════════════════════════════════ */
.ih-hero { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 34px; align-items: stretch; max-width: 1080px; margin: 0 auto; padding: 4px; }
.ih-hero > * { position: relative; z-index: 1; }
.ih-hero-text { display: flex; flex-direction: column; justify-content: center; }
/* slow, faded Ashoka chakra behind the hero */
.ih-hero::before {
  content: ""; position: absolute; z-index: 0; right: 24%; top: 50%; width: 460px; height: 460px;
  transform: translateY(-50%); pointer-events: none; opacity: 0.06;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='460' height='460' viewBox='0 0 460 460'%3E%3Cg fill='none' stroke='%230F172A' stroke-width='2.4' opacity='0.9'%3E%3Ccircle cx='230' cy='230' r='205'/%3E%3Ccircle cx='230' cy='230' r='176'/%3E%3Ccircle cx='230' cy='230' r='46'/%3E%3Cg%3E%3Cline x1='230' y1='25' x2='230' y2='435'/%3E%3Cline x1='25' y1='230' x2='435' y2='230'/%3E%3Cline x1='85' y1='85' x2='375' y2='375'/%3E%3Cline x1='375' y1='85' x2='85' y2='375'/%3E%3Cline x1='147' y1='35' x2='313' y2='425'/%3E%3Cline x1='425' y1='147' x2='35' y2='313'/%3E%3Cline x1='313' y1='35' x2='147' y2='425'/%3E%3Cline x1='35' y1='147' x2='425' y2='313'/%3E%3Cline x1='110' y1='52' x2='350' y2='408'/%3E%3Cline x1='408' y1='110' x2='52' y2='350'/%3E%3Cline x1='350' y1='52' x2='110' y2='408'/%3E%3Cline x1='52' y1='110' x2='408' y2='350'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: ihSpin 120s linear infinite;
}
.ih-hero-eyebrow { display: inline-block; align-self: flex-start; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #B45309; border: 1px solid rgba(180,83,9,0.4); border-radius: 100px; padding: 6px 14px; margin-bottom: 16px; }
.ih-hero-h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.14; margin: 0 0 14px; color: #0F172A; font-weight: 800; }
.ih-hero-sub { color: #475569; font-size: 1.05rem; line-height: 1.65; margin: 0 0 22px; max-width: 520px; }
.ih-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.ih-hero-cta .ih-btn, .ih-hero-cta .ih-btn-ghost { padding: 14px 26px; border-radius: 10px; font-weight: 800; text-decoration: none; font-size: 1rem; display: inline-block; }
.ih-btn-ghost { background: transparent; color: #166534 !important; border: 1.5px solid rgba(22,101,52,0.45); transition: background .2s, color .2s; }
.ih-btn-ghost:hover { background: #166534; color: #fff !important; }
.ih-hero-trust { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 0.82rem; color: #64748B; }
.ih-hero-media { position: relative; display: flex; }
.ih-hero-frame { position: relative; flex: 1; width: 100%; min-height: 300px; border-radius: 18px; background-color: #0F172A; background-image: linear-gradient(135deg,#0F172A,#1E293B); background-size: cover; background-position: center; box-shadow: 0 20px 50px rgba(15,23,42,0.25); border: 1px solid rgba(212,175,55,0.45); overflow: hidden; }
.ih-hero-frame::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(212,175,55,0.4); border-radius: 12px; pointer-events: none; }
.ih-hero-cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-size: 0.8rem; font-weight: 700; background: rgba(15,23,42,0.55); padding: 5px 12px; border-radius: 100px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
@media (max-width: 820px) {
  .ih-hero { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .ih-hero-text { justify-content: flex-start; }
  .ih-hero-eyebrow { align-self: center; }
  .ih-hero-sub { margin-left: auto; margin-right: auto; }
  .ih-hero-cta, .ih-hero-trust { justify-content: center; }
  .ih-hero-frame { max-width: 320px; margin: 0 auto; min-height: 300px; aspect-ratio: 4/3.4; }
  .ih-hero::before { right: 50%; transform: translate(50%,-50%); opacity: 0.05; width: 360px; height: 360px; }
}

/* ════════════════════════════════════════════════════════════
   83. MODULE CARD EXTRAS — chapter previews, view link, bundle card
   ════════════════════════════════════════════════════════════ */
.ihm-samples { margin: 2px 0 12px; }
.ihm-samples-h { font-size: 0.72rem; font-weight: 700; color: #64748B; text-transform: uppercase; letter-spacing: 0.04em; }
.ihm-samples ul { list-style: none; margin: 6px 0 0; padding: 0; }
.ihm-samples li { font-size: 0.84rem; color: #475569; padding: 3px 0 3px 16px; position: relative; line-height: 1.35; }
.ihm-samples li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent, #B45309); }
.ihm-view { display: inline-block; font-size: 0.82rem; font-weight: 700; color: #166534; text-decoration: none; margin: 0 0 14px; }
.ihm-view:hover { color: #14532D; text-decoration: underline; }
.ihm-card-bundle { background: linear-gradient(160deg,#FFFDF7,#F6ECCB); border-color: rgba(212,175,55,0.55); }
.ihm-bundle-tag { display: inline-block; align-self: flex-start; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #422006; background: linear-gradient(135deg,#E6C257,#D4AF37); padding: 4px 12px; border-radius: 100px; margin-bottom: 8px; }

/* ════════════════════════════════════════════════════════════
   84. REDESIGNED BUNDLE DEAL (on-brand, premium parchment card)
   ════════════════════════════════════════════════════════════ */
.ih-deal { position: relative; max-width: 900px; margin: 0 auto; background: linear-gradient(160deg,#FFFDF7,#FAF1DC); border: 1.5px solid rgba(212,175,55,0.55); border-radius: 20px; box-shadow: 0 20px 50px rgba(15,23,42,0.13); overflow: hidden; }
.ih-deal-ribbon { background: linear-gradient(135deg,#E6C257,#D4AF37); color: #422006; font-weight: 800; font-size: 0.74rem; letter-spacing: 0.09em; text-transform: uppercase; text-align: center; padding: 9px 12px; }
.ih-deal-body { display: grid; grid-template-columns: 1.25fr 1fr; }
.ih-deal-left { padding: 26px 28px; position: relative; }
.ih-deal-left::after { content: ""; position: absolute; top: 22px; bottom: 22px; right: 0; width: 1px; background: repeating-linear-gradient(to bottom, rgba(180,83,9,0.35) 0 6px, transparent 6px 12px); }
.ih-deal-right { padding: 26px 28px; text-align: center; display: flex; flex-direction: column; justify-content: center; background: rgba(212,175,55,0.07); }
.ih-deal h2 { font-size: clamp(1.4rem,3.4vw,1.85rem); color: #0F172A; margin: 0 0 6px; line-height: 1.2; }
.ih-deal-tagline { color: #64748B; font-size: 0.9rem; margin: 0 0 16px; }
.ih-deal-feats { list-style: none; margin: 0; padding: 0; }
.ih-deal-feats li { font-size: 0.9rem; color: #334155; padding: 5px 0 5px 26px; position: relative; }
.ih-deal-feats li::before { content: "\2713"; position: absolute; left: 0; top: 5px; color: #166534; font-weight: 800; }
.ih-deal-mrp { color: #94A3B8; text-decoration: line-through; font-size: 1.05rem; }
.ih-deal-now { color: #B45309; font-weight: 900; font-size: 2.6rem; font-family: 'Playfair Display', Georgia, serif; line-height: 1; }
.ih-deal-save { display: inline-block; background: linear-gradient(135deg,#E6C257,#D4AF37); color: #422006; font-weight: 800; font-size: 0.78rem; padding: 4px 12px; border-radius: 100px; margin: 10px 0 14px; }
.ih-deal-urgency { color: #64748B; font-size: 0.82rem; margin: 0 0 14px; }
.ih-deal-urgency strong { color: #B45309; }
.ih-deal .ih-btn { padding: 14px 30px; border-radius: 10px; font-weight: 800; font-size: 1.02rem; text-decoration: none; display: inline-block; }
.ih-deal .trust-badges { margin-top: 16px; }
@media (max-width: 680px) {
  .ih-deal-body { grid-template-columns: 1fr; }
  .ih-deal-left::after { display: none; }
  .ih-deal-left { border-bottom: 1px dashed rgba(180,83,9,0.3); }
}

/* ════════════════════════════════════════════════════════════
   85. HISTORY-WEBSITE BACKGROUND FEEL (subtle, fixed)
   Parchment grain (set in §77) + soft sepia vignette + a faint
   corner Ashoka chakra watermark — museum/manuscript atmosphere.
   ════════════════════════════════════════════════════════════ */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(180,83,9,0.05), transparent 55%),
    radial-gradient(120% 80% at 50% 110%, rgba(15,23,42,0.05), transparent 55%);
}
body::after {
  content: ""; position: fixed; right: -120px; bottom: -120px; z-index: -1; pointer-events: none;
  width: 440px; height: 440px; opacity: 0.05;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='440' viewBox='0 0 440 440'%3E%3Cg fill='none' stroke='%23B45309' stroke-width='2.4'%3E%3Ccircle cx='220' cy='220' r='196'/%3E%3Ccircle cx='220' cy='220' r='168'/%3E%3Ccircle cx='220' cy='220' r='44'/%3E%3Cg%3E%3Cline x1='220' y1='24' x2='220' y2='416'/%3E%3Cline x1='24' y1='220' x2='416' y2='220'/%3E%3Cline x1='82' y1='82' x2='358' y2='358'/%3E%3Cline x1='358' y1='82' x2='82' y2='358'/%3E%3Cline x1='140' y1='34' x2='300' y2='406'/%3E%3Cline x1='406' y1='140' x2='34' y2='300'/%3E%3Cline x1='300' y1='34' x2='140' y2='406'/%3E%3Cline x1='34' y1='140' x2='406' y2='300'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ════════════════════════════════════════════════════════════
   86. MODULE PAGE — chapter list + purchase card (buy after chapters)
   ════════════════════════════════════════════════════════════ */
.ih-mod { max-width: 880px; margin: 0 auto; }
.ih-mod-h { font-size: clamp(1.4rem,4vw,1.85rem); text-align: center; margin: 0 0 4px; }
.ih-mod-sub { text-align: center; color: #64748B; font-size: 0.95rem; margin: 0 0 16px; }
.ih-chapters { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.ih-chapters li { display: flex; gap: 11px; align-items: flex-start; background: #fff; border: 1px solid #E2E8F0; border-radius: 10px; padding: 11px 13px; font-size: 0.9rem; color: #334155; line-height: 1.4; transition: border-color .18s, box-shadow .18s, transform .18s; }
.ih-chapters li:hover { border-color: rgba(212,175,55,0.6); box-shadow: 0 6px 16px rgba(15,23,42,0.06); transform: translateY(-1px); }
.ih-chapters .ch-no { flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px; background: rgba(180,83,9,0.1); color: #B45309; font-weight: 800; font-size: 0.78rem; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', Georgia, serif; }
@media (max-width: 680px) { .ih-chapters { grid-template-columns: 1fr; } }

.ih-purchase { max-width: 680px; margin: 0 auto; background: linear-gradient(160deg,#FFFDF7,#FAF1DC); border: 1.5px solid rgba(212,175,55,0.5); border-radius: 18px; padding: 26px 24px; text-align: center; box-shadow: 0 14px 40px rgba(15,23,42,0.1); }
.ih-purchase-meta { font-size: 0.82rem; color: #64748B; margin-bottom: 8px; }
.ih-purchase-price { display: flex; align-items: baseline; justify-content: center; gap: 10px; }
.ih-purchase-price .ihm-mrp { font-size: 1.05rem; }
.ih-purchase-price .ihm-now { font-size: 2.4rem; }
.ih-purchase .ihm-save { display: inline-block; background: linear-gradient(135deg,#E6C257,#D4AF37); color: #422006; font-weight: 800; font-size: 0.78rem; padding: 4px 13px; border-radius: 100px; margin: 8px 0 16px; }
.ih-purchase .ihm-btns { justify-content: center; max-width: 380px; margin: 0 auto; }
.ih-purchase .ihm-buy { padding: 13px 22px; border-radius: 9px; font-weight: 800; font-size: 0.98rem; }
.ih-purchase-note { font-size: 0.74rem; color: #94A3B8; margin-top: 12px; }

/* ════════════════════════════════════════════════════════════
   87. CONTACT PAGE — method cards
   ════════════════════════════════════════════════════════════ */
.ih-contact { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ih-contact-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid #E2E8F0; border-radius: 14px; padding: 18px; text-decoration: none; }
.ih-contact-ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.ih-contact-tx { display: flex; flex-direction: column; line-height: 1.4; }
.ih-contact-tx strong { color: #0F172A; font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; }
.ih-contact-tx span { color: #B45309; font-weight: 600; font-size: 0.9rem; margin: 1px 0 4px; }
.ih-contact-tx small { color: #64748B; font-size: 0.82rem; line-height: 1.45; }
.ih-contact-note { max-width: 760px; margin: 18px auto 0; background: #fff; border: 1px solid #E2E8F0; border-left: 4px solid #166534; border-radius: 10px; padding: 14px 16px; font-size: 0.9rem; color: #475569; line-height: 1.6; }
.ih-contact-note a { color: #166534; font-weight: 600; }
@media (max-width: 560px) { .ih-contact { grid-template-columns: 1fr; } }
