/* ══════════════════════════════════════════════════════════
   SAATHI CAREERS — GLOBAL STYLESHEET
   Design language: Warm cream/saffron/teal — matches index.html
   ══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #1a1814;
  --ink-soft:  #4a4640;
  --ink-muted: #8a857e;
  --cream:     #faf7f2;
  --cream2:    #f2ede4;
  --cream3:    #e8e0d2;
  --saffron:   #e8602c;
  --saffron-d: #c04a1e;
  --saffron-l: #fde8df;
  --teal:      #1d6b5f;
  --teal-l:    #e0f0ed;
  --teal-d:    #144e45;
  --gold:      #c9922a;
  --gold-l:    #fdf3e0;
  --white:     #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(26,24,20,.06);
  --shadow-md: 0 8px 32px rgba(26,24,20,.10);
  --shadow-lg: 0 16px 56px rgba(26,24,20,.14);
  --nav-h:     64px;
  --max-w:     1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
section { padding: 88px 7%; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 14px;
}
.eyebrow::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--saffron); flex-shrink:0; }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -.025em; color: var(--ink);
  margin-bottom: 16px;
}
.section-title.light { color: white; }

.section-sub {
  font-size: 16px; color: var(--ink-soft);
  font-weight: 300; line-height: 1.7;
  max-width: 540px;
}
.section-sub.light { color: rgba(255,255,255,.6); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--saffron); color: white;
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--saffron-d); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  border: 1.5px solid var(--cream3);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--ink-soft); background: var(--cream2); }

.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: white;
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: background .2s, transform .15s;
}
.btn-teal:hover { background: var(--teal-d); transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--teal);
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: background .2s;
}
.btn-white:hover { background: var(--teal-l); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }

/* ── NAV ─────────────────────────────────────────────────── */
nav#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream3);
  display: flex; align-items: center;
  padding: 0 5%;
  transition: box-shadow .3s;
  overflow: visible;
}
nav#mainNav.scrolled { box-shadow: 0 4px 24px rgba(26,24,20,.08); }

.nav-inner {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  gap: 12px; min-width: 0;
}

.nav-brand { display: flex; align-items: center; min-width: 0; }
.nav-brand img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex; gap: 4px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--ink-soft);
  padding: 8px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--saffron); background: var(--saffron-l); }
