/* ============================================================
   Let's Get 2 Business — main.css
   ============================================================ */

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

:root {
  --brand:        #1a5fb4;
  --brand-dark:   #0d3b7a;
  --brand-mid:    #2470cc;
  --brand-light:  #e8f0fc;
  --accent:       #ffffff;
  --accent-dark:  #e8edf5;
  --off-white:    #f7f8fc;
  --white:        #ffffff;
  --text:         #1a1a2e;
  --text-muted:   #5a6070;
  --border:       #d8dde8;
  --radius:       14px;
  --radius-sm:    8px;
  --nav-h:        60px;
  --section-v:    64px;
  --max-w:        1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: var(--brand); }

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

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-dark);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-logo-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 13.5px;
  text-decoration: none;
  padding: 0 14px;
  white-space: nowrap;
  transition: color .15s;
}

.nav-links a:hover { color: #fff; }
.nav-links a.nav-active { color: #fff; border-bottom: 2px solid rgba(255,255,255,0.7); padding-bottom: 2px; }

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

.nav-phone {
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-phone:hover { color: #fff; }

.nav-signin {
  background: var(--accent);
  color: var(--brand-dark);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background .15s;
}

.nav-signin:hover { background: var(--accent-dark); color: var(--brand-dark); }

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #fff;
  font-size: 22px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--brand-dark);
  position: relative;
  overflow: hidden;
  padding: 72px 0 108px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-bg-circle {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  right: -120px; top: -140px;
  pointer-events: none;
}

.hero-bg-circle2 {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(244,161,29,0.07);
  left: 38%; bottom: 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: #38bdf8;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--accent); }

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: background .15s, transform .1s;
}

.btn-primary:hover { background: var(--accent-dark); color: var(--brand-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.38);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: border-color .15s, background .15s;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); color: #fff; }

.btn-primary-blue {
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: background .15s;
}

.btn-primary-blue:hover { background: var(--brand-mid); color: #fff; }

/* ── Hero scanner panel ───────────────────────────────────── */
.hero-panel {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
}

.hero-panel-title {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 16px;
}

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 4px;
}

.score-label { color: rgba(255,255,255,0.82); font-size: 13.5px; }

.score-val {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}

.score-good { background: rgba(52,199,89,.15); color: #52c759; }
.score-warn { background: rgba(244,161,29,.15); color: #f4c060; }

.score-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}

.score-fill { height: 100%; border-radius: 2px; }
.score-fill-g { background: #52c759; }
.score-fill-w { background: #f4c060; }

/* ── Stats bar ────────────────────────────────────────────── */
.stats-wrap {
  background: var(--off-white);
  padding: 0 32px;
}

.stats-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 4px 12px;
}

.stat-item + .stat-item { border-left: 0.5px solid var(--border); }

.stat-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  display: block;
  margin-bottom: 3px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: var(--section-v) 0;
  background: var(--off-white);
}

.section.bg-white { background: var(--white); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--brand);
  margin-bottom: 8px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.65;
}

/* ── Scanner strip ────────────────────────────────────────── */
.scanner-strip {
  background: var(--brand);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.scanner-strip h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}

.scanner-strip p {
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
}

.scanner-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.scanner-input {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  width: 240px;
  outline: none;
}

.scanner-input::placeholder { color: rgba(255,255,255,0.45); }
.scanner-input:focus { border-color: rgba(255,255,255,0.6); }

.scanner-btn {
  background: #fff;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}

.scanner-btn:hover { background: var(--accent-dark); }

/* ── Service cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .15s, border-color .15s;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-light);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
}

.service-card.accent::before { background: var(--accent); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 22px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--brand);
  margin-top: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap .15s;
}

.service-link:hover { gap: 8px; }

.service-card-cta {
  border: 1.5px dashed var(--border) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  min-height: 180px;
}

.service-card-cta::before { display: none; }

.service-card-cta i {
  font-size: 26px;
  color: var(--text-muted);
}

.service-card-cta p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-card-cta a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

/* ── Why choose us ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-visual {
  background: var(--brand-light);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.why-accent-circle {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  background: var(--brand-mid);
  border-radius: 50%;
  opacity: .12;
}

.why-accent-circle2 {
  position: absolute;
  top: -36px; left: -36px;
  width: 110px; height: 110px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .18;
}

.why-person { position: relative; z-index: 1; }

.why-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.why-person-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 2px;
}

.why-person-title { font-size: 13px; color: var(--text-muted); }

.testimonial {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 20px;
  position: relative;
  z-index: 1;
}

.stars { color: var(--accent); font-size: 15px; margin-bottom: 8px; }

.testimonial-quote {
  font-size: 13.5px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.55;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item { display: flex; align-items: flex-start; gap: 14px; }

.why-check {
  width: 24px; height: 24px;
  min-width: 24px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 13px;
  margin-top: 2px;
}

.why-text strong {
  font-weight: 700;
  color: var(--text);
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.why-text span {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--brand-dark);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  margin-bottom: 28px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #091830;
  padding: 24px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img { height: 32px; width: auto; opacity: .75; }

.footer-logo-text {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.footer-copy {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  text-decoration: none;
  transition: color .15s;
}

.footer-links a:hover { color: #ffffff; }

/* ── Tighter section spacing ──────────────────────────────── */
:root { --section-v: 48px; }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--brand-dark);
  padding: 52px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 36px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.page-hero .section-label { color: rgba(255,255,255,0.6); margin-bottom: 10px; }

.page-hero h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  max-width: 560px;
  line-height: 1.65;
}

.page-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ── Intro grid ───────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.intro-card {
  background: var(--off-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.intro-card h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.intro-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-flow-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}

.step-num {
  width: 24px; height: 24px;
  min-width: 24px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ── Service cards as links ───────────────────────────────── */
a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.service-card:hover { transform: translateY(-2px); border-color: var(--brand-light); }

/* ── Scanner card full-width ──────────────────────────────── */
.service-card-scanner {
  grid-column: span 3;
}

.scanner-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.scanner-card-inner .service-icon { margin-bottom: 0; }

.scanner-card-inner h3 { margin-top: 6px; }

.free-pill {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

/* ── Support levels ───────────────────────────────────────── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-card {
  background: var(--off-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}

.support-card-featured {
  background: var(--off-white);
  border: 2px solid var(--brand);
}

.support-icon {
  width: 44px; height: 44px;
  background: var(--brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 22px;
  margin-bottom: 14px;
}

.support-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.support-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.popular-pill {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── Service detail layout ────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
  padding: 8px 0;
}

.service-detail-grid.reverse {
  grid-template-columns: 1fr 120px;
}

.service-detail-grid.reverse .service-detail-icon-col { order: 2; }
.service-detail-grid.reverse .service-detail-body { order: 1; }

.service-detail-icon-col {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.service-detail-icon {
  width: 72px; height: 72px;
  background: var(--brand-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 34px;
  flex-shrink: 0;
}

.service-detail-body .section-label { margin-bottom: 6px; }
.service-detail-body .section-title { margin-bottom: 12px; font-size: 24px; }

.service-detail-lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 580px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.feature-list li i {
  color: var(--brand);
  font-size: 16px;
  flex-shrink: 0;
}

.service-detail-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Jump nav ─────────────────────────────────────────────── */
.jump-nav-wrap {
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
}

.jump-nav {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.jump-nav::-webkit-scrollbar { display: none; }

.jump-nav-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 12px 16px 12px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.jump-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  flex-shrink: 0;
}

.jump-link:hover { color: var(--brand); border-bottom-color: var(--brand); }

/* ── Pricing section header ───────────────────────────────── */
.pricing-section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--border);
}

.pricing-section-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 22px;
  margin-top: 2px;
}

.pricing-section-icon-ms {
  background: #f8f9fa;
}

.pricing-section-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-section-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-section-header a { color: var(--brand); font-weight: 500; }

/* ── Package toggle ───────────────────────────────────────── */
.pkg-toggle-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pkg-toggle-btn {
  background: var(--off-white);
  border: 0.5px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .15s;
  font-family: inherit;
}

.pkg-toggle-btn:hover { border-color: var(--brand); color: var(--brand); }

.pkg-toggle-btn.active {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.pkg-toggle-badge {
  background: rgba(255,255,255,0.2);
  color: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

.pkg-toggle-btn:not(.active) .pkg-toggle-badge {
  background: var(--brand-light);
  color: var(--brand);
}

/* ── Package cards ────────────────────────────────────────── */
.pkg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pkg-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pkg-card-featured {
  border: 2px solid var(--brand);
  position: relative;
}

.pkg-card-featured .popular-pill { margin-bottom: 12px; }

.pkg-tier-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--brand);
  margin-bottom: 10px;
}

.pkg-price-wrap { margin-bottom: 6px; }

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.pkg-dollar {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-top: 4px;
}

.pkg-amount {
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.pkg-per {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pkg-gst { font-size: 11px; }

.pkg-setup-line {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
  min-height: 18px;
}

.pkg-saving-line {
  min-height: 20px;
  margin-bottom: 16px;
}

.pkg-saving-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-light);
  padding: 2px 8px;
  border-radius: 20px;
}

.pkg-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
}

.pkg-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.pkg-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.45;
}

