/* ═══════════════════════════════════════════════
   VOICE – Shared Design System
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #112244;
  --saffron: #FF9933;
  --saffron-light: #FFB347;
  --saffron-pale: #FFF3E0;
  --white: #FFFFFF;
  --cream: #FAF7F2;
  --green-india: #138808;
  --text-dark: #0a1628;
  --text-mid: #3a4a6b;
  --text-light: #7a8aab;
  --border: rgba(10,22,40,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 76px;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,153,51,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 60px; height: 60px; object-fit: contain; border-radius: 8px; background: white; padding: 3px; box-shadow: 0 0 0 1.5px rgba(255,153,51,0.4); flex-shrink: 0; }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
/* nav-brand-voice deprecated — real logo used instead */
.nav-brand-sub { font-size: 0.56rem; font-weight: 400; color: rgba(255,255,255,0.55); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0; line-height: 1.55; }

.nav-menu { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.83rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.5rem 0.85rem; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-item > a:hover, .nav-item > a.active { color: var(--saffron); background: rgba(255,153,51,0.08); }
.nav-item > a .chevron { font-size: 0.6rem; opacity: 0.6; transition: transform 0.2s; }
.nav-item:hover > a .chevron { transform: rotate(180deg); }

/* Dropdowns */
.nav-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: #0d1e38;
  border: 1px solid rgba(255,153,51,0.15);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 210px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.2s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  list-style: none;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown li a {
  display: block; padding: 0.55rem 0.85rem;
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.82rem; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown li a:hover { color: var(--saffron); background: rgba(255,153,51,0.08); }

.nav-cta {
  background: var(--saffron); color: var(--navy) !important;
  padding: 0.5rem 1.2rem !important; border-radius: 5px;
  font-weight: 700 !important; margin-left: 0.5rem;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--saffron-light) !important; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: 8rem 4rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(255,153,51,0.07) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.page-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,153,51,0.1); border: 1px solid rgba(255,153,51,0.25);
  color: var(--saffron); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 1.5rem;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 1.25rem;
}
.page-hero-title em { font-style: italic; color: var(--saffron); }
.page-hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.75;
  max-width: 640px; margin-bottom: 2rem;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.page-breadcrumb a { color: rgba(255,153,51,0.6); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--saffron); }
.page-breadcrumb span { color: rgba(255,255,255,0.2); }

/* ─── TRICOLOR BAR ─── */
.tricolor-bar { display: flex; height: 5px; }
.tricolor-bar span:nth-child(1) { flex: 1; background: var(--saffron); }
.tricolor-bar span:nth-child(2) { flex: 1; background: var(--white); }
.tricolor-bar span:nth-child(3) { flex: 1; background: var(--green-india); }

/* ─── CONTENT SECTIONS ─── */
.section { padding: 5rem 4rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--saffron); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
  color: var(--navy); line-height: 1.15; margin-bottom: 1.25rem;
}
.section-title-light { color: var(--white); }
.section-body {
  font-size: 1rem; line-height: 1.8; color: var(--text-mid); max-width: 700px;
}
.section-body-light { color: rgba(255,255,255,0.6); }
.section-body + .section-body { margin-top: 1rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--saffron); color: var(--navy);
  font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem 1.8rem; border-radius: 6px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; letter-spacing: 0.03em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,153,51,0.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-weight: 500; font-size: 0.9rem;
  padding: 0.85rem 1.8rem; border-radius: 6px;
  text-decoration: none; border: 1.5px solid rgba(10,22,40,0.2);
  transition: border-color 0.2s, color 0.2s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-outline-light:hover { border-color: var(--saffron); color: var(--saffron); }

/* ─── CARDS ─── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.card {
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: 0 10px 40px rgba(10,22,40,0.1); transform: translateY(-3px); }
.card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.card-dark:hover { border-color: rgba(255,153,51,0.4); transform: translateY(-4px); }
.card-icon {
  width: 48px; height: 48px;
  background: rgba(255,153,51,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.card-icon-dark { background: rgba(255,153,51,0.12); }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.card-dark h3 { color: var(--white); }
.card p { font-size: 0.875rem; line-height: 1.65; color: var(--text-mid); }
.card-dark p { color: rgba(255,255,255,0.55); }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.25rem; font-size: 0.82rem; font-weight: 600; color: var(--saffron); text-decoration: none; }
.card-link:hover { gap: 10px; }

/* ─── NAVY BG SECTION ─── */
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