.nav-links a.active { color: var(--saffron); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-cta {
  background: var(--saffron); color: white;
  padding: 9px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--saffron-d); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  border-radius: 8px; padding: 9px;
  cursor: pointer; background: none; border: none;
  flex-shrink: 0; z-index: 1001;
  transition: background .2s;
}
.nav-hamburger:hover { background: var(--cream2); }
.nav-hamburger span {
  display: block; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all .3s;
  width: 100%;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile dropdown */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(250,247,242,.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream3);
  padding: 12px 5% 24px;
  flex-direction: column; gap: 2px;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(26,24,20,.12);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
  animation: fadeDown .22s ease;
}
.mobile-nav a {
  font-size: 15px; font-weight: 400; color: var(--ink-soft);
  padding: 13px 14px; border-radius: 8px;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover { background: var(--cream2); color: var(--saffron); }
.mobile-nav-divider { height: 1px; background: var(--cream3); margin: 8px 0; }
.mobile-nav-cta {
  display: block;
  background: var(--saffron); color: white !important;
  text-align: center; border-radius: 100px;
  padding: 13px 14px !important;
  margin-top: 4px; font-weight: 500 !important;
  transition: background .2s !important;
}
.mobile-nav-cta:hover { background: var(--saffron-d) !important; }

/* ── PAGE HEADER (inner pages) ───────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 64px) 7% 72px;
  background: linear-gradient(135deg, var(--teal-d) 0%, var(--teal) 60%, #2a8a7a 100%);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top:-60px; right:-80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.page-header::after {
  content: ''; position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-header-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,.4); }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: white; line-height: 1.12;
  margin-bottom: 18px;
}
.page-header p { font-size: 17px; color: rgba(255,255,255,.8); line-height: 1.7; max-width: 620px; }
.page-header-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 64px 5% 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo-img { height: 80px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.42); font-weight: 300; margin: 14px 0 22px; line-height: 1.65; max-width: 240px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.5);
  transition: border-color .2s, color .2s, background .2s;
  cursor: pointer;
}
.footer-social:hover { border-color: var(--saffron); color: var(--saffron); }
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: rgba(255,255,255,.32);
  margin-bottom: 18px;
}
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.52); margin-bottom: 11px; transition: color .2s; font-weight: 300; }
.footer-col a:hover { color: white; }
.footer-contact-line { font-size: 14px; color: rgba(255,255,255,.52); margin-bottom: 10px; line-height: 1.5; }
.footer-contact-line a { color: rgba(255,255,255,.68); transition: color .2s; display: inline; }
.footer-contact-line a:hover { color: white; }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: white;
  font-size: 13px; font-weight: 500;
  padding: 9px 16px; border-radius: 8px;
  margin-top: 8px; transition: background .2s;
}
.footer-wa-btn:hover { background: #1aab52; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.28);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.42); transition: color .2s; }
.footer-bottom a:hover { color: white; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 990;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.wa-tooltip {
  background: white; border-radius: 12px; padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 13px; color: var(--ink);
  max-width: 220px; line-height: 1.5;
  border: 1px solid var(--cream3);
  display: none;
}
.wa-tooltip.visible { display: block; animation: fadeIn .25s ease; }
.wa-tooltip strong { display: block; margin-bottom: 3px; font-size: 14px; }
.wa-tooltip span { color: var(--ink-muted); }
.wa-btn {
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.wa-btn svg { width: 30px; height: 30px; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  padding: 84px 7%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content:''; position:absolute; top:-50%; right:-8%;
  width:500px; height:500px; border-radius:50%;
  background:rgba(29,107,95,.15); pointer-events:none;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; color: white;
  line-height: 1.15; margin-bottom: 14px;
}
.cta-band p { font-size: 17px; color: rgba(255,255,255,.6); font-weight: 300; line-height: 1.65; margin-bottom: 36px; max-width: 520px; margin-left:auto; margin-right:auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: rgba(255,255,255,.35); margin-top: 14px; }

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--ink-soft); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: white; border: 1px solid var(--cream3);
  border-radius: var(--radius); padding: 11px 16px;
  font-family: inherit; font-size: 14px; color: var(--ink);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,96,44,.1);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; cursor: pointer; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; background: var(--saffron); color: white;
  border: none; cursor: pointer;
  padding: 14px 32px; border-radius: 100px;
  font-family: inherit; font-size: 15px; font-weight: 500;
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--saffron-d); transform: translateY(-1px); }
.form-submit:disabled { background: var(--ink-muted); transform: none; cursor: not-allowed; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: white; border: 1px solid var(--cream3);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow .25s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Service card */
.service-card {
  background: var(--cream); border: 1px solid var(--cream3);
  border-radius: var(--radius-lg); padding: 28px;
  text-decoration: none; color: inherit; display: block;
  position: relative; overflow: hidden;
  transition: all .25s;
}
.service-card::after {
  content:''; position:absolute; inset:0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color .25s;
  pointer-events: none;
}
.service-card:hover { background: white; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card:hover::after { border-color: var(--saffron); }
.service-icon {
  width: 48px; height: 48px; background: var(--saffron-l);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 18px;
}
.service-card h3 { font-size: 17px; font-weight: 500; margin-bottom: 8px; color: var(--ink); }
.service-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; font-weight: 300; }
.service-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--saffron);
  margin-top: 16px; opacity: 0; transform: translateX(-6px);
  transition: opacity .2s, transform .2s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-item {
  background: white; border: 1px solid var(--cream3);
  border-radius: var(--radius-lg); margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  font-size: 15px; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.faq-icon { font-size: 20px; color: var(--ink-muted); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--saffron); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ── TESTIMONIAL CARDS ───────────────────────────────────── */
.testi-card {
  background: white; border: 1px solid var(--cream3);
  border-radius: var(--radius-lg); padding: 28px;
}
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; margin-bottom: 14px; }
.testi-text {
  font-size: 15px; color: var(--ink-soft); line-height: 1.7;
  font-style: italic; font-weight: 300; margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.testi-meta { font-size: 12px; color: var(--ink-muted); }

/* ── PROCESS SECTION ─────────────────────────────────────── */
.process-section { background: var(--ink); }
.process-section .eyebrow { color: var(--gold); }
.process-section .eyebrow::before { background: var(--gold); }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; position: relative;
}
.process-grid::before {
  content:''; position:absolute;
  top:28px; left:80px; right:80px;
  height:1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.12), transparent);
}
.process-step { text-align: center; padding: 0 12px; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--gold);
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.process-step h3 { font-size: 16px; font-weight: 500; color: white; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.6; font-weight: 300; }