.pkg-check-list li i {
  color: var(--brand);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-card-footer { margin-top: auto; padding-top: 4px; }

.pkg-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--border);
}

.pkg-note a { color: var(--brand); }

/* ── Package card buttons ─────────────────────────────────── */
.btn-pkg-outline {
  display: block;
  text-align: center;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--brand);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color .15s, background .15s;
}

.btn-pkg-outline:hover { border-color: var(--brand); background: var(--brand-light); }

.btn-pkg-solid {
  display: block;
  text-align: center;
  background: var(--brand-dark);
  border: 1.5px solid var(--brand-dark);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .15s;
}

.btn-pkg-solid:hover { background: var(--brand-mid); border-color: var(--brand-mid); color: #fff; }

/* ── Comparison table ─────────────────────────────────────── */
.pkg-compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 0.5px solid var(--border);
}

.pkg-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.pkg-compare-table thead tr {
  background: var(--brand-dark);
}

.pkg-compare-table thead th {
  color: #fff;
  font-weight: 600;
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
}

.pkg-compare-table thead th:first-child { text-align: left; }

.pkg-compare-table thead th span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: .75;
  margin-top: 2px;
}

.pkg-compare-table tbody tr:nth-child(even) { background: var(--off-white); }
.pkg-compare-table tbody tr:hover { background: var(--brand-light); }

