/* ============================================================
   NGA — Nikita Goel & Associates
   Stylesheet
   ============================================================ */

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FAF8F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #15243F; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #B8862B; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #15243F;
  line-height: 1.2;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-light { background: #FFFFFF; }
.section-grey { background: #F3EFE8; }
.section-navy { background: #15243F; color: #FFFFFF; }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: #FFFFFF; }

.label-mono {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8862B;
  margin-bottom: 16px;
}
.label-mono::before { content: "—  "; }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8862B;
}

.rule-gold {
  width: 60px;
  height: 3px;
  background: #B8862B;
  border: 0;
  margin: 0 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-align: center;
}
.btn-primary {
  background: #B8862B;
  color: #15243F;
  border-color: #B8862B;
}
.btn-primary:hover {
  background: #9d711f;
  border-color: #9d711f;
  color: #FFFFFF;
}
.btn-ghost {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}
.btn-outline {
  background: transparent;
  color: #15243F;
  border-color: #15243F;
}
.btn-outline:hover {
  background: #15243F;
  color: #FFFFFF;
}
.btn-large { padding: 18px 36px; font-size: 16px; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FAF8F4;
  border-bottom: 1px solid #E8E2D9;
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(21, 36, 63, 0.08); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-mark {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: #15243F;
  letter-spacing: 0.04em;
}
.logo-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #B8862B;
  margin-top: 3px;
}
.logo-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6B6358;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: #15243F;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: #B8862B; }
.nav-links a.active {
  color: #B8862B;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #B8862B;
}

.nav-cta {
  background: #B8862B;
  color: #15243F !important;
  padding: 10px 20px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: #9d711f;
  color: #FFFFFF !important;
}
.nav-cta::after { display: none !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: " ▾";
  font-size: 10px;
  color: inherit;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  box-shadow: 0 12px 32px rgba(21, 36, 63, 0.12);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
  min-width: 480px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  border-radius: 2px;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: #15243F;
  border-radius: 2px;
  white-space: nowrap;
}
.dropdown a:hover {
  background: #FAF8F4;
  color: #B8862B;
}
.dropdown a::after { display: none !important; }

.hamburger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #15243F;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: #15243F;
  color: #FFFFFF;
  padding: 96px 0 112px;
  position: relative;
  border-top: 3px solid #B8862B;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 43, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-portraits {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.portrait {
  text-align: center;
}
.portrait img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #B8862B;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}
.portrait-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid #B8862B;
  background: linear-gradient(135deg, #1d3055, #15243F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #B8862B;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}
.portrait-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  margin-top: 16px;
  color: #FFFFFF;
}
.portrait-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B8862B;
  margin-top: 4px;
}

/* Page hero — narrow */
.page-hero {
  background: #15243F;
  color: #FFFFFF;
  padding: 80px 0 80px;
  border-top: 3px solid #B8862B;
}
.page-hero h1 {
  font-size: 44px;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin: 0;
}

