:root {
  --navy:   #1a3a5c;
  --blue:   #2e6da4;
  --sky:    #5ba4cf;
  --teal:   #3a9e8f;
  --cream:  #f5f7fa;
  --white:  #ffffff;
  --gray:   #6b7c8e;
  --text:   #2c3e50;
  --border: #dce6ef;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 0.45rem 2rem;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 101;
}
.topbar-center {
  flex: 1;
  text-align: center;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.topbar-right { display: flex; gap: 2rem; }
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.topbar a:hover { color: var(--white); }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 31px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26,58,92,0.08);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo span { color: var(--teal); }
.logo-img { height: 59px; width: auto; display: inline-block; vertical-align: middle; margin-right: 0.5rem; }
.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--cream); color: var(--blue); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px;
}
.nav-cta:hover { background: #2e8a7d !important; color: var(--white) !important; }
.nav-cta--blue { background: var(--blue) !important; margin-right: 0.4rem; }
.nav-cta--blue:hover { background: #255d8e !important; }

/* ── HERO (home page) ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--sky) 100%);
  color: var(--white);
  padding: 5rem 2rem 4.5rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}
.hero h1 em { font-style: normal; color: #a8d8f0; }
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #2e8a7d; transform: translateY(-1px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-1px); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--sky) 100%);
  color: var(--white);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.page-hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.9;
  max-width: 620px;
  margin: 0 auto;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
}
.trust-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--gray);
  font-weight: 500;
}
.trust-icon { font-size: 1.2rem; color: var(--teal); }

/* ── SECTIONS ── */
section { padding: 4.5rem 2rem; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.label {
  display: inline-block;
  background: #e8f4fd;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ── SERVICE TABS ── */
.svc-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.svc-tab {
  padding: 0.65rem 2rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.svc-tab:hover { border-color: var(--sky); color: var(--navy); }
.svc-tab.active { border-color: var(--teal); background: #e8f8f6; color: var(--navy); }
.svc-panel { display: none; }
.svc-panel.active { display: block; }

/* ── SERVICES GRID ── */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(26,58,92,0.12);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.6rem; font-weight: 600; }
.service-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.65; }

/* ── WHY US ── */
#home { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.why-item { padding: 1rem; }
.why-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.why-item h3 { color: var(--navy); font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.why-item p { color: var(--gray); font-size: 0.9rem; }

/* ── PRICING ── */
#pricing { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card--wide {
  grid-column: 1 / -1;
  max-width: 100%;
}
.pricing-bottom-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.75rem;
}
.pricing-wide-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: center;
}
.pricing-wide-left { display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-wide-left .price { font-size: 2rem; padding-top: 0.2rem; }
.pricing-wide-left p { color: var(--gray); font-size: 0.95rem; line-height: 1.65; margin: 0; }
.pricing-wide-left .btn-pricing { margin-top: 1rem; text-align: center; }
.pricing-features--cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
}
.pricing-card {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 2.25rem 2rem;
  text-align: center;
  transition: box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card .btn-pricing { margin-top: auto; }
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(58,158,143,0.18);
}
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card--emergency {
  border: 2px solid #c0392b;
  box-shadow: 0 8px 32px rgba(192,57,43,0.15);
}
.pricing-card--emergency .btn-pricing { background: #c0392b; }
.pricing-card--emergency .btn-pricing:hover { background: #a93226; }
.badge--red { background: #c0392b; }
.check--red { color: #c0392b; }
.pricing-card h3 { color: var(--navy); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.price { font-size: 2.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.price sup { font-size: 1.2rem; vertical-align: super; }
.price-note { color: var(--gray); font-size: 0.85rem; margin: 0.4rem 0 1.5rem; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-features li {
  padding: 0.45rem 0;
  color: var(--gray);
  font-size: 0.93rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--teal); font-weight: 700; }
.btn-pricing {
  display: block;
  background: var(--blue);
  color: var(--white);
  padding: 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn-pricing:hover { background: var(--navy); }
.pricing-card.featured .btn-pricing { background: var(--teal); }
.pricing-card.featured .btn-pricing:hover { background: #2e8a7d; }

/* ── PRICING TEASER (homepage) ── */
.pricing-teaser {
  max-width: 360px;
  margin: 0 auto;
}
.see-all-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}
.see-all-link:hover { color: var(--teal); }

/* ── BLOG ── */
#blog { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(26,58,92,0.1); transform: translateY(-3px); }
.blog-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-body { padding: 1.5rem; }
.blog-meta { color: var(--gray); font-size: 0.8rem; margin-bottom: 0.5rem; }
.blog-body h3 { color: var(--navy); font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; line-height: 1.4; }
.blog-body p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
.blog-link { color: var(--blue); text-decoration: none; font-size: 0.9rem; font-weight: 600; display: inline-block; margin-top: 0.75rem; }
.blog-link:hover { color: var(--teal); }

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { color: var(--navy); font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: var(--gray); margin-bottom: 1.75rem; font-size: 0.97rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail a { color: var(--blue); text-decoration: none; font-weight: 500; }
.contact-detail a:hover { color: var(--teal); }
.contact-detail span { color: var(--gray); font-size: 0.82rem; display: block; }

/* ── WIZARD STANDALONE PAGE ── */
.wizard-standalone {
  max-width: 680px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}

/* ── CONTACT PAGE WIZARD CTA ── */
.contact-wizard-cta {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-wizard-nudge {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 0.5rem !important;
}
.contact-wizard-cta h3 { color: var(--navy); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; }
.contact-wizard-cta p { color: var(--gray); font-size: 0.97rem; line-height: 1.65; margin-bottom: 1.5rem; }
.contact-wizard-btn { display: inline-block; text-align: center; }
.contact-wizard-note {
  font-size: 0.82rem !important;
  color: var(--gray) !important;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}

/* ── CONTACT PAGE FORM ── */
.contact-form-wrap { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; }
.contact-form-wrap h3 { color: var(--navy); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.35rem; }
.contact-form-wrap > p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1.5rem; }
.contact-wizard-nudge-block { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid var(--border); }
.contact-wizard-nudge-block p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1rem; }
.btn-outline-navy {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── CONTACT STRIP ── */
.contact-strip {
  display: flex;
  gap: 1.25rem 4rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.contact-strip .contact-detail { margin-bottom: 0; }

/* ── WIZARD ── */
.wizard {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.wizard-progress-wrap { margin-bottom: 0.5rem; }
.wizard-progress {
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.wizard-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 100px;
  transition: width 0.4s ease;
  width: 0%;
}
.wizard-step-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.wstep { display: none; }
.wstep.active {
  display: block;
  animation: wstep-appear 0.22s ease;
}
@keyframes wstep-appear {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wstep > h3 {
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

/* Remote-support guardrail warning */
.wremote-warning {
  display: none;
  background: #fff8e1;
  border: 1.5px solid #f0a500;
  border-radius: 10px;
  padding: 1.1rem 1.35rem;
  margin-top: 1.25rem;
}
.wremote-warning p {
  color: #5a4000;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.wremote-warning-continue {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.wremote-warning-continue:hover { background: #2e8a7d; }
.wopt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
}
.wopt-grid--wide { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.wopt {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1rem 0.75rem;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.18s, background 0.18s, color 0.18s, transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  line-height: 1.3;
}
.wopt:hover { border-color: var(--sky); background: #f0f8ff; transform: translateY(-2px); }
.wopt.selected { border-color: var(--teal); background: #e8f8f6; color: var(--navy); }
.wopt small { font-size: 0.78rem; font-weight: 400; color: var(--gray); display: block; }
.wopt.selected small { color: var(--teal); }
.wopt-emoji { font-size: 1.6rem; display: block; }
.wform { display: flex; flex-direction: column; gap: 0.9rem; }
.wform-row { display: flex; flex-direction: column; gap: 0.3rem; }
.wform-row label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.wform-row input, .wform-row textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.94rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.wform-row input:focus, .wform-row textarea:focus { outline: none; border-color: var(--sky); }
.wform-row textarea { min-height: 90px; resize: vertical; }
.wizard-submit {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.25rem;
}
.wizard-submit:hover { background: #2e8a7d; transform: translateY(-1px); }
.wizard-submit:disabled { background: var(--gray); cursor: not-allowed; transform: none; }
.wizard-nav { margin-top: 1.25rem; }
.wizard-back {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.wizard-back:hover { color: var(--navy); }
.wizard-success { text-align: center; padding: 2rem 1rem; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.wizard-success h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 0.75rem; }
.wizard-success p { color: var(--gray); font-size: 0.95rem; }
.wizard-success a { color: var(--blue); font-weight: 600; text-decoration: none; }
.wizard-error { color: #c0392b; font-size: 0.85rem; margin-top: 0.5rem; display: none; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(26,58,92,0.06);
}
.testimonial-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  border: none;
  padding: 0;
  font-style: italic;
}
.testimonial-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.testimonial-service {
  font-size: 0.82rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.testimonial-toggle {
  background: none;
  border: none;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-left: 0.25rem;
  font-style: normal;
}

/* ── SUPPORT PAGE ── */
.page-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}
.page-intro { text-align: center; margin-bottom: 3rem; }
.page-intro p { font-size: 1.05rem; color: var(--gray); max-width: 640px; margin: 0 auto; }
.platform-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.65rem 1.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.tab-btn:hover { border-color: var(--sky); color: var(--navy); }
.tab-btn.active { border-color: var(--teal); background: #e8f8f6; color: var(--navy); }
.platform-panel { display: none; }
.platform-panel.active { display: block; }
.panel-intro {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.panel-intro h2 { color: var(--navy); font-size: 1.25rem; margin-bottom: 0.5rem; }
.panel-intro p { color: var(--gray); font-size: 0.97rem; }
.download-btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1rem;
  transition: background 0.2s, transform 0.15s;
}
.download-btn:hover { background: #2e8a7d; transform: translateY(-1px); }
.steps { list-style: none; }
.steps li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.steps li:last-child { border-bottom: none; }
.step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.steps li p { color: var(--text); font-size: 0.97rem; padding-top: 0.35rem; line-height: 1.6; }
.mac-subtabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.subtab-btn {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.subtab-btn:hover { border-color: var(--sky); color: var(--navy); }
.subtab-btn.active { border-color: var(--blue); background: #e8f4fd; color: var(--navy); }
.mac-subpanel { display: none; }
.mac-subpanel.active { display: block; }
.cta-band {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
}
.cta-band h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.cta-band p { opacity: 0.85; margin-bottom: 1.5rem; font-size: 0.97rem; }
.cta-band a {
  background: var(--teal);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
  display: inline-block;
}
.cta-band a:hover { background: #2e8a7d; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { color: var(--white); font-size: 1.2rem; display: inline-block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
footer h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.footer-support-btn {
  background: var(--teal);
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 7px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-support-btn:hover { background: #2e8a7d !important; }

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */

/* Tablet nav collapse */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 24px rgba(26,58,92,0.12);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; font-size: 1rem; border-radius: 8px; display: block; }
  .nav-cta, .nav-cta--blue {
    text-align: center;
    margin: 0.25rem 0 !important;
    padding: 0.75rem 1rem !important;
  }
  .nav-cta--blue { margin-right: 0 !important; }
}

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  /* Topbar */
  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
  }
  /* Nav top must account for taller 2-line topbar */
  nav { top: 52px; }

  /* Sections */
  section { padding: 3rem 1.25rem; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .page-hero { padding: 2.5rem 1.25rem; }
  .page-main { padding: 2.5rem 1.25rem 3.5rem; }

  /* Trust bar */
  .trust-inner { gap: 1rem; }
  .trust-item { font-size: 0.85rem; }

  /* Services / pricing grids: force single column */
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-bottom-row { grid-template-columns: 1fr; }
  .pricing-wide-inner { grid-template-columns: 1fr; }
  .pricing-features--cols { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Wizard */
  .wizard { padding: 1.5rem 1rem; }
  .wopt-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA band */
  .cta-band { padding: 2rem 1.25rem; }

  /* Footer */
  .footer-top { gap: 1.75rem; }
  footer { padding: 2.5rem 1.25rem 1.25rem; }

  /* Testimonials — already collapsed via tablet rule above */
}