.pkg-compare-table td {
  padding: 10px 16px;
  color: var(--text);
  border-bottom: 0.5px solid var(--border);
  text-align: center;
}

.pkg-compare-table td:first-child { text-align: left; color: var(--text-muted); }

.pkg-compare-group td {
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 8px 16px;
  text-align: left !important;
}

.pkg-compare-highlight { background: rgba(26,95,180,0.06) !important; font-weight: 600; }
.pkg-compare-table thead .pkg-compare-highlight { background: var(--brand-mid) !important; }

.pkg-yes { color: var(--brand); font-weight: 700; font-size: 15px; }
.pkg-no  { color: var(--border); font-size: 15px; }

/* ── Standalone pricing cards ─────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}

.pricing-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border: 2px solid var(--brand);
}

.pricing-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--brand);
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--border);
}

.pricing-card .pkg-check-list { flex: 1; margin-bottom: 20px; }

/* ── FAQ list ─────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item { border-bottom: 0.5px solid var(--border); padding-bottom: 14px; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-q {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.faq-a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Note box ─────────────────────────────────────────────── */
.v2-note-box {
  background: var(--brand-light);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--brand);
  line-height: 1.55;
}

/* ── Mini card grid (service detail pages) ────────────────── */
.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.mini-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.mini-card .service-icon { margin-bottom: 12px; }

.mini-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.mini-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Legal pages ──────────────────────────────────────────── */
.legal-section {
  background: var(--off-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 14px;
}

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.legal-section-header h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.legal-num {
  width: 30px; height: 30px;
  min-width: 30px;
  background: var(--brand-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.legal-body a { color: var(--brand); }

/* ── About page ───────────────────────────────────────────── */
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-service-item {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-service-item .service-icon { flex-shrink: 0; margin-bottom: 0; }

.about-service-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.about-service-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-scanner-card {
  background: var(--off-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.about-au-card {
  background: var(--brand-dark);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-au-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.about-au-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.about-au-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 24px;
}

.about-au-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-au-accent {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -80px; right: -60px;
  pointer-events: none;
}

.about-au-accent2 {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -40px; left: -40px;
  pointer-events: none;
}

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-form-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.form-alert i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.form-alert-success {
  background: #eaf3de;
  color: #27500a;
  border: 0.5px solid #97c459;
}

.form-alert-error {
  background: #fcebeb;
  color: #791f1f;
  border: 0.5px solid #f09595;
}

.contact-form-fields { display: flex; flex-direction: column; gap: 16px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
}

.form-req { color: var(--brand); }

.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .15s;
}

.form-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(26,95,180,0.08); }

.form-textarea { min-height: 130px; resize: vertical; }

.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6070' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
  background: var(--off-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-info-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-detail-list { display: flex; flex-direction: column; gap: 14px; margin-top: 14px; }

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
}

.contact-detail-row > i {
  font-size: 18px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-row a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail-row span { color: var(--text-muted); }

/* What happens next */
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.next-step-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.next-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  border-radius: var(--radius) var(--radius) 0 0;
}

.next-step-num {
  width: 36px; height: 36px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.next-step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.next-step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--brand-dark);
    padding: 12px 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 0;
    z-index: 99;
  }
  .nav-links.open li a { padding: 10px 24px; font-size: 15px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero { padding: 48px 0 80px; }
  .hero h1 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(odd) { border-right: 0.5px solid var(--border); }
  .scanner-strip { flex-direction: column; align-items: flex-start; }
  .scanner-form { width: 100%; }
  .scanner-input { flex: 1; width: auto; }
  .mini-card-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2   { grid-template-columns: 1fr; }
  .next-steps-grid { grid-template-columns: 1fr; }
  .about-services-grid { grid-template-columns: 1fr; }
  .about-au-card { padding: 32px 24px; }
  .pkg-card-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-grid-2 { grid-template-columns: 1fr; max-width: 100%; }
  .jump-nav-wrap { top: var(--nav-h); }
  .scanner-card-inner { flex-direction: column; gap: 12px; }
  .intro-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .service-detail-grid,
  .service-detail-grid.reverse { grid-template-columns: 1fr; gap: 24px; }
  .service-detail-grid.reverse .service-detail-icon-col,
  .service-detail-grid.reverse .service-detail-body { order: unset; }
  .service-detail-icon-col { justify-content: flex-start; }
  .page-hero h1 { font-size: 26px; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-scanner { grid-column: span 1; }
  .hero h1 { font-size: 24px; }
  .section-title { font-size: 22px; }
  .cta-band h2 { font-size: 22px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .nav-right .nav-phone { display: none; }
  .support-grid { grid-template-columns: 1fr; }
}