/* ---------- Three-column feeling strip ---------- */
.feeling-strip {
  background: #F3EFE8;
  padding: 80px 0;
}
.feeling-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.feeling-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #15243F;
}
.feeling-card p {
  color: #6B6358;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Numbers bar ---------- */
.numbers-bar {
  background: #15243F;
  padding: 48px 0;
  color: #FFFFFF;
  border-top: 1px solid rgba(184, 134, 43, 0.3);
  border-bottom: 1px solid rgba(184, 134, 43, 0.3);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.number-item {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #FFFFFF;
}
.number-item span {
  display: block;
  color: #B8862B;
  font-size: 13px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ---------- Section heading helper ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.section-heading h2 {
  font-size: 38px;
  max-width: 720px;
  margin: 0 auto;
  color: #15243F;
}
.section-heading.left { text-align: left; }
.section-heading.left h2 { margin-left: 0; }

/* ---------- Services grid (homepage + services page) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  border-left: 3px solid #B8862B;
  padding: 28px 24px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(21, 36, 63, 0.1);
  border-left-width: 5px;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}
.service-card p {
  color: #6B6358;
  font-size: 14.5px;
  margin-bottom: 16px;
  flex: 1;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.service-card ul li {
  font-size: 13.5px;
  color: #6B6358;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: "·";
  color: #B8862B;
  font-weight: bold;
  position: absolute;
  left: 4px;
}
.service-card .learn-more {
  font-size: 13px;
  font-weight: 600;
  color: #B8862B;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
  margin-top: auto;
}
.service-card .learn-more:hover { color: #15243F; }

.services-grid.expanded {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.services-grid.expanded .service-card { padding: 36px 32px; }
.services-grid.expanded .service-card h3 { font-size: 24px; }

/* ---------- Why NGA grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  padding: 32px 28px;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.why-card:hover {
  box-shadow: 0 8px 24px rgba(21, 36, 63, 0.08);
  transform: translateY(-3px);
}
.why-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #15243F;
}
.why-card p {
  color: #6B6358;
  font-size: 14.5px;
  margin: 0;
  line-height: 1.6;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: #15243F;
  color: #FFFFFF;
  padding: 96px 0;
  text-align: center;
  position: relative;
  border-top: 3px solid #B8862B;
}
.cta-banner h2 {
  font-size: 38px;
  color: #FFFFFF;
  max-width: 880px;
  margin: 0 auto 20px;
  line-height: 1.2;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ---------- Footer ---------- */
.footer {
  background: #0F1A2E;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 32px;
}
.footer .logo-mark { color: #FFFFFF; }
.footer .logo-name { color: #B8862B; }
.footer .logo-tag { color: rgba(255, 255, 255, 0.5); }
.footer-top {
  margin-bottom: 48px;
}
.footer-tagline {
  margin-top: 12px;
  font-size: 14px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
}
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8862B;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.footer-col a:hover { color: #B8862B; }
.footer-col p {
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.footer-bottom {
  text-align: center;
  font-size: 13px;
  padding-top: 32px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 4px;
}
.footer-bottom a:hover { color: #B8862B; }
.footer-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.footer-trust img {
  width: 56px;
  height: 56px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 6px;
  object-fit: contain;
}
.footer-trust .trust-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.footer-trust .trust-text strong {
  color: #B8862B;
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 3px;
}

/* Trust badges in hero */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.trust-strip img {
  width: 52px;
  height: 52px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 5px;
  object-fit: contain;
}
.trust-strip .trust-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.trust-strip .trust-meta strong {
  color: #B8862B;
  display: block;
  margin-bottom: 2px;
}

/* Service icons */
.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: #B8862B;
  display: inline-block;
}
.service-icon svg { width: 100%; height: 100%; display: block; }

/* Process flow visual (used on home + sub-pages) */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.process-step {
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  padding: 24px 20px;
  position: relative;
  text-align: center;
}
.process-step .step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #B8862B;
  display: block;
  margin-bottom: 8px;
}
.process-step h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #15243F;
}
.process-step p {
  font-size: 13px;
  color: #6B6358;
  margin: 0;
  line-height: 1.5;
}
.process-step::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: #B8862B;
  font-size: 18px;
  font-weight: bold;
  z-index: 1;
}
.process-step:last-child::after { display: none; }

/* DTAA dot map */
.dtaa-visual {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 8px;
  padding: 32px 24px;
  background: #FAF8F4;
  border-left: 3px solid #B8862B;
  border-radius: 2px;
  margin-top: 24px;
}
.dtaa-dot {
  aspect-ratio: 1;
  background: #B8862B;
  border-radius: 50%;
  opacity: 0.85;
}
.dtaa-dot.dim { opacity: 0.3; background: #15243F; }

/* DPDP consent box */
.consent-block {
  background: #FAF8F4;
  border: 1px solid #E8E2D9;
  border-left: 3px solid #B8862B;
  padding: 16px 18px;
  border-radius: 2px;
  margin: 16px 0 20px;
  font-size: 13px;
  color: #4A4339;
  line-height: 1.55;
}
.consent-block a { color: #15243F; text-decoration: underline; text-decoration-color: #B8862B; }
.consent-block a:hover { color: #B8862B; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
}
.consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #B8862B;
}
.consent-row label {
  font-size: 13.5px;
  color: #4A4339;
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 0;
}

/* Privacy page typography */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-page h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #15243F;
}
.legal-page h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #15243F;
}
.legal-page p, .legal-page li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4A4339;
}
.legal-page ul { padding-left: 1.4em; }
.legal-page li { margin-bottom: 8px; }
.legal-page .meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #6B6358;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* ---------- About page ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-story p {
  color: #4A4339;
  font-size: 16.5px;
  line-height: 1.7;
}
.about-decor {
  border-left: 3px solid #B8862B;
  padding-left: 32px;
}
.about-decor blockquote {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: #15243F;
}
.about-decor cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B8862B;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 32px;
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  border-left: 3px solid #B8862B;
  margin-top: 64px;
  text-align: center;
}
.about-stats div {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #15243F;
}
.about-stats div span {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #B8862B;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Partner cards */
.partner-card {
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  padding: 48px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.partner-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #B8862B;
}
.partner-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #B8862B;
  background: linear-gradient(135deg, #1d3055, #15243F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: #B8862B;
}
.partner-card h3 {
  font-size: 30px;
  margin-bottom: 6px;
}
.partner-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B8862B;
  margin-bottom: 24px;
}
.partner-bio p {
  color: #4A4339;
  font-size: 15.5px;
  line-height: 1.7;
}
.tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tag-pills span {
  display: inline-block;
  padding: 6px 14px;
  background: #FAF8F4;
  border: 1px solid #E8E2D9;
  border-radius: 20px;
  font-size: 12px;
  color: #15243F;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.04em;
}