/* ─── PILL / BADGE ─── */
.pill {
  background: rgba(255,153,51,0.1); border: 1px solid rgba(255,153,51,0.25);
  color: var(--saffron); font-size: 0.72rem; font-weight: 600;
  padding: 4px 14px; border-radius: 100px; letter-spacing: 0.05em;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }

/* ─── QUOTE CARD ─── */
.quote-card {
  background: var(--navy); border-radius: 16px;
  padding: 2.5rem; color: white; position: relative; overflow: hidden;
}
.quote-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,153,51,0.25), transparent 70%);
  transform: translate(30px,-30px);
}
.quote-text {
  font-family: 'DM Serif Display', serif; font-size: 1.2rem;
  line-height: 1.6; color: rgba(255,255,255,0.9); font-style: italic;
  margin-bottom: 1.25rem;
}
.quote-attr { font-size: 0.78rem; font-weight: 600; color: var(--saffron); letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── STAT BLOCKS ─── */
.stat-row { display: flex; gap: 0; margin-top: 3rem; }
.stat-block {
  flex: 1; padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-block:last-child { border-right: none; }
.stat-block-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--saffron); }
.stat-block-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ─── FORM ─── */
.form-card {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(10,22,40,0.07);
}
.form-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.form-sub { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.field label { font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 0.65rem 0.9rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; color: var(--text-dark);
  background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(255,153,51,0.12); background: white;
}
.field textarea { resize: vertical; min-height: 80px; }
.form-section-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--saffron); margin: 1.25rem 0 0.75rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.checkbox-group { display: flex; flex-direction: column; gap: 0.5rem; }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-mid); cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--saffron); }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; border-radius: 8px; padding: 0.9rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; margin-top: 1.5rem; transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--saffron); color: var(--navy); transform: translateY(-1px); }
.success-msg {
  display: none; background: #e8f8ec; border: 1px solid #138808;
  border-radius: 10px; padding: 1.5rem; text-align: center; margin-top: 1rem;
}
.success-msg h3 { color: var(--green-india); font-family: 'Playfair Display', serif; margin-bottom: 0.3rem; }
.success-msg p { color: #2a5a2a; font-size: 0.875rem; }

/* ─── TIER LIST ─── */
.tier-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.tier { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.1rem; background: white; border: 1px solid var(--border); border-radius: 10px; font-size: 0.875rem; }
.tier-badge { background: var(--navy); color: var(--saffron); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; white-space: nowrap; margin-top: 2px; }
.tier-name { font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.tier-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

/* ─── DISCLAIMER BOX ─── */
.disclaimer {
  background: rgba(255,153,51,0.05); border: 1px solid rgba(255,153,51,0.2);
  border-radius: 10px; padding: 1.25rem 1.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7;
}
.disclaimer strong { color: var(--saffron); }
.disclaimer-light { background: rgba(255,153,51,0.04); border-color: rgba(255,153,51,0.15); color: var(--text-mid); }

/* ─── FOOTER ─── */
footer { background: var(--navy); color: rgba(255,255,255,0.55); padding: 4rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand-voice { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 900; color: var(--saffron); letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.footer-brand-full { font-size: 0.62rem; font-weight: 300; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-desc { font-size: 0.8rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--saffron); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul li a { font-size: 0.8rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--saffron); }
.footer-bottom { max-width: 1100px; margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-501 { background: rgba(255,153,51,0.1); border: 1px solid rgba(255,153,51,0.2); color: var(--saffron); font-size: 0.62rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; letter-spacing: 0.08em; }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── TWO COL LAYOUT ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col-wide { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }

/* ─── LIST ITEMS ─── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9rem; line-height: 1.6; color: var(--text-mid); }
.check-list li::before { content: '✦'; color: var(--saffron); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0; }
.check-list-light li { color: rgba(255,255,255,0.65); }

/* ─── NUMBERED STEPS ─── */
.step-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: rgba(255,153,51,0.25); line-height: 1; flex-shrink: 0; min-width: 2.5rem; }
.step-body h4 { font-weight: 600; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.3rem; }
.step-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ─── CTA BAND ─── */
.cta-band { background: var(--saffron); padding: 4rem; }
.cta-band-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--navy); }
.cta-band p { font-size: 0.95rem; color: rgba(10,22,40,0.7); margin-top: 0.5rem; }
.btn-navy { background: var(--navy); color: white; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; padding: 0.9rem 2rem; border-radius: 6px; text-decoration: none; transition: transform 0.2s; }
.btn-navy:hover { transform: translateY(-2px); }
