/* ===========================
   ARIHANT TAX & ADVISORY LLC
   style.css
   =========================== */

/* TOKENS */
:root {
  --navy:        #0D2B4E;
  --navy-80:     #1a3d6b;
  --navy-60:     #4a6b8a;
  --navy-10:     #f0f4f8;
  --gold:        #C9982A;
  --gold-light:  #f5e6c0;
  --gold-dark:   #a37920;
  --white:       #ffffff;
  --off-white:   #fafbfc;
  --text:        #1a1a2e;
  --text-muted:  #5a6a7a;
  --border:      #dde3ea;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 2px 16px rgba(13,43,78,0.08);
  --shadow-lg:   0 8px 40px rgba(13,43,78,0.14);
  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --max-w:       1140px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-80); border-color: var(--navy-80); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-nav {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  padding: 9px 20px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--gold-dark); }
.btn-full { width: 100%; }

/* LABELS */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 2rem;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(13,43,78,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 6px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark.small { width: 32px; height: 32px; font-size: 1.1rem; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.2;
}
.amp { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active { font-weight: 700; }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
  margin-left: auto;
}

/* =====================
   HERO (HOME)
   ===================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3d6b 60%, #0a1f38 100%);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-accent {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,152,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-block;
  background: rgba(201,152,42,0.2);
  border: 1px solid rgba(201,152,42,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-headline em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
}
.hero-trust span { display: flex; align-items: center; gap: 4px; }

/* =====================
   PAGE HERO (INNER PAGES)
   ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3d6b 100%);
  color: var(--white);
  padding: 64px 0 72px;
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 620px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  line-height: 1.7;
}

/* =====================
   SECTION: WHY ARIHANT
   ===================== */
.section-why {
  padding: 80px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* =====================
   SECTION: SERVICES SNAP
   ===================== */
.section-services-snap {
  padding: 80px 0;
  background: var(--navy-10);
}
.services-snap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.services-snap-text .section-label { margin-bottom: 0.5rem; }
.services-snap-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.services-snap-text p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.snap-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--navy);
}
.snap-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =====================
   SECTION: INDUSTRIES SNAP
   ===================== */
.section-industries-snap {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}
.pill {
  display: inline-block;
  padding: 9px 20px;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s;
}
.pill:hover { background: var(--navy); color: var(--white); }

/* =====================
   SECTION: CTA BAND
   ===================== */
.section-cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3d6b 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.section-cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}
.section-cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 40px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 12px; }
.footer-firm { font-family: var(--font-serif); font-size: 1rem; color: var(--white); }
.footer-tag { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =====================
   ABOUT PAGE
   ===================== */
.section-founder {
  padding: 80px 0;
  background: var(--white);
}
.founder-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.founder-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  display: block;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow);
}
.founder-photo-placeholder {
  width: 220px;
  height: 220px;
  background: var(--navy-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  margin: 0 auto 1.5rem;
}
.founder-initials {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--navy);
  font-weight: 400;
}
.founder-credentials { display: flex; flex-direction: column; gap: 0.5rem; }
.credential-badge {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 4px;
  text-align: center;
}
.founder-bio .section-label { margin-bottom: 0.25rem; }
.founder-bio h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.founder-tagline {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.founder-bio p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.founder-specialties {
  background: var(--navy-10);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.5rem;
}
.founder-specialties h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.founder-specialties li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 3px 0;
  list-style: disc;
  margin-left: 1.2rem;
}

