/* Exclusive Telemarketing Leads — Ocean Mist + Cobalt */
:root {
  --bg: #F7F9FC;
  --bg-soft: #EEF2F8;
  --surface: #FFFFFF;
  --chrome: #EAF0F8;
  --ink: #152033;
  --muted: #5E6B7A;
  --accent: #1A56DB;
  --accent-hover: #1347B8;
  --accent-soft: #E8EEFA;
  --spark: #0D9B8A;
  --line: #D8E0EC;
  --danger: #C62828;
  --success: #1B7A4A;
  --radius: 10px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(21, 32, 51, 0.04), 0 8px 24px rgba(21, 32, 51, 0.05);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --container: 1120px;
  --header-offset: 7.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.025rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.15rem); letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; color: var(--muted); }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; color: var(--muted); }
li { margin-bottom: 0.4rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: transparent;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(234, 240, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--accent), #3B7BFF);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.brand-sub { font-size: 0.7rem; color: var(--muted); font-weight: 500; }

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav > ul > li > a {
  display: block;
  padding: 0.5rem 0.7rem;
  color: var(--ink);
  font-weight: 550;
  font-size: 0.92rem;
  border-radius: 6px;
}
.site-nav > ul > li > a:hover,
.site-nav > ul > li > a.is-active {
  color: var(--accent);
  background: var(--accent-soft);
}
.has-submenu { position: relative; }
.site-nav .submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  width: min(440px, calc(100vw - 2rem));
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 0.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.65rem;
  list-style: none;
  margin: 0;
  z-index: 50;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  display: grid;
}
.submenu li { margin: 0; }
.submenu a {
  display: block;
  padding: 0.6rem 0.75rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 550;
  line-height: 1.35;
  border-radius: 6px;
}
.submenu a:hover { background: var(--accent-soft); color: var(--accent); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.header-phone {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  white-space: nowrap;
}
.header-phone:hover { color: var(--accent); }
.header-cta { white-space: nowrap; }

.trust-strip {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-strip-inner span { position: relative; }
.trust-strip-inner span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spark);
  margin-right: 0.45rem;
  vertical-align: middle;
}

.form-banner { padding: 0.85rem 0; font-weight: 600; font-size: 0.95rem; }
.form-banner--success { background: #E6F6EE; color: var(--success); }
.form-banner--error { background: #FDECEC; color: var(--danger); }

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.25rem, 8vw, 6.25rem) 0 clamp(3.75rem, 9vw, 6.75rem);
  overflow: hidden;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  background: #EEF2F8;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      95deg,
      rgba(247, 249, 252, 0.97) 0%,
      rgba(247, 249, 252, 0.92) 38%,
      rgba(247, 249, 252, 0.55) 58%,
      rgba(232, 238, 250, 0.18) 78%,
      rgba(232, 238, 250, 0.05) 100%
    );
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}
.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.hero h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
}
.hero .lead {
  font-size: 1.05rem;
  max-width: 32rem;
  color: var(--muted);
  margin-bottom: 0;
}
.hero-motion {
  animation: riseFade 0.8s ease both;
}
@keyframes riseFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: clamp(3rem, 5.5vw, 4.5rem) 0; }
.section-soft { background: var(--bg-soft); }
.section-chrome { background: var(--chrome); }
.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}
.section-head p { margin-bottom: 0; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--spark);
  margin-bottom: 0.65rem;
}

/* Trust badges */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
}
.badge-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.badge-item:hover {
  border-color: #B8C8E8;
  transform: translateY(-2px);
}
.badge-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.badge-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-tile {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  height: 100%;
}
.service-tile:hover {
  border-color: var(--accent);
  border-top-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: inherit;
}
.service-tile h3 {
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.service-tile p {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}
.service-tile .tile-link {
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 0.25rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; margin: 0; }
.steps--compact {
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
}

/* Split / compliance */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.split-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--spark);
  box-shadow: inset 0 0 0 2px var(--surface), 0 0 0 1px var(--spark);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
}
.testimonial blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
}
.testimonial cite strong { color: var(--ink); display: block; }

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; max-width: 46rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 650;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 500;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #152033 0%, #1A3A6B 55%, #1A56DB 100%);
  color: #fff;
  padding: clamp(2.75rem, 5vw, 3.75rem) 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 32rem; margin-inline: auto; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--accent);
}
.cta-band .btn-primary:hover { background: var(--accent-soft); color: var(--accent-hover); }
.cta-band .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.cta-band .cta-row { justify-content: center; }

