:root {
  --navy-dark:   #081426;
  --navy-mid:    #0d1e36;
  --navy-topbar: #143a68;
  --navy-btn:    #1b4a8a;
  --navy-text:   #10264a;
  --bg-light:    #f7f9fc;
  --bg-white:    #ffffff;
  --gray-body:   #5a687c;
  --muted:       #a4b4c9;
  --gold:        #e0b260;
  --gold-deep:   #c8973f;
  --gold-pale:   #fff9ec;
  --border:      #e5e4e9;
  --lime:        #c8e63c;
  --cyan:        #00d4f5;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--navy-text); background: var(--bg-light); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--navy-topbar);
  color: #fff;
  font-size: 13px;
  padding: 9px 40px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar .spacer { flex: 1; }
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold); }

/* ===================== NAV ===================== */
nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 16px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(8,20,38,0.06);
}
.nav-logo { font-weight: 800; font-size: 22px; color: var(--navy-topbar); margin-right: 44px; letter-spacing: -0.5px; }
.nav-logo span { color: var(--gold-deep); }
.navlinks { display: flex; gap: 28px; align-items: center; flex: 1; font-weight: 500; font-size: 14px; color: var(--navy-text); }
.navlinks a { transition: color 0.2s; }
.navlinks a:hover { color: var(--navy-topbar); }
.navlinks a.active { color: var(--navy-topbar); border-bottom: 2.5px solid var(--navy-topbar); padding-bottom: 4px; }
.nav-cta { background: var(--navy-topbar); color: #fff !important; padding: 11px 24px; border-radius: 40px; font-weight: 700; font-size: 13px; white-space: nowrap; transition: background 0.2s !important; border: none !important; }
.nav-cta:hover { background: var(--navy-btn) !important; }

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #143a68 100%);
  color: #fff;
  padding: 72px 0 60px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(224,178,96,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero .wrap { display: flex; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-text { flex: 1.1; }
.hero-visual { flex: 0.9; display: flex; justify-content: center; }

.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600; font-size: 11px; letter-spacing: 0.8px;
  padding: 7px 16px; border-radius: 30px;
}
.pill.gold { background: rgba(224,178,96,0.18); border-color: rgba(224,178,96,0.4); color: var(--gold); }

.hero h1 {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--gold); }
.hero h1 .sub-title {
  display: block;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0;
  margin-top: 6px;
}
.hero-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
}
.byline {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 28px; flex-wrap: wrap;
}
.byline strong { color: var(--gold); font-weight: 600; }
.byline-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.6; }

.price-row {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 28px;
}
.price-main { font-size: 52px; font-weight: 800; color: #fff; line-height: 1; }
.price-main sup { font-size: 22px; vertical-align: super; }
.price-meta { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.price-meta strong { color: #7ec99a; font-weight: 500; display: block; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700; font-size: 15px;
  padding: 16px 32px; border-radius: 40px;
  transition: all 0.25s; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(224,178,96,0.3);
}
.btn-gold:hover { background: #f0c870; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(224,178,96,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.25s; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.trust-strip {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item { display: flex; flex-direction: column; gap: 1px; }
.trust-num { font-family: 'Playfair Display', Georgia, serif; font-size: 32px; font-weight: 700; color: var(--gold); line-height: 1.1; margin-bottom: 2px; }
.trust-lbl { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.trust-div { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }

/* Book cover visual (3D Flippable Book Card) */
.book-wrap {
  position: relative;
  perspective: 1000px;
  width: 320px;
  aspect-ratio: 477 / 705;
  cursor: pointer;
}
.book-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}
/* Flip on hover (desktop) or flipped class (touch devices) */
.book-wrap:hover .book-card-inner,
.book-wrap.flipped .book-card-inner {
  transform: rotateY(180deg);
}
.book-front, .book-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 4px 12px 12px 4px;
  overflow: hidden;
}
.book-front img, .book-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-front {
  box-shadow: -8px 8px 0px rgba(200,151,63,0.3), -18px 18px 50px rgba(0,0,0,0.6), 4px 0 0 rgba(0,0,0,0.4);
}
.book-back {
  transform: rotateY(180deg);
  box-shadow: 8px 8px 0px rgba(200,151,63,0.3), 18px 18px 50px rgba(0,0,0,0.6), -4px 0 0 rgba(0,0,0,0.4);
}
.book-shadow {
  position: absolute;
  bottom: -24px; left: 50%; transform: translateX(-50%);
  width: 260px; height: 40px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 1;
}
.book-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800; font-size: 11px; letter-spacing: 0.8px;
  padding: 8px 14px; border-radius: 30px;
  z-index: 3; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(224,178,96,0.4);
}

/* ===================== PRESS BAR ===================== */
.press-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
}
.press-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
  justify-content: center;
}
.press-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase; white-space: nowrap;
}
.press-names {
  display: flex; gap: 32px; flex-wrap: wrap; align-items: center;
}
.press-name {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  color: var(--muted); text-transform: uppercase;
  opacity: 0.7; transition: opacity 0.2s, color 0.2s;
}
.press-name:hover { opacity: 1; color: var(--navy-topbar); }
.press-sep { color: var(--border); font-size: 18px; }

