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

:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-light: #fef2f2;
  --red-mid: #fee2e2;
  --black: #0f172a;
  --ink: #1e293b;
  --grey: #64748b;
  --muted: #94a3b8;
  --light: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-left { display: flex; align-items: center; gap: 36px; }
.nav-brand {
  font-size: 19px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 14px;
  color: var(--grey);
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.nav-phone span { color: var(--grey); font-weight: 400; font-size: 12px; margin-right: 4px; }
.nav-whatsapp {
  display: flex;
  align-items: center;
  color: #25D366;
  transition: opacity 0.15s;
}
.nav-whatsapp:hover { opacity: 0.75; }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); }

/* ─── HERO ─── */
.hero {
  padding: 80px 32px 64px;
  max-width: 1040px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px; min-width: 6px;
  background: var(--red);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -2px;
  max-width: 740px;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  font-size: 18px;
  color: var(--grey);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.hero-note {
  font-size: 13px;
  color: var(--muted);
}
.hero-note strong { color: var(--grey); font-weight: 600; }

/* ─── TRUST BAR ─── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 32px;
  background: var(--light);
}
.trust-bar-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
}
.trust-item::before {
  content: "";
  width: 16px; height: 16px; min-width: 16px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ─── OUTCOMES ─── */
.outcomes { background: var(--black); padding: 56px 32px; }
.outcomes-inner { max-width: 1040px; margin: 0 auto; }
.outcomes-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 28px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.outcome-item {
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid #1e293b;
}
.outcome-item:last-child { padding-right: 0; margin-right: 0; border-right: none; }
.outcome-sector {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 10px;
}
.outcome-stat {
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 10px;
}
.outcome-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── SHARED SECTION STYLES ─── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 14px;
}
.section-h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-body { font-size: 16px; color: var(--grey); line-height: 1.8; }

