/* ============================================================
   JOGINDER POSWAL — 2026 Modern Advocate Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette */
  --navy:       #0a1628;
  --navy-light: #121f33;
  --gold:       #c8a55c;
  --gold-light: #e8d5a3;
  --gold-dark:  #a6843a;
  --cream:      #faf9f6;
  --warm-white: #f5f4f0;
  --text:       #1a1a2e;
  --text-muted: #5c6370;
  --text-light: #8b919a;
  --border:     #e8e6e1;
  --white:      #ffffff;

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* ---- Utility ---- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}

.eyebrow--dark {
  color: var(--gold-light);
}

.section-pad {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.text-gold { color: var(--gold); }
.bg-navy { background: var(--navy); color: #c9cdd4; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-warm { background: var(--warm-white); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.lead-text {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- Button System ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,165,92,.25);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline--light {
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn-outline--light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-text {
  background: none;
  border: none;
  padding: 0;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
}
.btn-text:hover { color: var(--gold); }
.btn-text svg { transition: transform .2s; }
.btn-text:hover svg { transform: translateX(4px); }

/* ---- Navigation ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--gold); }

.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color .2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-cta {
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: all .3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav-menu {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform .35s ease;
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a.active::after { display: none; }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
  }

  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---- Hero ---- */
.hero {
  padding-top: calc(72px + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
  background: linear-gradient(165deg, var(--navy) 0%, #0d1e36 55%, #132844 100%);
  color: #c9cdd4;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(200,165,92,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #9aa3b0;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero-stat h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gold);
  margin: 0 0 0.25rem;
}

.hero-stat p {
  font-size: 0.8rem;
  color: #6b7380;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Hero right card */
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  backdrop-filter: blur(10px);
}

.hero-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hero-card-item:last-child { border-bottom: none; }

.hero-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200,165,92,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-card-item h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.25rem;
}

.hero-card-item p {
  font-size: 0.82rem;
  color: #6b7380;
  margin: 0;
  line-height: 1.5;
}

/* Hero Photo */
.hero-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 400px;
  margin-left: auto;
}

.hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius-xl);
}

.hero-photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(10,22,40,.92) 0%, rgba(10,22,40,.4) 80%, transparent 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero-photo-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.hero-photo-badge span {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { margin-top: 1rem; }
  .hero-photo { max-width: 300px; margin: 0 auto; }
  .hero-photo img { height: 400px; }
}

/* ---- Bento Grid (Practice Areas) ---- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.bento-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

.bento-card:hover::before {
  transform: scaleX(1);
}

.bento-card--wide { grid-column: span 7; }
.bento-card--narrow { grid-column: span 5; }
.bento-card--third { grid-column: span 4; }
.bento-card--half { grid-column: span 6; }
.bento-card--full { grid-column: span 12; }

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(200,165,92,.1), rgba(200,165,92,.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 1.25rem;
}

.bento-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin-bottom: 0.75rem;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.bento-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

.bento-card .card-link:hover { color: var(--gold); }

@media (max-width: 768px) {
  .bento-card--wide,
  .bento-card--narrow,
  .bento-card--third,
  .bento-card--half {
    grid-column: span 12;
  }
}

/* ---- Process / How It Works ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}

.process-step h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

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

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-bar-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.stats-bar-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 600px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ---- Highlight / Book Section ---- */
.highlight-section {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  color: #9aa3b0;
}

.highlight-section h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.highlight-section p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-book-visual {
  background: linear-gradient(135deg, rgba(200,165,92,.08), rgba(200,165,92,.02));
  border: 1px solid rgba(200,165,92,.15);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 3rem);
  text-align: center;
}

.highlight-book-visual .book-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.highlight-book-visual h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.highlight-book-visual p {
  font-size: 0.85rem;
  color: #6b7380;
  margin: 0;
}

/* Book Cover */
.book-cover-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-cover-img {
  max-width: 280px;
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(200,165,92,.12);
  transition: transform .4s ease, box-shadow .4s ease;
}

.book-cover-img:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 28px 70px rgba(0,0,0,.4), 0 0 0 1px rgba(200,165,92,.2);
}