/* ===================== SECTIONS ===================== */
section { padding: 72px 0; }
.eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-text);
  font-weight: 700; font-size: 11px; letter-spacing: 1.5px;
  padding: 7px 16px; border-radius: 6px; margin-bottom: 18px;
  text-transform: uppercase;
}
.eyebrow-outline {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 700; font-size: 11px; letter-spacing: 1.5px;
  padding: 6px 14px; border-radius: 6px; margin-bottom: 18px;
  text-transform: uppercase;
}
h2 { font-size: clamp(28px, 3vw, 38px); font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.lead { font-size: 17px; color: var(--gray-body); margin-bottom: 36px; max-width: 700px; line-height: 1.75; font-weight: 400; }
.section-center { text-align: center; }
.section-center .lead { margin-left: auto; margin-right: auto; }

/* ===================== WHY SECTION ===================== */
.why-section { background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 18px rgba(8,20,38,0.06);
  border-top: 4px solid var(--navy-topbar);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(8,20,38,0.1); }
.why-card:nth-child(2) { border-top-color: var(--gold); }
.why-card:nth-child(3) { border-top-color: var(--gold-deep); }
.why-card:nth-child(4) { border-top-color: #143a68; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--navy-text); }
.why-card p { font-size: 14px; color: var(--gray-body); line-height: 1.7; }
.why-icon { font-size: 28px; margin-bottom: 12px; }

/* ===================== 9 LAWS ===================== */
.laws-section { background: var(--navy-dark); color: #fff; }
.laws-section h2 { color: #fff; }
.laws-section .lead { color: var(--muted); }
.laws-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.law-card {
  background: var(--navy-mid);
  border-radius: 8px; padding: 24px 22px;
  border-top: 4px solid var(--gold);
  transition: background 0.2s, transform 0.2s;
}
.law-card:hover { background: #152840; transform: translateY(-2px); }
.law-num {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 10px; text-transform: uppercase;
}
.law-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.law-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ===================== BOOK DETAILS ===================== */
.book-section { background: #fff; }
.book-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.book-cover-large {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.book-cover-large .book-wrap {
  width: 100%;
}
.book-cover-large .book-front {
  box-shadow: -10px 10px 0 rgba(200,151,63,0.2), -22px 22px 60px rgba(8,20,38,0.25);
  border-radius: 4px 14px 14px 4px;
}
.book-cover-large .book-back {
  box-shadow: 10px 10px 0 rgba(200,151,63,0.2), 22px 22px 60px rgba(8,20,38,0.25);
  border-radius: 4px 14px 14px 4px;
}
.book-details h2 { color: var(--navy-text); }
.book-details .lead { margin-bottom: 28px; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 32px; }
.spec { padding: 14px 18px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.spec:nth-child(even) { border-right: none; }
.spec:nth-last-child(-n+2) { border-bottom: none; }
.spec-key { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; color: var(--gold-deep); text-transform: uppercase; margin-bottom: 3px; }
.spec-val { font-size: 13px; font-weight: 600; color: var(--navy-text); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-topbar); color: #fff;
  font-weight: 700; font-size: 15px;
  padding: 16px 32px; border-radius: 40px;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(20,58,104,0.3);
}
.btn-navy:hover { background: var(--navy-btn); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(20,58,104,0.4); }
.btn-navy-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy-topbar);
  font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: 40px;
  border: 2px solid var(--navy-topbar);
  transition: all 0.25s;
}
.btn-navy-outline:hover { background: var(--navy-topbar); color: #fff; transform: translateY(-2px); }

/* ===================== AUTHOR ===================== */
.author-section { background: var(--bg-light); }
.author-inner { display: grid; grid-template-columns: 420px 1fr; gap: 70px; align-items: start; }
.author-photo-col { position: relative; }
.author-photo-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8,20,38,0.18);
  position: relative;
}
.author-photo-frame img { width: 100%; display: block; }
.author-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(8,20,38,0.7), transparent);
}
.author-name-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  z-index: 2;
  color: #fff;
}
.author-name-overlay .name { font-size: 20px; font-weight: 800; color: #fff; }
.author-name-overlay .role { font-size: 12px; color: var(--gold); font-weight: 500; margin-top: 2px; }
.author-stat-chips {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 16px;
}
.author-chip {
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
}
.author-chip .num { font-size: 22px; font-weight: 800; color: var(--gold); line-height: 1; }
.author-chip .lbl { font-size: 10px; color: var(--muted); margin-top: 4px; letter-spacing: 0.5px; }
.author-content h2 { color: var(--navy-text); }
.author-content .lead { color: var(--gray-body); margin-bottom: 20px; }
.author-content p { font-size: 15px; color: var(--gray-body); line-height: 1.75; margin-bottom: 16px; }
.cred-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.cred-chip {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--navy-text);
  font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 6px;
}
.pull-quote {
  background: var(--navy-dark);
  border-left: 5px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 22px 24px;
  margin-bottom: 28px;
}
.pull-quote p {
  font-size: 16px; font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65; margin-bottom: 8px;
}
.pull-quote cite { font-size: 12px; color: var(--gold); font-style: normal; font-weight: 600; }

/* ===================== TESTIMONIALS ===================== */
.testi-section { background: var(--navy-dark); color: #fff; }
.testi-section h2 { color: #fff; }
.testi-section .lead { color: var(--muted); }

/* Rahul Dravid hero feature */
.rd-feature {
  background: linear-gradient(135deg, #0e2a52 0%, #143a68 55%, #0d2040 100%);
  border: 1px solid rgba(224,178,96,0.4);
  border-radius: 16px;
  padding: 52px 56px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.rd-feature::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 32px;
  font-size: 220px; font-weight: 900;
  color: var(--gold); opacity: 0.08;
  line-height: 1; font-family: Georgia, serif;
  pointer-events: none;
}
.rd-feature::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
  border-radius: 16px 16px 0 0;
}
.rd-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,178,96,0.15);
  border: 1px solid rgba(224,178,96,0.4);
  color: var(--gold);
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  padding: 6px 14px; border-radius: 30px;
  text-transform: uppercase; margin-bottom: 28px;
}
.rd-quote {
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic; font-weight: 300;
  color: #fff; line-height: 1.65;
  margin-bottom: 36px; max-width: 880px;
}
.rd-author { display: flex; align-items: center; gap: 18px; }
.rd-avatar {
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-topbar), var(--navy-btn));
  border: 2.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: var(--gold); flex-shrink: 0;
}
.rd-name { font-size: 18px; font-weight: 800; color: #fff; line-height: 1.2; }
.rd-role { font-size: 13px; color: var(--gold); font-weight: 500; margin-top: 3px; }
.rd-stars { display: flex; gap: 4px; margin-top: 6px; }
.rd-stars .star { font-size: 15px; }

/* Supporting 3-card grid */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.testi-card {
  background: var(--navy-mid);
  border-radius: 10px; padding: 28px;
  border-top: 4px solid var(--gold);
  transition: transform 0.2s, background 0.2s;
}
.testi-card:hover { transform: translateY(-3px); background: #152840; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--gold); font-size: 13px; }
.testi-quote {
  font-size: 14px; font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-topbar); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--gold); flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: #fff; }
.testi-role { font-size: 11px; color: var(--muted); margin-top: 2px; }
.featured-quote {
  background: linear-gradient(135deg, var(--navy-mid), #1a3a6a);
  border-radius: 12px; padding: 36px 40px;
  border-left: 6px solid var(--gold); margin-top: 0;
}
.featured-quote blockquote {
  font-size: 16px; font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 16px;
}
.featured-quote .attribution { font-size: 14px; color: var(--gold); font-weight: 700; }
.featured-quote .attribution span { color: var(--muted); font-weight: 400; font-size: 12px; }

/* ===================== ORDER ===================== */
.order-section { background: var(--bg-light); }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.order-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 6px 24px rgba(8,20,38,0.08);
  border: 2px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.order-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(8,20,38,0.12); }
.order-card.featured {
  background: var(--navy-dark);
  border-color: var(--gold);
}
.featured-label {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  padding: 5px 18px; border-radius: 30px; white-space: nowrap;
}
.order-type { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--gold-deep); text-transform: uppercase; margin-bottom: 16px; }
.order-card.featured .order-type { color: var(--gold); }
.order-price-big { font-size: 56px; font-weight: 900; color: var(--navy-text); line-height: 1; margin-bottom: 4px; }
.order-price-big sup { font-size: 24px; vertical-align: super; }
.order-card.featured .order-price-big { color: #fff; }
.order-price-note { font-size: 13px; color: var(--gray-body); margin-bottom: 28px; }
.order-card.featured .order-price-note { color: var(--muted); }
.order-features { list-style: none; margin-bottom: 32px; }
.order-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-body);
  padding: 9px 0; border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.order-card.featured .order-features li { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.08); }