/* ─── HOW IT WORKS ─── */
.how { padding: 88px 32px; }
.how-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how-steps { display: flex; flex-direction: column; gap: 24px; padding-top: 52px; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-n {
  width: 30px; height: 30px; min-width: 30px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}
.step-text h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.step-text p { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* ─── LATE PAYMENT ACT ─── */
.lpa { background: var(--black); padding: 64px 32px; }
.lpa-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lpa-left .section-eyebrow { color: #f87171; }
.lpa-left .section-h2 { color: var(--white); }
.lpa-left .section-body { color: var(--muted); }
.lpa-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lpa-stat {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 20px;
}
.lpa-stat-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.lpa-stat-label { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ─── OBJECTIONS ─── */
.objections { background: var(--light); padding: 88px 32px; }
.obj-inner { max-width: 1040px; margin: 0 auto; }
.obj-header { max-width: 520px; margin-bottom: 48px; }
.obj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.obj-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
}
.obj-q { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 10px; line-height: 1.4; }
.obj-a { font-size: 14px; color: var(--grey); line-height: 1.75; }

/* ─── PULL QUOTE ─── */
.pull-quote { background: var(--red); padding: 72px 32px; text-align: center; }
.pull-quote-inner { max-width: 700px; margin: 0 auto; }
.pull-quote blockquote {
  font-size: clamp(19px, 2.8vw, 28px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.pull-quote-meta { font-size: 14px; color: rgba(255,255,255,0.6); }
.pull-quote-meta strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* ─── ABOUT US ─── */
.about { padding: 88px 32px; }
.about-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-points { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.about-point { display: flex; gap: 16px; align-items: flex-start; }
.about-point-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--red-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-point-icon svg { color: var(--red); }
.about-point-text h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.about-point-text p { font-size: 14px; color: var(--grey); line-height: 1.6; }
.about-right {
  background: var(--light);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
}
.about-right-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 16px;
}
.about-right h3 { font-size: 22px; font-weight: 800; color: var(--black); margin-bottom: 12px; letter-spacing: -0.5px; }
.about-right p { font-size: 14px; color: var(--grey); line-height: 1.75; margin-bottom: 20px; }
.about-right-stat {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-mini-num { font-size: 28px; font-weight: 900; color: var(--red); letter-spacing: -1px; line-height: 1; }
.about-mini-label { font-size: 12px; color: var(--grey); margin-top: 4px; }

/* ─── SECTORS ─── */
.sectors { background: var(--light); padding: 88px 32px; }
.sectors-inner { max-width: 1040px; margin: 0 auto; }
.sectors-header { max-width: 520px; margin-bottom: 48px; }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sector-item { border-top: 3px solid var(--red); padding-top: 20px; }
.sector-name { font-size: 17px; font-weight: 800; color: var(--black); margin-bottom: 10px; }
.sector-body { font-size: 14px; color: var(--grey); line-height: 1.75; margin-bottom: 14px; }
.sector-specifics { list-style: none; margin-bottom: 16px; }
.sector-specifics li {
  font-size: 13px;
  color: var(--ink);
  padding: 3px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.sector-specifics li::before { content: "–"; color: var(--red); font-weight: 700; flex-shrink: 0; }
.sector-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── PRICING ─── */
.pricing { background: var(--black); padding: 88px 32px; }
.pricing-inner { max-width: 1040px; margin: 0 auto; }
.pricing-header { max-width: 520px; margin-bottom: 48px; }
.pricing-header .section-eyebrow { color: #f87171; }
.pricing-header .section-h2 { color: var(--white); }
.pricing-header .section-body { color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pricing-card {
  background: #1e293b;
  border-radius: 12px;
  padding: 36px;
  border: 1px solid #334155;
  position: relative;
}
.pricing-card.featured { border-color: var(--red); }
.pricing-badge {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
}
.pricing-name { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.pricing-rate { font-size: 44px; font-weight: 900; color: var(--red); letter-spacing: -2px; line-height: 1; margin-bottom: 4px; }
.pricing-rate-note { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.pricing-compare {
  display: inline-block;
  background: rgba(220,38,38,0.15);
  color: #f87171;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 24px;
}
.pricing-features { list-style: none; border-top: 1px solid #334155; padding-top: 20px; }
.pricing-features li {
  font-size: 14px;
  color: #cbd5e1;
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(51,65,85,0.5);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: "";
  width: 16px; height: 16px; min-width: 16px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ─── FAQ ─── */
.faq { padding: 88px 32px; }
.faq-inner { max-width: 1040px; margin: 0 auto; }
.faq-header { max-width: 480px; margin-bottom: 48px; }
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--grey); line-height: 1.75; }

/* ─── AUDIT FORM ─── */
.audit { background: var(--black); padding: 88px 32px; }
.audit-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.audit-left .section-eyebrow { color: #f87171; }
.audit-left .section-h2 { color: var(--white); }
.audit-left .section-body { color: var(--muted); margin-bottom: 32px; }
.audit-promises { display: flex; flex-direction: column; gap: 14px; }
.promise-item { display: flex; gap: 12px; align-items: flex-start; }
.promise-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 7px;
}
.promise-text { font-size: 14px; color: #94a3b8; line-height: 1.6; }
.promise-text strong { color: var(--white); font-weight: 600; }
.audit-form {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
}
.audit-form-title { font-size: 17px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.audit-form-sub { font-size: 13px; color: var(--grey); margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--black);
  font-family: var(--font);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.file-label {
  display: block;
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s;
}
.file-label:hover { border-color: var(--red); }
.file-main { font-size: 13px; color: var(--grey); }
.file-main span { color: var(--red); font-weight: 700; }
.file-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
input[type="file"] { display: none; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s, transform 0.1s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-calendly { text-align: center; margin-top: 14px; font-size: 13px; color: var(--grey); }
.form-calendly a { color: var(--red); font-weight: 600; }
.form-calendly a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
footer { background: #020817; border-top: 1px solid #1e293b; padding: 56px 32px 32px; }
.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e293b;
}
.footer-brand-col { display: flex; flex-direction: column; gap: 12px; }
.footer-brand { font-size: 17px; font-weight: 900; color: var(--red); }
.footer-tagline { font-size: 13px; color: #64748b; line-height: 1.5; max-width: 220px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.footer-contact a { font-size: 13px; color: var(--muted); transition: color 0.15s; }
.footer-contact a:hover { color: white; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.footer-col a { font-size: 13px; color: var(--muted); transition: color 0.15s; line-height: 1; }
.footer-col a:hover { color: white; }
.footer-bottom { max-width: 1040px; margin: 0 auto; padding-top: 24px; }
.footer-legal { font-size: 12px; color: #475569; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 14px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--light);
}
.breadcrumb-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb-inner a { color: var(--grey); transition: color 0.15s; }
.breadcrumb-inner a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--border); }

/* ─── BLOG HERO ─── */
.blog-hero {
  padding: 64px 32px 48px;
  max-width: 1040px;
  margin: 0 auto;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-tag {
  background: var(--red-light);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
}
.blog-date { font-size: 13px; color: var(--muted); }
.blog-readtime { font-size: 13px; color: var(--muted); }
.blog-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -1.5px;
  max-width: 760px;
  margin-bottom: 20px;
}
.blog-hero-sub {
  font-size: 18px;
  color: var(--grey);
  max-width: 640px;
  line-height: 1.7;
}

/* ─── ARTICLE CONTENT ─── */
.article-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px 88px;
  display: grid;
  grid-template-columns: 720px 1fr;
  gap: 64px;
  align-items: start;
}
.article-content { max-width: 720px; }
.article-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  margin: 48px 0 16px;
  line-height: 1.25;
}
.article-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin: 32px 0 12px;
}
.article-content p {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-content ul, .article-content ol {
  margin: 0 0 20px 20px;
}
.article-content li {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 6px;
}
.article-content strong { color: var(--ink); font-weight: 700; }
.article-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--red-dark); }
.article-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ─── COMPARISON TABLE ─── */
.comp-table-wrap { overflow-x: auto; margin: 32px 0; border-radius: 12px; border: 1px solid var(--border); }
.comp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comp-table thead { background: var(--black); }
.comp-table thead th {
  padding: 14px 18px;
  color: var(--white);
  font-weight: 700;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.comp-table thead th:first-child { border-radius: 11px 0 0 0; }
.comp-table thead th:last-child { border-radius: 0 11px 0 0; }
.comp-table thead th.winner { color: #f87171; }
.comp-table tbody tr { border-bottom: 1px solid var(--border); }
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table tbody tr:nth-child(even) { background: var(--light); }
.comp-table tbody td { padding: 12px 18px; color: var(--grey); vertical-align: top; }
.comp-table tbody td:first-child { font-weight: 600; color: var(--ink); }
.comp-table .yes { color: #16a34a; font-weight: 700; }
.comp-table .no { color: #dc2626; font-weight: 700; }
.comp-table .win { color: var(--black); font-weight: 700; }

/* ─── COST BREAKDOWN BOX ─── */
.cost-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin: 24px 0;
}
.cost-box-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); margin-bottom: 16px; }
.cost-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--grey); }
.cost-row:last-child { border-bottom: none; }
.cost-row.total { font-weight: 800; color: var(--black); font-size: 15px; padding-top: 14px; }
.cost-row .amount { font-weight: 700; color: var(--ink); }
.cost-row.total .amount { color: var(--red); }

/* ─── ARTICLE SIDEBAR ─── */
.article-sidebar { position: sticky; top: 80px; }
.sidebar-cta {
  background: var(--black);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-cta-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #f87171; margin-bottom: 10px; }
.sidebar-cta h3 { font-size: 18px; font-weight: 800; color: var(--white); line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.3px; }
.sidebar-cta p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.sidebar-cta .btn-primary { width: 100%; text-align: center; font-size: 14px; }
.sidebar-toc { background: var(--light); border-radius: 12px; padding: 22px; border: 1px solid var(--border); }
.sidebar-toc-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grey); margin-bottom: 14px; }
.sidebar-toc ol { margin: 0 0 0 16px; }
.sidebar-toc li { font-size: 13px; color: var(--grey); padding: 4px 0; }
.sidebar-toc a { color: var(--grey); transition: color 0.15s; }
.sidebar-toc a:hover { color: var(--red); text-decoration: none; }

/* ─── BLOG LISTING ─── */
.blog-listing { padding: 64px 32px 88px; }
.blog-listing-inner { max-width: 1040px; margin: 0 auto; }
.blog-listing-header { max-width: 520px; margin-bottom: 48px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.blog-card-body { padding: 24px; }
.blog-card-tag {
  background: var(--red-light);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 17px; font-weight: 800; color: var(--black); line-height: 1.3; margin-bottom: 10px; letter-spacing: -0.3px; }
.blog-card p { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 16px; }
.blog-card-meta { font-size: 12px; color: var(--muted); display: flex; gap: 12px; }
.blog-card-link { display: inline-block; font-size: 13px; font-weight: 700; color: var(--red); margin-top: 12px; }
.blog-card-link:hover { text-decoration: underline; }

/* ─── LOCATION PAGE ─── */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--grey);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.location-badge::before {
  content: "📍";
  font-size: 14px;
}
.location-features { padding: 88px 32px; background: var(--light); }
.location-features-inner { max-width: 1040px; margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
}
.feature-icon {
  width: 40px; height: 40px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { color: var(--red); }
.feature-card h4 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* ─── CTA BAND ─── */
.cta-band { background: var(--red); padding: 72px 32px; text-align: center; }
.cta-band-inner { max-width: 600px; margin: 0 auto; }
.cta-band h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 32px; }
.btn-white {
  background: var(--white);
  color: var(--red);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  display: inline-block;
  transition: transform 0.1s, box-shadow 0.15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.cta-band-note { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 14px; }

/* ─── 404 ─── */
.not-found {
  padding: 120px 32px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.not-found h1 { font-size: 80px; font-weight: 900; color: var(--red); letter-spacing: -4px; line-height: 1; margin-bottom: 16px; }
.not-found h2 { font-size: 24px; font-weight: 800; color: var(--black); margin-bottom: 12px; }
.not-found p { font-size: 16px; color: var(--grey); line-height: 1.7; margin-bottom: 32px; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .article-wrap { grid-template-columns: 1fr; gap: 40px; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links, .nav-phone { display: none; }
  .hero { padding: 48px 16px 40px; }
  .trust-bar { padding: 12px 16px; }
  .trust-bar-inner { gap: 20px; }
  .outcomes { padding: 40px 16px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-item { padding: 20px 0; border-right: none; margin-right: 0; border-bottom: 1px solid #1e293b; }
  .outcome-item:last-child { border-bottom: none; }
  .how { padding: 56px 16px; }
  .how-inner { grid-template-columns: 1fr; gap: 40px; }
  .how-steps { padding-top: 0; }
  .lpa { padding: 56px 16px; }
  .lpa-inner { grid-template-columns: 1fr; gap: 40px; }
  .lpa-right { grid-template-columns: 1fr 1fr; }
  .objections { padding: 56px 16px; }
  .obj-grid { grid-template-columns: 1fr; }
  .pull-quote { padding: 56px 16px; }
  .about { padding: 56px 16px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .sectors { padding: 56px 16px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .pricing { padding: 56px 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq { padding: 56px 16px; }
  .audit { padding: 56px 16px; }
  .audit-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .blog-hero { padding: 40px 16px 32px; }
  .article-wrap { padding: 0 16px 56px; }
  .blog-listing { padding: 40px 16px 56px; }
  .blog-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .location-features { padding: 56px 16px; }
  .breadcrumb { padding: 12px 16px; }
  .cta-band { padding: 56px 16px; }
}
