/* =========================================================
   Al-Hisab A-Count Tax — Stylesheet
   Design tokens: Deep Navy / Off-white / Subtle Gold / Charcoal
   ========================================================= */

:root {
  --navy: #0F2143;
  --navy-deep: #081530;
  --navy-soft: #1C3A66;
  --offwhite: #FAF7F1;
  --white: #FFFFFF;
  --gold: #1E6F54;
  --gold-soft: #9BCBB5;
  --gold-tint: #E7F3EE;
  --charcoal: #2A2925;
  --charcoal-soft: #5B594F;
  --border: #E4DFD1;
  --border-dark: rgba(255,255,255,0.14);

  --font-head: 'Manrope', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --shadow-card: 0 1px 2px rgba(15,33,67,0.04), 0 8px 24px -12px rgba(15,33,67,0.12);
  --shadow-card-hover: 0 4px 8px rgba(15,33,67,0.05), 0 16px 32px -12px rgba(15,33,67,0.18);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; }

h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--gold);
}

.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head p { color: var(--charcoal-soft); font-size: 1.05rem; margin-top: 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section.alt { background: var(--white); }
.section.navy { background: var(--navy); color: rgba(255,255,255,0.86); }
.section.navy h2, .section.navy h3 { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-deep); box-shadow: 0 8px 20px -6px rgba(15,33,67,0.45); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #16543F; box-shadow: 0 8px 20px -6px rgba(30,111,84,0.5); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--navy); }
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--gold-soft); background: rgba(255,255,255,0.06); }
.btn-text {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.18s ease, gap 0.18s ease;
}
.btn-text:hover { border-color: var(--gold); }
.btn-block { width: 100%; justify-content: center; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,241,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px -10px rgba(15,33,67,0.15); }

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 33, 67, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand:hover .brand-logo {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 33, 67, 0.2);
}
.brand-logo-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--navy); letter-spacing: -0.01em; }
.brand-est { font-size: 0.62rem; letter-spacing: 0.16em; color: var(--gold); font-weight: 600; margin-top: 3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span { width: 22px; height: 2px; background: var(--navy); transition: transform 0.2s ease, opacity 0.2s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 82px 0 0 0;
  background: var(--offwhite);
  z-index: 99;
  padding: 20px 28px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 24px; }

/* ============ HERO ============ */
.hero {
  padding: 76px 0 60px;
  position: relative;
  background:
    radial-gradient(1100px 480px at 82% -10%, rgba(30,111,84,0.10), transparent 60%),
    var(--offwhite);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--charcoal-soft);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stats div { font-size: 0.85rem; color: var(--charcoal-soft); }
.hero-stats strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 0.98rem; font-weight: 700; margin-bottom: 2px; }

/* Ledger visual */
.hero-visual { position: relative; }
.ledger-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  color: var(--white);
  box-shadow: 0 30px 60px -20px rgba(8,21,48,0.45);
  position: relative;
}
.ledger-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 26px; }
.ledger-mark { width: 40px; height: 40px; border: 1.5px solid var(--gold-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: var(--gold-soft); font-size: 0.95rem; }
.ledger-tag { font-size: 0.68rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); text-transform: uppercase; }
.ledger-rows { border-top: 1px solid var(--border-dark); padding-top: 18px; }
.ledger-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-dark); font-size: 0.88rem; }
.ledger-row:last-child { border-bottom: none; }
.ledger-row span:first-child { color: rgba(255,255,255,0.65); }
.ledger-row span:last-child { font-family: var(--font-head); font-weight: 600; color: var(--white); }
.ledger-status {
  margin-top: 22px;
  background: rgba(155,203,181,0.14);
  border: 1px solid rgba(155,203,181,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ledger-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-soft); flex-shrink: 0; }

.ledger-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
}
.ledger-float-1 { top: -18px; left: -22px; }
.ledger-float-1 strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 1rem; }
.ledger-float-1 span { font-size: 0.72rem; color: var(--charcoal-soft); }
.ledger-float-2 { bottom: -20px; right: -18px; font-size: 0.78rem; color: var(--charcoal-soft); }
.ledger-float-2 strong { color: var(--gold); font-family: var(--font-head); }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 1.15rem; font-weight: 700; }
.trust-item span { font-size: 0.82rem; color: var(--charcoal-soft); }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  background: var(--gold-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
}
.about-visual .since {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-visual .since-label { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-top: 8px; font-weight: 600; }
.about-visual hr { border: none; border-top: 1px solid var(--border); margin: 26px 0; }
.about-founder strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 1.05rem; }
.about-founder span { font-size: 0.85rem; color: var(--charcoal-soft); }

.about-body p { color: var(--charcoal-soft); margin-bottom: 16px; font-size: 1.02rem; }
.about-body p:last-of-type { margin-bottom: 28px; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); border-color: var(--gold-soft); }
.service-num { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--charcoal-soft); font-size: 0.94rem; margin-bottom: 18px; }