/* ── STAT BLOCKS ─────────────────────────────────────────── */
.stat-block { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 6px; }

/* ── OFFER GRID (service pages) ──────────────────────────── */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.offer-card {
  background: white; border: 1px solid var(--cream3);
  border-radius: var(--radius-lg); padding: 26px;
  transition: box-shadow .25s, transform .2s;
}
.offer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.offer-icon { font-size: 28px; margin-bottom: 12px; }
.offer-title { font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.offer-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.65; }

/* ── PROCESS ROWS (service pages) ───────────────────────── */
.proc-row { display: flex; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--cream3); }
.proc-row:last-child { border-bottom: none; }
.proc-num-circle {
  width: 46px; height: 46px; min-width: 46px; border-radius: 50%;
  background: var(--saffron-l); color: var(--saffron-d);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.proc-title { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.proc-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.65; }

/* ── BLOG CARDS ──────────────────────────────────────────── */
.blog-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--cream3);
  transition: box-shadow .25s, transform .2s;
  display: block; text-decoration: none; color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-thumb {
  height: 180px; display: flex; align-items: center;
  justify-content: center; font-size: 48px;
}
.blog-card-body { padding: 22px; }
.blog-tag {
  font-size: 11px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.4; margin-bottom: 10px; }
.blog-card p { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }
.blog-read { font-size: 13px; font-weight: 500; color: var(--saffron); margin-top: 14px; display: inline-block; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-cta  { display: none !important; }
  .nav-hamburger { display: flex !important; }
  /* Logo cannot exceed available width minus hamburger space (44px) + padding + gap */
  .nav-brand { min-width: 0; max-width: calc(100% - 60px); }
  .nav-brand img { max-width: 100%; height: auto; max-height: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .form-grid2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* ── TOKENS ── */
  :root { --nav-h: 104px; }
  .container { padding: 0 16px; }
  section { padding: 64px 5%; }

  /* ── NAV ── */
  nav#mainNav { padding: 0 4%; height: 104px; }
  .nav-inner { gap: 10px; }
  .nav-brand { min-width: 0; flex: 1; overflow: hidden; }
  .nav-brand img {
    height: 80px;
    width: auto;
    max-width: calc(100vw - 80px);
    object-fit: contain;
    object-position: left center;
  }
  .nav-hamburger {
    width: 44px !important; height: 44px !important;
    min-width: 44px !important; flex-shrink: 0 !important;
  }
  .mobile-nav { top: 104px; }

  /* ── PAGE HEADER (inner pages) ──
     200px = 104px nav + 96px breathing room — hardcoded, no variables */
  .page-header {
    padding-top: 200px !important;
    padding-bottom: 56px;
    padding-left: 5%;
    padding-right: 5%;
  }
  .page-header h1 { font-size: 1.9rem; }
  .page-header-actions { flex-direction: column; }

  /* ── FOOTER LOGO ── */
  .footer-logo-img { height: 90px; }

  /* ── LAYOUT ── */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }

  /* ── MISC ── */
  .cta-actions { flex-direction: column; align-items: center; }
  .wa-float { bottom: 18px; right: 18px; }
  .wa-btn { width: 52px; height: 52px; }
}