/* =========================================================
   Khanya Payroll — Landing Page Styles
   Mobile-first, fast-loading, conversion-optimised
   ========================================================= */

/* ---------- CSS Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette — SA-inspired professional */
  --navy:        #0a2c4f;
  --navy-deep:   #061a30;
  --navy-soft:   #14385f;
  --green:       #10b981;   /* SA green vibe, modern */
  --green-deep:  #047857;
  --gold:        #f59e0b;
  --red:         #dc2626;
  --amber:       #f59e0b;

  --bg:          #ffffff;
  --bg-soft:     #f6f9fc;
  --bg-cream:    #fbfaf6;
  --border:      #e3e9ef;
  --border-soft: #eef2f7;

  --text:        #0f1c2e;
  --text-soft:   #4a5a6e;
  --text-mute:   #6b7888;
  --text-light:  #c9d3df;

  --shadow-sm:   0 1px 2px rgba(10, 44, 79, .06), 0 1px 3px rgba(10, 44, 79, .04);
  --shadow-md:   0 4px 12px rgba(10, 44, 79, .08), 0 2px 4px rgba(10, 44, 79, .04);
  --shadow-lg:   0 12px 32px rgba(10, 44, 79, .12), 0 4px 8px rgba(10, 44, 79, .06);
  --shadow-xl:   0 24px 60px rgba(10, 44, 79, .18);

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --container:   1160px;
  --container-narrow: 920px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Ensure no element ever exceeds viewport width on mobile */
img, svg, video, table, pre, code { max-width: 100%; }
section, header, footer, main, nav, aside, .container { max-width: 100%; }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(16, 185, 129, .1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow.light {
  color: var(--green);
  background: rgba(16, 185, 129, .15);
}

.section-head h2 {
  font-size: clamp(26px, 4.5vw, 38px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  color: var(--navy);
}

.subhead {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-soft);
  line-height: 1.6;
}
.subhead.light { color: var(--text-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, .35);
}
.btn-primary:hover { background: var(--green-deep); box-shadow: 0 6px 20px rgba(16, 185, 129, .45); }

.btn-accent {
  background: var(--gold);
  color: #1a1305;
  box-shadow: 0 4px 14px rgba(245, 158, 11, .35);
}
.btn-accent:hover { background: #d97706; box-shadow: 0 6px 20px rgba(245, 158, 11, .45); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--bg-soft); }

/* ---------- Notice Bar ---------- */
.notice-bar {
  background: var(--navy-deep);
  color: #d8e2ee;
  font-size: 14px;
  padding: 8px 0;
  text-align: center;
}
.notice-bar strong { color: var(--gold); }
.notice-bar a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.notice-bar a:hover { color: #34d399; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -.01em;
}
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: var(--green);
  font-weight: 900;
  font-size: 18px;
  border-radius: 8px;
}
.logo-text strong { font-weight: 800; }

.nav-desktop {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-desktop a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color .15s;
}
.nav-desktop a:hover { color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 12px;
  margin: -4px;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 24px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mobile-menu a {
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a.btn {
  border: none;
  margin-top: 12px;
  color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(16, 185, 129, .08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(245, 158, 11, .06) 0%, transparent 60%),
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
  padding: 48px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  background: #fff;
  border: 1px solid rgba(16, 185, 129, .25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--navy);
  margin-bottom: 18px;
}
.hero h1 .highlight {
  background: linear-gradient(120deg, var(--green) 0%, var(--green-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero .lead {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero .lead strong { color: var(--navy); font-weight: 700; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
}
.hero-trust svg { color: var(--green); }

/* Hero card (mock payslip) */
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 420px;
  margin-inline: auto;
  width: 100%;
  min-width: 0;
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-amber { background: #febc2e; }
.dot-green { background: #28c840; }
.hero-card-title {
  margin-left: 10px;
  font-size: 12px;
  color: var(--text-mute);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.hero-card-body { padding: 20px 22px 22px; min-width: 0; }
.hero-card-body .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--border-soft);
  color: var(--text-soft);
  min-width: 0;
}
.hero-card-body .row span {
  min-width: 0;
}
.hero-card-body .row span:last-child {
  font-variant-numeric: tabular-nums;
  color: var(--text);
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}
/* (merged above) */
.hero-card-body .row.total {
  border-top: 2px solid var(--navy);
  border-bottom: none;
  margin-top: 8px;
  padding-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.hero-card-body .row.total span:last-child { color: var(--green-deep); }

.hero-card-foot {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-deep);
  background: rgba(16, 185, 129, .1);
  padding: 5px 10px;
  border-radius: 999px;
}

/* Trust strip */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 14px 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-strip span { font-size: 13px; color: var(--text-light); font-weight: 500; white-space: nowrap; }
.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.trust-strip li {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
  position: relative;
  white-space: nowrap;
}
.trust-strip li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
}

/* ---------- Pain Section ---------- */
.pain {
  padding: 80px 0;
  background: var(--bg-soft);
}
.pain-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 38, 38, .25);
}
.pain-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: rgba(220, 38, 38, .08);
  color: var(--red);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pain-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}
.pain-card strong { color: var(--navy); font-weight: 700; }

/* ---------- Services ---------- */
.services {
  padding: 80px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.service-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
  background: #fff;
}
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--green);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}
.service-card strong { color: var(--navy); font-weight: 700; }

/* ---------- Why Us ---------- */
.why-us {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, .12) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-copy h2 {
  font-size: clamp(26px, 4.5vw, 38px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  color: #fff;
}
.why-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 32px;
}
.why-list li {
  display: grid;
  gap: 4px;
  padding-left: 0;
}
.why-list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 2px;
}
.why-list span {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: transform .2s, background .2s;
}
.stat:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-2px);
}
.stat-num {
  display: block;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
  display: block;
}