/* Timeline */
.timeline {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
  position: relative;
  flex-wrap: wrap;
}
.timeline-item {
  flex: 1;
  min-width: 200px;
  padding: 32px 24px;
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  border-top: 3px solid #B8862B;
  text-align: center;
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #15243F;
  margin-bottom: 8px;
  display: block;
}
.timeline-text {
  font-size: 14px;
  color: #6B6358;
}

/* ---------- Service sub-page ---------- */
.service-intro p {
  font-size: 17px;
  color: #4A4339;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 1.2em;
}
.service-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.breakdown-item {
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  padding: 28px 24px;
  border-top: 3px solid #B8862B;
}
.breakdown-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #15243F;
}
.breakdown-item p {
  font-size: 14.5px;
  color: #6B6358;
  margin: 0;
  line-height: 1.65;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.who-card {
  padding: 32px;
  background: #F3EFE8;
  border-radius: 2px;
}
.who-card h4 {
  font-size: 18px;
  color: #15243F;
  margin-bottom: 8px;
}
.who-card p {
  font-size: 14.5px;
  color: #6B6358;
  margin: 0;
}

/* ---------- Knowledge Bank + Insights ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-bar button {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid #E8E2D9;
  border-radius: 20px;
  font-size: 13.5px;
  color: #6B6358;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}
.filter-bar button:hover {
  border-color: #B8862B;
  color: #15243F;
}
.filter-bar button.active {
  background: #15243F;
  color: #FFFFFF;
  border-color: #15243F;
}

.kb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.kb-card {
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  padding: 28px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.kb-card:hover {
  border-color: #B8862B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 36, 63, 0.08);
}
.kb-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.kb-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #6B6358;
}
.kb-tag {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  background: #15243F;
  color: #B8862B;
}
.kb-tag.gst { background: #0F766E; color: #FFFFFF; }
.kb-tag.income-tax { background: #15243F; color: #FFFFFF; }
.kb-tag.company-law { background: #6B21A8; color: #FFFFFF; }
.kb-tag.fema { background: #B8862B; color: #15243F; }
.kb-tag.rbi-sebi { background: #1E3A8A; color: #FFFFFF; }
.kb-tag.labour-law { background: #B45309; color: #FFFFFF; }
.kb-card h3 {
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  color: #15243F;
}
.kb-card p {
  font-size: 14.5px;
  color: #6B6358;
  margin-bottom: 16px;
  flex: 1;
}
.kb-source {
  font-size: 13px;
  font-weight: 600;
  color: #B8862B;
  margin-top: auto;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.insight-card {
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  padding: 36px 32px;
  transition: all 0.2s ease;
}
.insight-card:hover {
  border-color: #B8862B;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(21, 36, 63, 0.08);
}
.insight-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
}
.insight-card h3 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.insight-card p {
  color: #6B6358;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.insight-read {
  font-size: 13px;
  font-weight: 600;
  color: #B8862B;
}

/* ---------- Tools ---------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.tool-card {
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  border-top: 3px solid #B8862B;
  padding: 36px 32px;
}
.tool-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.tool-card .tool-sub {
  color: #6B6358;
  font-size: 14px;
  margin-bottom: 24px;
}
.form-row {
  margin-bottom: 16px;
}
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #15243F;
  margin-bottom: 6px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E8E2D9;
  background: #FAF8F4;
  border-radius: 2px;
  font-size: 15px;
  color: #1A1A1A;
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #B8862B;
  background: #FFFFFF;
}
.form-row textarea { resize: vertical; min-height: 80px; }

.tool-output {
  margin-top: 24px;
  padding: 20px;
  background: #FAF8F4;
  border-left: 3px solid #B8862B;
  border-radius: 2px;
}
.tool-output h4 {
  font-size: 13px;
  color: #B8862B;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tool-output table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tool-output table th,
.tool-output table td {
  padding: 8px 4px;
  text-align: left;
  border-bottom: 1px solid #E8E2D9;
}
.tool-output table th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: #6B6358;
  letter-spacing: 0.06em;
}
.tool-output .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14.5px;
}
.tool-output .row strong { color: #15243F; }
.tool-output .total {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 2px solid #15243F;
  font-size: 16px;
  font-weight: 600;
}

.lrs-bar {
  width: 100%;
  height: 14px;
  background: #E8E2D9;
  border-radius: 7px;
  overflow: hidden;
  margin: 12px 0;
}
.lrs-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #B8862B, #9d711f);
  transition: width 0.4s ease;
}

/* Calendar */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calendar-nav button {
  padding: 8px 14px;
  background: #FAF8F4;
  border: 1px solid #E8E2D9;
  border-radius: 2px;
  font-size: 14px;
  color: #15243F;
  cursor: pointer;
}
.calendar-nav button:hover { border-color: #B8862B; }
.calendar-nav h4 {
  margin: 0;
  font-size: 18px;
  color: #15243F;
}
.calendar-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cal-item {
  display: grid;
  grid-template-columns: 60px 1fr 100px;
  gap: 12px;
  padding: 12px 16px;
  background: #FAF8F4;
  border-left: 3px solid #B8862B;
  border-radius: 2px;
  font-size: 14px;
  align-items: center;
}
.cal-item .cal-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: #15243F;
}
.cal-item .cal-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: right;
}
.cal-item.gst { border-left-color: #0F766E; }
.cal-item.gst .cal-cat { color: #0F766E; }
.cal-item.income-tax { border-left-color: #15243F; }
.cal-item.income-tax .cal-cat { color: #15243F; }
.cal-item.tds { border-left-color: #B8862B; }
.cal-item.tds .cal-cat { color: #B8862B; }
.cal-item.roc { border-left-color: #6B21A8; }
.cal-item.roc .cal-cat { color: #6B21A8; }
.cal-item.esic { border-left-color: #B45309; }
.cal-item.esic .cal-cat { color: #B45309; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
}
.contact-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-row {
  margin-bottom: 24px;
}
.contact-row .ct-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #B8862B;
  margin-bottom: 6px;
  display: block;
}
.contact-row p,
.contact-row a {
  font-size: 16px;
  color: #15243F;
  margin: 0 0 2px;
  display: block;
}
.contact-row a { color: #15243F; }
.contact-row a:hover { color: #B8862B; }
.contact-map {
  margin-top: 20px;
  border: 1px solid #E8E2D9;
  border-radius: 2px;
  overflow: hidden;
  height: 280px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  background: #FFFFFF;
  border: 1px solid #E8E2D9;
  padding: 40px;
  border-top: 3px solid #B8862B;
}
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-form .form-sub {
  color: #6B6358;
  font-size: 14px;
  margin-bottom: 24px;
}
.thank-you {
  padding: 40px 24px;
  text-align: center;
  background: #FAF8F4;
  border-left: 3px solid #B8862B;
}
.thank-you h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #15243F;
}
.thank-you p {
  color: #6B6358;
  margin: 0;
}
.hidden { display: none !important; }

/* ---------- Fade-in on scroll ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .feeling-grid { grid-template-columns: 1fr; gap: 32px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-portraits { justify-content: center; }
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .partner-card { grid-template-columns: 1fr; text-align: center; }
  .partner-photo, .partner-photo-placeholder { margin: 0 auto; }
  .tag-pills { justify-content: center; }
  .service-breakdown { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .kb-grid, .insight-grid, .tools-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 80px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 17px; }
  .page-hero { padding: 56px 0; }
  .page-hero h1 { font-size: 32px; }
  .section-heading h2 { font-size: 28px; }
  .cta-banner { padding: 64px 0; }
  .cta-banner h2 { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid.expanded { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); padding: 32px 16px; }
  .timeline { flex-direction: column; }
  .partner-card { padding: 32px 24px; }
  .contact-form { padding: 28px 20px; }

  /* Mobile nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #15243F;
    flex-direction: column;
    padding: 32px 24px;
    gap: 8px;
    align-items: stretch;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: #FFFFFF;
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links a.active { color: #B8862B; }
  .nav-links a.active::after { display: none; }
  .nav-cta {
    margin-top: 16px;
    text-align: center;
    background: #B8862B;
    color: #15243F !important;
  }
  .has-dropdown > a::after { content: ""; }
  .dropdown {
    position: static;
    transform: none !important;
    display: block;
    grid-template-columns: 1fr;
    box-shadow: none;
    border: 0;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 16px 16px;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    margin-top: 4px;
  }
  .dropdown a {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    font-size: 15px;
    border: 0 !important;
  }
  .hamburger { display: block; }
}

@media (max-width: 768px) {
  .process-flow { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .logo-icon { width: 38px; height: 38px; }
  .logo-mark { font-size: 22px; }
  .dtaa-visual { grid-template-columns: repeat(10, 1fr); }
  .trust-strip { gap: 16px; }
  .trust-strip img { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .section-heading h2 { font-size: 24px; }
  .cta-banner h2 { font-size: 22px; }
  .portrait img,
  .portrait-placeholder { width: 130px; height: 130px; }
  .portrait-placeholder { font-size: 32px; }
  .logo-tag { display: none; }
}