@media (max-width: 768px) {
  .highlight-section { grid-template-columns: 1fr; }
  .book-cover-wrap { margin-top: 1rem; }
  .book-cover-img { max-width: 220px; }
}

/* ---- Testimonial / Trust ---- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.trust-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.trust-card cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ Accordion ---- */
.faq-list {
  max-width: 720px;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all .2s;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #132844 100%);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 5vw, 4.5rem);
  text-align: center;
  color: #9aa3b0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(200,165,92,.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: #6b7380;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand span { color: var(--gold); }

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #5a6068;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8b919a;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.85rem;
  color: #6b7380;
  text-decoration: none;
  transition: color .2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.84rem;
  margin: 0;
}

.footer-legal {
  font-size: 0.8rem;
  color: #4a5058;
  max-width: 600px;
}

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

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Divider / Decorations ---- */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 0 0 1.5rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; }
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  padding-top: calc(72px + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 15% 50%, rgba(200,165,92,.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(200,165,92,.06) 0%, transparent 40%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(200,165,92,.12) 40px,
      rgba(200,165,92,.12) 41px
    ),
    var(--navy);
  color: #9aa3b0;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header .lead-text { color: #8b919a; }

/* ---- Smooth scroll ---- */
html { scroll-behavior: smooth; }

/* ---- Selection ---- */
::selection {
  background: var(--gold-light);
  color: var(--navy);
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}

.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .2s; }
.fade-up-d3 { animation-delay: .3s; }
.fade-up-d4 { animation-delay: .4s; }

/* ---- Contact Page ---- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  transition: all .3s ease;
}

.contact-method-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.contact-method-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(200,165,92,.12), rgba(200,165,92,.04));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-method-card strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.contact-method-card p {
  font-size: 0.9rem;
  color: var(--navy);
  margin: 0;
  font-weight: 500;
}

.contact-method-hint {
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .contact-methods { grid-template-columns: 1fr; }
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Form Styles */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,165,92,.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235c6370' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Sidebar */
.contact-info-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-info-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.contact-info-card p strong {
  color: var(--navy);
}

/* Contact Steps */
.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-step strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact-step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* DPDP Privacy Notice */
.dpdp-notice {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.dpdp-notice h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.dpdp-notice p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 0.4rem;
}

.dpdp-notice p:last-child {
  margin-bottom: 0;
}

.dpdp-notice p strong {
  color: var(--text);
}

/* Consent Checkbox */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Form Feedback */
.form-feedback {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-feedback--success {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  color: #166534;
}

.form-feedback--error {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.2);
  color: #991b1b;
}

/* ---- Insights Page ---- */
.insights-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.insights-filter {
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .25s;
}

.insights-filter:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.insights-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

/* Insights Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Insight Card */
.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
}

.insight-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

.insight-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.insight-card-body {
  padding: 1.5rem;
}

.insight-card-cat {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,165,92,.08);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.insight-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.insight-card-body h3 a {
  color: var(--navy);
  text-decoration: none;
}

.insight-card-body h3 a:hover {
  color: var(--gold-dark);
}

.insight-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.insight-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.insight-card-meta time {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Loading & Empty States */
.insights-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
}

.insights-loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.insights-loading p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.insights-empty {
  text-align: center;
  padding: 3rem 0;
}

.insights-empty-icon {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.insights-empty h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.insights-empty p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 550px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ---- Book Page ---- */
.book-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.book-hero-text h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1.25rem;
}

.book-hero-cover {
  flex-shrink: 0;
}

.book-hero-img {
  width: 280px;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 0 1px rgba(200,165,92,.1);
}

@media (max-width: 768px) {
  .book-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .book-hero-cover {
    display: flex;
    justify-content: center;
    order: -1;
  }
  .book-hero-img { width: 220px; }
  .book-hero-text > div { justify-content: center; }
}

/* Book At a Glance */
.book-glance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.book-glance-item {
  background: var(--white);
  padding: 1.5rem;
  text-align: center;
}

.book-glance-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.book-glance-item p {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 600px) {
  .book-glance { grid-template-columns: repeat(2, 1fr); }
}