/* ---------- Pricing ---------- */
.pricing {
  padding: 80px 0;
  background: var(--bg-soft);
}
.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.plan-featured {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f6fdf9 100%);
}
.plan-featured:hover { transform: translateY(-5px); }

.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, .35);
  white-space: nowrap;
}

.plan-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.plan-head p {
  font-size: 14px;
  color: var(--text-mute);
  margin-bottom: 20px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.plan-price .currency { font-size: 22px; font-weight: 700; color: var(--navy); }
.plan-price .amount {
  font-size: clamp(40px, 8vw, 52px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--navy);
  line-height: 1;
}
.plan-price .per { font-size: 14px; color: var(--text-mute); font-weight: 500; }
.plan-min {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}
.plan-features {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-features li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.5;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 12px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.plan-features li strong { display: block; color: var(--navy); font-weight: 700; margin-bottom: 4px; }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 32px;
}

/* ---------- Process ---------- */
.process {
  padding: 80px 0;
  background: #fff;
}
.process-track {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--green);
  font-weight: 900;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--navy);
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 80px 0;
  background: var(--bg-cream);
}
.testi-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.testi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testi blockquote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
  flex: 1;
  position: relative;
  padding-left: 0;
}
.testi blockquote::before {
  content: '\201C';
  display: block;
  font-size: 56px;
  line-height: .8;
  color: var(--green);
  font-family: Georgia, serif;
  margin-bottom: 8px;
  opacity: .35;
}
.testi figcaption strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}
.testi figcaption span {
  display: block;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 2px;
}
.testi-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
  font-style: italic;
  margin-top: 32px;
}

/* ---------- Audit / Lead Form ---------- */
.audit {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.audit::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, .08) 0%, transparent 70%);
  pointer-events: none;
}
.audit-card {
  display: grid;
  gap: 40px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
}
.audit-copy h2 {
  font-size: clamp(26px, 4.5vw, 36px);
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.audit-bullets {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.audit-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-light);
}
.audit-bullets svg { color: var(--green); flex-shrink: 0; }

.audit-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xl);
}
.form-row {
  margin-bottom: 16px;
}
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .15);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-foot {
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.hp-field { display: none; }

/* ---------- FAQ ---------- */
.faq {
  padding: 80px 0;
  background: var(--bg-soft);
}
.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--green);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
}
.faq-item p strong { color: var(--navy); font-weight: 700; }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(16, 185, 129, .12) 0%, transparent 70%),
    linear-gradient(135deg, #fff 0%, var(--bg-soft) 100%);
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.final-cta p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 560px;
  margin-inline: auto;
}
.final-sub {
  margin-top: 18px !important;
  font-size: 14px !important;
  color: var(--text-mute) !important;
}
.final-sub a { color: var(--green-deep); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--text-light);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.logo-light .logo-mark { background: var(--green); color: var(--navy-deep); }
.logo-light .logo-text { color: #fff; }
.logo-light .logo-text strong { color: var(--green); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-compliance span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .25);
  padding: 5px 10px;
  border-radius: 999px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col span {
  font-size: 14px;
  color: var(--text-light);
  transition: color .15s;
}
.footer-col a:hover { color: var(--green); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact svg { color: var(--green); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: grid;
  gap: 8px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
}
.footer-bottom a { color: var(--green); }
.footer-bottom a:hover { color: #34d399; }
.footer-disclaimer { font-size: 12px !important; opacity: .7; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  z-index: 90;
  transition: transform .2s, box-shadow .2s;
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .55);
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); }
  50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* =========================================
   RESPONSIVE — Tablet & Desktop
   ========================================= */

@media (min-width: 600px) {
  .pain-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
  .audit-card { padding: 48px 40px; }
  .audit-form { padding: 36px; }
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }

  .hero { padding-top: 64px; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
  .hero-card { max-width: none; }

  .pain-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .process-track { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .step { padding: 24px 20px; }
  .step h3 { font-size: 16px; }
  .step p { font-size: 14px; }

  .why-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
  .audit-card { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
}

@media (min-width: 992px) {
  .container { padding-inline: 32px; }
  .hero { padding-top: 80px; }
  .hero h1 { font-size: 50px; }
  .pain, .services, .why-us, .pricing, .process, .testimonials, .audit, .faq, .final-cta {
    padding-block: 100px;
  }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .plan { padding: 36px 28px; }
  .plan-featured { transform: scale(1.04); }
  .plan-featured:hover { transform: scale(1.04) translateY(-5px); }
  .why-stats { gap: 20px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .whatsapp-fab { animation: none; }
}

/* ---------- Print ---------- */
@media print {
  .notice-bar, .nav-toggle, .whatsapp-fab, .hero-ctas, .audit-form button { display: none; }
  .site-header { position: static; }
  body { color: #000; background: #fff; }
}