/* Page hero (inner) */
.page-hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 2.25rem;
  background: linear-gradient(165deg, #F7F9FC, #E8EEFA);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero.has-media {
  min-height: 220px;
  display: flex;
  align-items: center;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero.has-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(247, 249, 252, 0.96) 0%,
    rgba(247, 249, 252, 0.88) 42%,
    rgba(247, 249, 252, 0.55) 70%,
    rgba(232, 238, 250, 0.35) 100%
  );
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero .lead { max-width: 38rem; }

/* Split with image */
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: var(--chrome);
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

/* Compare columns */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.compare-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.compare-col h3 { color: var(--accent); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-card:hover,
.price-card.is-selected {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.price-card.is-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #F5F8FF, #fff);
}
.price-card .tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}
.price-card .tier-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.5rem 0;
}
.price-card .tier-note { font-size: 0.85rem; margin-bottom: 1rem; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}
.price-card li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--ink);
  font-size: 0.95rem;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--spark);
  font-weight: 700;
}
.volume-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.volume-table th,
.volume-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.volume-table th {
  background: var(--chrome);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}
.volume-table tr:last-child td { border-bottom: none; }

/* Forms */
.intake-form,
.contact-simple-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  background: var(--surface);
}
.field-hint { font-size: 0.8rem; color: var(--muted); margin: 0; }
.field-check label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--muted);
}
.field-check input { margin-top: 0.25rem; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-card + .contact-card { margin-top: 1rem; }
.contact-card h3 { margin-bottom: 0.75rem; }
.contact-meta { list-style: none; padding: 0; margin: 0; }
.contact-meta li {
  margin-bottom: 0.85rem;
  color: var(--ink);
}
.contact-meta .label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.chat-placeholder {
  border: 1px dashed #B8C8E8;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  background: var(--accent-soft);
  color: var(--muted);
  font-size: 0.95rem;
}

/* Legal */
.legal-content {
  max-width: 44rem;
}
.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
}
.legal-content p, .legal-content li { font-size: 0.98rem; }

/* Footer */
.site-footer {
  background: var(--chrome);
  border-top: 1px solid var(--line);
  padding: 3rem 0 6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p { font-size: 0.95rem; }
.footer-hours { font-size: 0.9rem; color: var(--ink); }
.footer-heading {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.92rem;
  margin: 0 0 0.85rem;
  color: var(--ink);
}
.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a, .footer-contact a {
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-links li, .footer-contact li { margin-bottom: 0.45rem; }
.footer-contact .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.footer-contact span, .footer-contact a { color: var(--ink); font-size: 0.92rem; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}
.footer-bottom p { margin: 0; color: var(--muted); }
.footer-ctas { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-ctas a { font-weight: 650; }

/* Mobile bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 0.5rem;
}
.mobile-bar a {
  text-align: center;
  padding: 0.65rem 0.4rem;
  border-radius: var(--radius-sm);
  font-weight: 650;
  font-size: 0.82rem;
  color: var(--ink);
  background: var(--bg-soft);
}
.mobile-bar a.is-primary {
  background: var(--accent);
  color: #fff;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .service-grid,
  .steps,
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .steps--compact { grid-template-columns: 1fr 1fr; }
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { display: none; }
  :root { --header-offset: 4.25rem; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 0;
  }
  .hero-media {
    object-position: 60% center;
  }
  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(247, 249, 252, 0.94) 0%,
      rgba(247, 249, 252, 0.88) 55%,
      rgba(247, 249, 252, 0.72) 100%
    );
  }
  .hero-inner { max-width: 100%; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 4.25rem;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav .submenu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0.25rem 0.75rem;
    background: transparent;
  }
  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    display: grid;
  }
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0.5rem;
  }
  .service-grid,
  .steps,
  .pricing-grid,
  .steps--compact,
  .testimonial-grid,
  .compare,
  .form-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  .site-footer { padding-bottom: 5.5rem; }
  .header-phone { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
