:root {
  --ink: #0b1118;
  --ink-soft: #111b26;
  --yellow: #ffd21c;
  --paper: #f4f7fa;
  --white: #fff;
  --muted: #667281;
  --line: #dfe5eb;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid #4da8ff; outline-offset: 3px; }

.seo-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(8,15,23,.97);
  color: var(--white);
  backdrop-filter: blur(12px);
}
.seo-header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.seo-brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}
.seo-brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.seo-brand-copy strong { font-size: .82rem; font-weight: 900; letter-spacing: .035em; }
.seo-brand-copy small { margin-top: 4px; color: var(--yellow); font-size: .58rem; font-weight: 800; letter-spacing: .08em; }
.seo-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.seo-nav a { color: #d8e2eb; font-size: .78rem; font-weight: 700; text-decoration: none; }
.seo-nav .nav-cta { padding: 9px 14px; border-radius: 10px; background: var(--yellow); color: var(--ink); }

.seo-hero {
  overflow: hidden;
  background: linear-gradient(155deg, #07101a, #122131);
  color: var(--white);
}
.seo-hero-grid {
  width: min(var(--max), calc(100% - 32px));
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 45px;
  align-items: center;
  margin: auto;
  padding: 62px 0;
}
.breadcrumbs { margin: 0 0 17px; color: #9faebd; font-size: .7rem; }
.breadcrumbs a { text-decoration: none; }
.eyebrow { margin: 0 0 12px; color: var(--yellow); font-size: .75rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(2.45rem, 5vw, 4.8rem); font-weight: 900; line-height: 1.02; letter-spacing: -.052em; }
.seo-lead { max-width: 650px; margin: 20px 0 0; color: #c7d2dc; font-size: 1.03rem; }
.seo-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.seo-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  color: var(--white);
  font-size: .83rem;
  font-weight: 800;
  text-decoration: none;
}
.seo-button.primary { border-color: var(--yellow); background: var(--yellow); color: var(--ink); }
.hero-phone { margin: 13px 0 0; color: #aebdca; font-size: .74rem; }
.hero-phone a { color: var(--yellow); font-weight: 800; text-decoration: none; }
.seo-hero figure { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; box-shadow: 0 24px 60px rgba(0,0,0,.26); }
.seo-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.seo-main { width: min(var(--max), calc(100% - 32px)); margin: auto; }
.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  background: var(--white);
}
.quick-facts div { padding: 17px 20px; border-right: 1px solid var(--line); }
.quick-facts div:last-child { border-right: 0; }
.quick-facts strong { display: block; font-size: .82rem; }
.quick-facts span { color: var(--muted); font-size: .7rem; }
.content-section { padding: 70px 0; }
.content-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
h2 { margin: 0; font-size: clamp(1.85rem, 3.5vw, 3.1rem); font-weight: 900; line-height: 1.1; letter-spacing: -.04em; }
h3 { margin: 0; font-size: 1rem; line-height: 1.3; }
.section-intro { margin: 14px 0 0; color: var(--muted); }
.prose p { margin: 0 0 16px; color: #3e4a57; font-size: .92rem; }
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 25px; }
.service-cards article { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.service-cards article:first-child { border-color: var(--yellow); box-shadow: inset 4px 0 var(--yellow); }
.service-cards p { margin: 7px 0 0; color: var(--muted); font-size: .78rem; }
.dark-section { padding: 62px; border-radius: 24px; background: var(--ink); color: var(--white); }
.dark-section .prose p { color: #b8c5d1; }
.check-list { display: grid; gap: 9px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; color: #d9e2ea; font-size: .84rem; }
.check-list li::before { content: "✓"; color: var(--yellow); font-weight: 900; }
.faq-block { display: grid; gap: 10px; margin-top: 25px; }
.faq-block details { padding: 0 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.faq-block summary { padding: 17px 0; cursor: pointer; font-size: .87rem; font-weight: 800; }
.faq-block p { margin: -2px 0 17px; color: var(--muted); font-size: .8rem; }
.local-links { padding: 35px; border-radius: 20px; background: #ffef91; }
.local-links h2 { font-size: 1.45rem; }
.local-link-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.local-link-grid a { padding: 8px 12px; border-radius: 99px; background: rgba(255,255,255,.58); font-size: .72rem; font-weight: 700; text-decoration: none; }
.page-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin: 72px 0 28px; padding: 38px; border-radius: 22px; background: var(--yellow); }
.page-cta h2 { max-width: 650px; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.page-cta .seo-button { flex: 0 0 auto; border-color: var(--ink); background: var(--ink); color: var(--yellow); }

.seo-footer { padding: 40px 16px 90px; background: #070d13; color: #9dabb9; text-align: center; }
.seo-footer p { margin: 0; font-size: .74rem; }
.seo-footer a { color: var(--yellow); text-decoration: none; }
.seo-mobile-bar { display: none; }

@media (max-width: 780px) {
  body { padding-bottom: 66px; }
  .seo-header-inner { min-height: 64px; }
  .seo-brand-copy strong { font-size: .66rem; }
  .seo-brand-copy small { font-size: .5rem; }
  .seo-nav > a:not(.nav-cta) { display: none; }
  .seo-nav .nav-cta { padding: 8px 11px; font-size: .68rem; }
  .seo-hero-grid { grid-template-columns: 1fr; gap: 28px; padding: 38px 0; }
  h1 { font-size: clamp(2.4rem, 12vw, 3.7rem); }
  .seo-lead { font-size: .9rem; }
  .seo-hero figure { max-height: 300px; }
  .seo-hero img { height: 300px; }
  .quick-facts { grid-template-columns: 1fr; }
  .quick-facts div { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-facts div:last-child { border-bottom: 0; }
  .content-section { padding: 54px 0; }
  .content-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-cards { grid-template-columns: 1fr; }
  .dark-section { padding: 34px 22px; }
  .page-cta { align-items: flex-start; flex-direction: column; padding: 28px 22px; }
  .page-cta .seo-button { width: 100%; }
  .seo-mobile-bar {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 8px;
    padding: 7px 10px;
    border-top: 1px solid rgba(255,255,255,.13);
    background: rgba(8,15,23,.98);
  }
  .seo-mobile-bar a { display: grid; place-items: center; border-radius: 10px; color: var(--white); font-size: .72rem; font-weight: 800; text-decoration: none; }
  .seo-mobile-bar a:last-child { background: var(--yellow); color: var(--ink); }
}