/* ============ WHY CHOOSE ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.why-item { background: var(--white); padding: 36px 32px; }
.why-item h3 { margin-bottom: 10px; font-size: 1.15rem; }
.why-item p { color: var(--charcoal-soft); font-size: 0.94rem; }
.why-mark { font-family: var(--font-head); font-weight: 700; color: var(--gold); font-size: 1rem; margin-bottom: 14px; display: block; }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.price-card:hover { box-shadow: var(--shadow-card-hover); border-color: var(--gold-soft); }
.price-card.featured { border-color: var(--gold); position: relative; }
.price-badge {
  position: absolute; top: -12px; left: 22px;
  background: var(--gold); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 20px;
}
.price-name { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; color: var(--charcoal-soft); text-transform: uppercase; margin-bottom: 14px; }
.price-amount { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.price-desc { font-size: 0.86rem; color: var(--charcoal-soft); margin-bottom: 22px; flex-grow: 1; }
.pricing-note {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.pricing-note p:first-child { font-family: var(--font-head); color: var(--navy); font-weight: 600; margin-bottom: 6px; }
.pricing-note p.disclaimer { font-size: 0.8rem; color: var(--charcoal-soft); margin-top: 14px; }

/* ============ HOW IT WORKS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step-item { padding: 0 24px 0 0; position: relative; }
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px; right: -2px;
  width: calc(100% - 60px);
  border-top: 1.5px dashed var(--border);
}
.step-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold-soft); -webkit-text-stroke: 1px var(--gold); margin-bottom: 18px; }
.step-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-item p { font-size: 0.88rem; color: var(--charcoal-soft); }

/* ============ WHO WE HELP ============ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.who-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  color: rgba(255,255,255,0.9);
}
.who-card h3 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; padding-bottom: 16px; border-bottom: 1px solid var(--border-dark); }
.who-card ul li { padding: 8px 0; font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.who-card ul li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-soft); flex-shrink: 0; }

/* ============ TRUST / REVIEWS ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-card { padding: 8px 4px; }
.trust-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.trust-card p { font-size: 0.9rem; color: var(--charcoal-soft); }
.trust-card .why-mark { margin-bottom: 12px; }
.reviews-placeholder {
  margin-top: 52px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
}

/* ============ FAQ ============ */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
}
.faq-icon { flex-shrink: 0; margin-left: 20px; width: 20px; height: 20px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--navy); transition: transform 0.25s ease; }
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 1.5px; }
.faq-icon::after { top: 0; left: 9px; width: 1.5px; height: 20px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-a p { padding: 0 4px 22px; color: var(--charcoal-soft); font-size: 0.95rem; max-width: 640px; }

/* ============ STRONG CTA ============ */
.cta-band {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 56px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 1rem; }
/* ============ AREAS WE SERVE ============ */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin: 32px auto 0;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(15,33,67,0.04);
  transition: all 0.2s ease;
}
.area-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(15,33,67,0.08);
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.contact-info-card .brand-name { font-size: 1.3rem; }
.contact-info-card .brand-est { margin-bottom: 22px; }
.contact-founder { padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.contact-founder strong { display: block; font-family: var(--font-head); color: var(--navy); }
.contact-founder span { font-size: 0.85rem; color: var(--charcoal-soft); }
.contact-line { display: flex; gap: 14px; padding: 12px 0; font-size: 0.92rem; }
.contact-line .cl-label { color: var(--charcoal-soft); min-width: 58px; }
.contact-line .cl-value { color: var(--navy); font-weight: 500; }
.contact-info-card .btn { margin-top: 18px; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; font-family: var(--font-head); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--offwhite);
  color: var(--charcoal);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.78rem; color: var(--charcoal-soft); margin-top: 12px; text-align: center; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-est { color: var(--gold-soft); }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-head); }
.footer-col ul li { margin-bottom: 11px; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--gold-soft); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1F8A57;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(31,138,87,0.6);
  transition: transform 0.18s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* ============ SKIP LINK / FOCUS ============ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right .btn-primary { display: none; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; order: -1; }
  .hero { padding-top: 40px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 360px; margin: 0 auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .step-item:not(:last-child)::after { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }

  .cta-band { flex-direction: column; text-align: center; padding: 44px 28px; }
  .cta-band-buttons { justify-content: center; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .brand { gap: 10px; }
  .brand-logo { width: 38px; height: 38px; border-radius: 8px; }
  .brand-name { font-size: 1.05rem; }
  .brand-est { font-size: 0.58rem; }
  .section { padding: 64px 0; }
  h2 { font-size: 1.65rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .hero-ctas { width: 100%; }
  .ledger-float { display: none; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .cta-band-buttons .btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 400px) {
  .brand-logo { width: 34px; height: 34px; border-radius: 7px; }
  .brand-name { font-size: 0.95rem; }
  .brand-est { font-size: 0.54rem; }
}