/* Book Chapters */
.book-chapters {
  max-width: 760px;
  margin: 0 auto;
}

.book-chapter {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.book-chapter:first-child { padding-top: 0; }
.book-chapter:last-child { border-bottom: none; }

.book-chapter-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  padding-top: 0.2rem;
}

.book-chapter h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.book-chapter p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ---- DPDP Page ---- */
.dpdp-obligations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.dpdp-obligation {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.dpdp-obligation-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}

.dpdp-obligation h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.dpdp-obligation p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .dpdp-obligations-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .dpdp-obligations-grid { grid-template-columns: 1fr; }
}

/* DPDP Process */
.dpdp-process {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.dpdp-process-step {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2.5rem;
}

.dpdp-process-step:last-child {
  padding-bottom: 0;
}

.dpdp-process-connector {
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.dpdp-process-step:last-child .dpdp-process-connector {
  display: none;
}

.dpdp-process-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--gold);
}

.dpdp-process-step:last-child .dpdp-process-dot {
  background: var(--gold);
}

.dpdp-process-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.dpdp-process-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.dpdp-process-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.dpdp-process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dpdp-process-tags span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-dark);
  background: rgba(200,165,92,.08);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* DPDP Audience */
.dpdp-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.dpdp-audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
}

.dpdp-audience-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(200,165,92,.1), rgba(200,165,92,.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.dpdp-audience-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.dpdp-audience-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .dpdp-audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .dpdp-audience-grid { grid-template-columns: 1fr; }
}

/* ---- Practice Page ---- */
.practice-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.practice-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all .25s;
}

.practice-nav-item:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(200,165,92,.04);
}

/* Delivery Bar */
.delivery-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.delivery-item {
  background: var(--white);
  padding: 1.5rem;
  text-align: center;
}

.delivery-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.delivery-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .delivery-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .delivery-bar { grid-template-columns: 1fr; }
}

/* Practice Detail Sections */
.practice-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.practice-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(200,165,92,.12), rgba(200,165,92,.04));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.practice-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.practice-detail-main p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.practice-detail-main h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

/* Practice List */
.practice-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.practice-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.practice-list li:first-child {
  padding-top: 0;
}

.practice-list li:last-child {
  border-bottom: none;
}

.practice-list li strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.practice-list li p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Sidebar Cards */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.bg-warm .sidebar-card {
  background: var(--cream);
}

.sidebar-card--highlight {
  border-color: var(--gold);
  background: rgba(200,165,92,.03);
}

.bg-warm .sidebar-card--highlight {
  background: rgba(200,165,92,.06);
}

.sidebar-card h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.sidebar-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.sidebar-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 900px) {
  .practice-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- About Page ---- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(10,22,40,.9) 0%, transparent 100%);
}

.about-photo-caption strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.about-photo-caption span {
  font-size: 0.8rem;
  color: var(--gold-light);
}

.about-intro-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0 0 1rem;
}

.about-intro-text p strong {
  color: var(--navy);
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    max-width: 300px;
  }
  .about-photo img {
    height: 380px;
  }
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--gold);
  z-index: 1;
}

.timeline-item:last-child .timeline-marker {
  background: var(--gold);
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.timeline-period {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Diff / Comparison Cards */
.diff-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.diff-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.diff-label {
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

.diff-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.diff-typical,
.diff-this {
  padding: 1.25rem 1.5rem;
}

.diff-typical {
  background: var(--white);
  border-right: 1px solid var(--border);
}

.diff-this {
  background: rgba(200,165,92,.04);
}

.diff-typical span,
.diff-this span {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.diff-typical span { color: var(--text-light); }
.diff-this span { color: var(--gold); }

.diff-typical p,
.diff-this p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 600px) {
  .diff-compare { grid-template-columns: 1fr; }
  .diff-typical { border-right: none; border-bottom: 1px solid var(--border); }
}

/* Credentials Grid */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.credential-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
}

.credential-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(200,165,92,.1), rgba(200,165,92,.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}

.credential-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.credential-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

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

@media (max-width: 480px) {
  .credentials-grid { grid-template-columns: 1fr; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: #c4c1b9; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #9e9b93; }
