/* ============================================================
   Shared styles for SEO landing pages (service + local).
   Matches the main site: teal #5EADBA, system font, light/dark.
   ============================================================ */
:root {
  --accent: #5eadba;
  --accent-d: #4a9aa7;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Nav */
.snav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #ececec;
}
.snav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.snav-logo img {
  height: 30px;
  display: block;
}
.snav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.snav-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.snav-links a:hover {
  color: var(--accent);
  background: rgba(94, 173, 186, 0.09);
}
.snav-cta {
  background: var(--accent) !important;
  color: #fff !important;
}
.snav-cta:hover {
  background: var(--accent-d) !important;
}
.snav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #555;
}
@media (max-width: 780px) {
  .snav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 12px 20px;
    border-bottom: 1px solid #ececec;
  }
  .snav-links.open {
    display: flex;
  }
  .snav-toggle {
    display: block;
  }
}

/* Hero */
.shero {
  padding: 88px 0 56px;
  text-align: center;
}
.shero .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--accent);
  background: rgba(94, 173, 186, 0.1);
  border: 1px solid rgba(94, 173, 186, 0.22);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.shero h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 880px;
  margin-inline: auto;
}
.shero p {
  font-size: 18px;
  color: #666;
  max-width: 660px;
  margin: 0 auto 28px;
}
.btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 26px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(94, 173, 186, 0.32);
}
.btn-primary:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
}
.btn-secondary {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #e3e3e6;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn svg {
  width: 17px;
  height: 17px;
}

/* Sections */
section.block {
  padding: 54px 0;
}
.block h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.block > .wrap > p.lead {
  font-size: 17px;
  color: #555;
  max-width: 760px;
  margin-bottom: 8px;
}
.prose p {
  font-size: 16.5px;
  color: #555;
  margin-bottom: 16px;
  max-width: 780px;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 26px 24px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09);
  border-color: rgba(94, 173, 186, 0.4);
}
.card .ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6bc5d2, #4a9aa7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card .ico svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}
.card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card h3 a {
  text-decoration: none;
}
.card p {
  font-size: 14.5px;
  color: #666;
}
.card a.more {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
@media (max-width: 820px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* value list */
.vlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
  margin-top: 26px;
}
.vlist li {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 15.5px;
  color: #444;
}
.vlist svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}
@media (max-width: 820px) {
  .vlist {
    grid-template-columns: 1fr;
  }
}

/* FAQ accordion */
.faq {
  border-top: 1px solid #ececec;
  margin-top: 28px;
}
.faq-item {
  border-bottom: 1px solid #ececec;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq-q::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 0 20px;
  color: #666;
  font-size: 15.5px;
  max-width: 780px;
}

/* area links */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 18px;
  margin-top: 24px;
}
.area-grid a {
  text-decoration: none;
  color: #555;
  font-size: 14.5px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s;
}
.area-grid a:hover {
  color: var(--accent);
}
@media (max-width: 820px) {
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #6bc5d2, #4a9aa7);
  color: #fff;
  border-radius: 22px;
  padding: 48px 40px;
  text-align: center;
  margin: 54px 0;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(24px, 3.5vw, 32px);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-size: 16px;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--accent-d);
}
.cta-band .btn-primary:hover {
  background: #f0f0f0;
}

/* breadcrumb */
.crumb {
  font-size: 13px;
  color: #999;
  padding-top: 18px;
}
.crumb a {
  color: #999;
  text-decoration: none;
}
.crumb a:hover {
  color: var(--accent);
}

/* Footer */
.sfoot {
  border-top: 1px solid #ececec;
  margin-top: 30px;
  padding: 48px 0 36px;
}
.sfoot-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.sfoot-brand img {
  height: 54px;
  width: 54px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.sfoot-brand p {
  font-size: 13px;
  color: #888;
}
.sfoot-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin-bottom: 12px;
}
.sfoot-col a {
  display: block;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}
.sfoot-col a:hover {
  color: var(--accent);
}

/* Dark mode */
[data-theme="dark"] body {
  background: #0a0a0a;
  color: #e5e5e5;
}
[data-theme="dark"] .snav {
  background: rgba(10, 10, 10, 0.85);
  border-color: #222;
}
[data-theme="dark"] .snav-links a {
  color: #a0a0a0;
}
[data-theme="dark"] .snav-links.open {
  background: #111;
}
[data-theme="dark"] .shero p,
[data-theme="dark"] .block > .wrap > p.lead,
[data-theme="dark"] .prose p,
[data-theme="dark"] .card p {
  color: #a0a0a0;
}
[data-theme="dark"] .card,
[data-theme="dark"] .btn-secondary {
  background: #161616;
  border-color: #262626;
  color: #e5e5e5;
}
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] .faq-q {
  color: #f0f0f0;
}
[data-theme="dark"] .faq,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .sfoot,
[data-theme="dark"] .area-grid a {
  border-color: #222;
}
[data-theme="dark"] .vlist li,
[data-theme="dark"] .faq-a p,
[data-theme="dark"] .sfoot-col a,
[data-theme="dark"] .area-grid a {
  color: #a0a0a0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