/* Career at a glance (About page) */
.section-career {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.section-career .section-title { margin-bottom: 2.5rem; }
.career-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.career-path::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}
.career-step { position: relative; padding-top: 28px; }
.career-step-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
}
.career-step h4 {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.career-step p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-values {
  padding: 80px 0;
  background: var(--navy-10);
}
.section-values .section-title { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.value-num {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.section-credentials { padding: 80px 0; background: var(--white); }
.section-credentials .section-title { text-align: center; margin-bottom: 3rem; }
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.cred-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.cred-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.ea-logo { height: 60px; width: auto; display: inline-block; vertical-align: middle; }
.cred-item h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.cred-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* =====================
   SERVICES PAGE
   ===================== */
.section-service-block {
  padding: 72px 0;
  background: var(--white);
}
.section-service-block.alt-bg { background: var(--navy-10); }
.service-block-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.service-block-icon { font-size: 2.5rem; flex-shrink: 0; padding-top: 4px; }
.service-block-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  line-height: 1.2;
  margin-top: 0.25rem;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
}
.alt-bg .service-card { background: var(--white); }
.service-card:hover { box-shadow: var(--shadow-lg); }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.25;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.service-includes {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--navy-10);
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  line-height: 1.5;
}
.service-fee {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 7px;
}
.service-fee::before {
  content: "→";
  color: var(--gold);
  font-weight: 700;
}
/* Jump nav (Services page) */
.section-jumpnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px; /* below the main navbar */
  z-index: 90;
}
.jumpnav-inner {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  white-space: nowrap;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  -webkit-overflow-scrolling: touch;
}
.jumpnav-inner a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.15s;
}
.jumpnav-inner a:hover { color: var(--gold-dark); }
[id] { scroll-margin-top: 130px; } /* anchor targets clear the sticky bars */

/* FAQ (Services page) */
.section-faq {
  padding: 72px 0 24px;
  background: var(--white);
}
.section-faq .section-title { margin-bottom: 1.5rem; }
.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 3rem 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item summary:hover { color: var(--navy-80); }
.faq-item p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
}

.section-pricing-note {
  padding: 60px 0;
  background: var(--white);
}
.pricing-note-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3d6b 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-note-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.pricing-note-inner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* =====================
   INDUSTRIES PAGE
   ===================== */
.section-industries-full { padding: 72px 0; }
.industry-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.industry-card:last-child { border-bottom: none; }
.industry-card-icon {
  font-size: 2.8rem;
  padding-top: 4px;
  text-align: center;
}
.industry-card-content h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.industry-card-content > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.industry-highlights {
  background: var(--navy-10);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.industry-highlights h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.industry-highlights li {
  font-size: 0.88rem;
  color: var(--text-muted);
  list-style: disc;
  margin-left: 1.2rem;
  padding: 2px 0;
  line-height: 1.55;
}

/* =====================
   CONTACT PAGE
   ===================== */
.section-contact { padding: 72px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.contact-form-sub { color: var(--text-muted); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem; /* 16px minimum — prevents iPhone auto-zoom when tapping form fields */
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; }
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}
.contact-info-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--navy-10);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-detail strong { display: block; color: var(--navy); font-weight: 600; }
.contact-detail a { color: var(--gold-dark); font-weight: 500; }
.expect-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  align-items: flex-start;
}
.expect-step:last-child { margin-bottom: 0; }
.expect-num {
  width: 26px;
  height: 26px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.expect-step strong { color: var(--navy); }
.languages-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .values-grid, .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  .nav-inner { gap: 0; }

  .hero { padding: 56px 0 72px; }
  .hero-headline { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }

  .why-grid, .values-grid, .cred-grid, .service-cards { grid-template-columns: 1fr; }
  .career-path { grid-template-columns: 1fr; gap: 1.5rem; }
  .career-path::before { top: 8px; bottom: 8px; left: 7px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%); }
  .career-step { padding-top: 0; padding-left: 32px; }
  .services-snap-inner, .founder-inner, .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .industry-card { grid-template-columns: 1fr; }
  .industry-card-icon { text-align: left; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .section-cta-band { padding: 52px 0; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .service-block-header { flex-direction: column; gap: 0.75rem; }
}

/* =====================
   NAV MOBILE OPEN (robust push-down — scales to any number of links)
   ===================== */
@media (max-width: 768px) {
  .navbar.open .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 1.25rem;
    row-gap: 0.5rem;
  }
  .navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .navbar.open .nav-links a { padding: 4px 0; }
  .navbar.open .btn-nav {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
  }
}

/* =====================
   CONTACT FORM MESSAGES
   ===================== */
.form-message {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}
.form-message.success {
  background: #e8f5ee;
  border: 1px solid #b7e0c6;
  color: #1f6b40;
}
.form-message.error {
  background: #fdecea;
  border: 1px solid #f5c4bd;
  color: #a4332a;
}