.order-features li:last-child { border-bottom: none; }
.check { color: #2f7a4f; font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.order-card.featured .check { color: var(--gold); }
.bulk-tier-box {
  background: rgba(224,178,96,0.08);
  border: 1px solid rgba(224,178,96,0.2);
  border-radius: 8px; padding: 18px;
  margin-bottom: 28px;
}
.bulk-tier-title { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.tier-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.tier-row:last-child { border-bottom: none; }
.tier-qty { font-size: 13px; color: rgba(255,255,255,0.55); }
.tier-disc { font-size: 16px; font-weight: 800; color: var(--gold); }
.tier-per { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ===================== GIFTING ===================== */
.gifting-band {
  background: linear-gradient(135deg, var(--navy-topbar), #0d1e36);
  padding: 60px 0;
}
.gifting-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.gifting-inner h3 { font-size: clamp(24px, 2.5vw, 34px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.gifting-inner h3 span { color: var(--gold); }
.gifting-inner p { font-size: 15px; color: var(--muted); max-width: 560px; line-height: 1.7; }
.gifting-cta-col { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.gifting-note { font-size: 12px; color: rgba(255,255,255,0.3); text-align: right; }

/* ===================== FINAL CTA ===================== */
.final-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-topbar) 100%);
  color: #fff;
  text-align: center;
  padding: 96px 0;
}
.final-section h2 { color: #fff; font-size: clamp(32px, 4vw, 52px); max-width: 700px; margin: 0 auto 20px; }
.final-section .lead { color: rgba(255,255,255,0.55); margin: 0 auto 44px; }
.final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-guarantee { margin-top: 32px; font-size: 13px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 6px; justify-content: center; }
.final-guarantee .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.5; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--navy-dark);
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.footer-logo span { color: var(--gold-deep); }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; font-weight: 300; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 8px; margin-bottom: 10px; }
.footer-contact-icon { color: var(--gold); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-text { font-size: 13px; color: var(--muted); line-height: 1.5; font-weight: 300; }
.footer-contact-text a { color: var(--muted); transition: color 0.2s; }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); font-weight: 300; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ===================== STICKY BAR ===================== */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 13px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  z-index: 200;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-book { display: flex; flex-direction: column; gap: 1px; }
.sticky-title { font-size: 15px; font-weight: 700; color: #fff; }
.sticky-price { font-size: 12px; color: var(--gold); font-weight: 500; }
.sticky-actions { display: flex; gap: 12px; }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .hero .wrap { flex-direction: column; text-align: center; gap: 40px; }
  .hero-visual { order: -1; }
  .book-img { width: 240px; }
  .hero-btns { justify-content: center; }
  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 280px;
    margin: 0 auto;
  }
  .trust-div { display: none; }
  .trust-item { text-align: left; }
  .byline { justify-content: center; }
  .price-row { justify-content: center; }
  .pill-row { justify-content: center; }
  .book-inner { grid-template-columns: 1fr; gap: 40px; }
  .author-inner { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .laws-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .gifting-inner { grid-template-columns: 1fr; }
  .gifting-cta-col { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  section { padding: 52px 0; }
  .laws-grid { grid-template-columns: 1fr; }
  .author-stat-chips { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .specs-grid { grid-template-columns: 1fr; }
  .spec:nth-child(even) { border-right: none; }
  .final-btns { flex-direction: column; align-items: center; }
  nav .navlinks { display: none; }
  .sticky-bar { padding: 12px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}