:root {
  --ink: #172033;
  --muted: #5d6978;
  --line: #dce5e7;
  --paper: #ffffff;
  --soft: #f4f8f7;
  --soft-2: #edf4ef;
  --teal: #0f8b8d;
  --teal-dark: #09656b;
  --indigo: #29307a;
  --gold: #f5b841;
  --green: #2d936c;
  --rose: #cf5c78;
  --shadow: 0 18px 45px rgba(23, 32, 51, 0.11);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 231, 0.8);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 35px rgba(23, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 176px;
  max-height: 52px;
  object-fit: contain;
}

.nav-panel {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-panel a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-panel a:hover,
.nav-panel a:focus {
  color: var(--teal-dark);
}

.header-call,
.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
}

.header-call {
  padding: 0.72rem 0.95rem;
  color: var(--paper);
  background: var(--teal-dark);
  box-shadow: 0 12px 30px rgba(9, 101, 107, 0.22);
}

.call-text__mobile {
  display: none;
}

.header-call:hover,
.button--primary:hover {
  background: #074f55;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.lucide {
  width: 1.08rem;
  height: 1.08rem;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 139, 141, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 139, 141, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbfb 0%, #eef6f4 56%, #fdf8ed 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 3.5rem;
  align-items: center;
  min-height: 720px;
  padding: 5.5rem 0 4.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 2px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.2rem;
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 2rem;
  color: #3b4655;
  font-size: 1.22rem;
}

.hero-actions,
.section-actions,
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  padding: 0.9rem 1.1rem;
  border: 1px solid transparent;
}

.button--primary {
  color: var(--paper);
  background: var(--teal-dark);
  box-shadow: 0 16px 34px rgba(9, 101, 107, 0.2);
}

.button--secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.button--secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.button--gold {
  color: #342500;
  background: var(--gold);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.proof-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(220, 229, 231, 0.9);
  border-radius: var(--radius);
}

.proof-item strong {
  display: block;
  font-size: 1.35rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tech-card {
  display: grid;
  gap: 1rem;
}

.tech-card__top {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 1rem;
  align-items: center;
}

.tech-card__top img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: var(--radius);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: max-content;
  padding: 0.35rem 0.55rem;
  color: #0f5132;
  background: #dff6ea;
  border: 1px solid #bfe7d2;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--green);
  border-radius: 50%;
}

.tech-card h2 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.55rem;
}

.tech-card p {
  color: var(--muted);
}

.diagnostic {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  background: #111827;
  border-radius: var(--radius);
  color: #dce5e7;
}

.diagnostic__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.diagnostic__line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.diagnostic__line span {
  color: #a9b8c2;
}

.diagnostic__line strong {
  color: #ffffff;
  text-align: right;
}

.quick-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.quick-contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.trust-strip {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip__item {
  min-height: 118px;
  padding: 1.2rem;
  background: var(--paper);
}

.trust-strip__item strong {
  display: block;
  font-size: 1.35rem;
}

.trust-strip__item span {
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.section--paper {
  background: var(--paper);
}

.section--dark {
  color: var(--paper);
  background: #162424;
}

.section--accent {
  background: #fdf8ed;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(240px, 0.32fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.section-header h2,
.page-hero h1,
.article-hero h1 {
  margin-bottom: 0.75rem;
  font-size: 2.65rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-header p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--dark .section-header p,
.section--dark .muted,
.section--dark .step-card p {
  color: #c8d6d6;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.06);
}

.service-card {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.4rem;
}

.service-card__icon,
.zone-card__icon,
.step-index,
.article-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: 6px;
}

.service-card h3,
.zone-card h3,
.tutorial-card h2 {
  margin-bottom: 0.35rem;
  font-size: 1.22rem;
}

.service-card p,
.zone-card p,
.tutorial-card p {
  color: var(--muted);
}

.price {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 0.4rem 0.55rem;
  color: #342500;
  background: #fff0be;
  border: 1px solid #f9db82;
  border-radius: 6px;
  font-weight: 900;
}

.method {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.method__panel {
  padding: 1.4rem;
  color: var(--paper);
  background: #0d4f56;
  border-radius: var(--radius);
}

.method__panel h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.method__panel p {
  color: #e2f1f0;
}

.step-list {
  display: grid;
  gap: 1rem;
}

.step-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.2rem;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
}

.step-index {
  background: var(--gold);
  color: #342500;
  font-weight: 900;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.about-photo {
  padding: 0.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.65rem;
  align-items: start;
}

.check-list .lucide {
  color: var(--green);
  margin-top: 0.2rem;
}

.zones-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.zone-focus {
  padding: 1.4rem;
  background: #102d35;
  color: var(--paper);
  border-radius: var(--radius);
}

.zone-focus p {
  color: #d5e2e4;
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.zone-tags span {
  padding: 0.45rem 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-weight: 800;
}

.zone-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  padding: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 2rem;
}

.contact-lines {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: center;
}

.contact-line__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: 6px;
}

.contact-line a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 0.85rem;
  color: var(--ink);
  background: #fbfdfd;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(15, 139, 141, 0.16);
  border-color: var(--teal);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-alert {
  padding: 0.8rem 0.9rem;
  border-radius: 6px;
  font-weight: 800;
}

.form-alert--success {
  color: #0f5132;
  background: #dff6ea;
  border: 1px solid #bfe7d2;
}

.form-alert--error {
  color: #7a301b;
  background: #ffe9df;
  border: 1px solid #f6bda4;
}

.page-hero,
.article-hero {
  padding: 4.5rem 0;
  background:
    linear-gradient(90deg, rgba(15, 139, 141, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 139, 141, 0.08) 1px, transparent 1px),
    #f8fbfb;
  background-size: 52px 52px, 52px 52px, auto;
}

.page-hero p,
.article-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
}

.service-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 139, 141, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 139, 141, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbfb 0%, #eef6f4 58%, #fff7df 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 2rem;
  align-items: center;
  min-height: 560px;
  padding: 4.5rem 0;
}

.service-hero__copy h1 {
  max-width: 780px;
}

.service-hero__panel {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: 8px;
}

.service-hero__icon .lucide {
  width: 1.55rem;
  height: 1.55rem;
}

.service-hero__panel h2 {
  margin: 0;
  font-size: 1.55rem;
}

.service-hero__panel p {
  color: var(--muted);
}

.service-price-card {
  display: grid;
  gap: 0.15rem;
  padding: 1rem;
  color: #342500;
  background: #fff1bf;
  border: 1px solid #f6d56b;
  border-radius: var(--radius);
}

.service-price-card span {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-price-card strong {
  font-size: 1.4rem;
}

.service-mini-list {
  display: grid;
  gap: 0.55rem;
}

.service-mini-list span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail-card {
  min-height: 180px;
  padding: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.06);
}

.service-detail-card .lucide {
  width: 1.35rem;
  height: 1.35rem;
  margin-bottom: 1rem;
  color: var(--green);
}

.service-detail-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.service-process {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.service-process__intro {
  padding: 1.35rem;
  color: var(--paper);
  background: #102d35;
  border-radius: var(--radius);
}

.service-process__intro p {
  color: #d5e2e4;
}

.service-process__steps {
  display: grid;
  gap: 1rem;
}

.service-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.06);
}

.service-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #342500;
  background: var(--gold);
  border-radius: 6px;
  font-weight: 900;
}

.service-step h3 {
  margin-bottom: 0.25rem;
  font-size: 1.16rem;
}

.service-step p {
  margin: 0;
  color: var(--muted);
}

.service-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.service-cta-panel {
  padding: 1.35rem;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: var(--radius);
}

.service-cta-panel .eyebrow,
.service-process__intro .eyebrow {
  color: #fff4c9;
}

.service-cta-panel p {
  color: #e2f1f0;
}

.service-cta-panel .button--secondary {
  color: var(--ink);
}

.service-links {
  padding: 1.35rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-links h2 {
  margin-bottom: 1rem;
}

.local-hero {
  background:
    linear-gradient(90deg, rgba(41, 48, 122, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 139, 141, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbfb 0%, #edf7f6 52%, #f6fbf0 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.local-area-card__map {
  position: relative;
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 0.25rem;
  padding: 1rem;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    #102d35;
  background-size: 30px 30px, 30px 30px, auto;
  border-radius: var(--radius);
}

.local-area-card__map strong,
.local-area-card__map small {
  position: relative;
  z-index: 1;
}

.local-area-card__map small {
  color: #d5e2e4;
}

.map-pin-dot {
  position: absolute;
  top: 32px;
  right: 42px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(245, 184, 65, 0.16), 0 0 0 34px rgba(245, 184, 65, 0.08);
}

.local-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.local-stat-grid div {
  padding: 0.85rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.local-stat-grid strong {
  display: block;
  font-size: 1.25rem;
}

.local-stat-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nearby-list span {
  padding: 0.4rem 0.55rem;
  color: var(--teal-dark);
  background: #e6f6f3;
  border: 1px solid #c9e7e1;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.9rem;
}

.local-needs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.local-need-card {
  min-height: 210px;
  padding: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.06);
}

.local-need-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: 6px;
}

.local-need-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.local-need-card p {
  margin: 0;
  color: var(--muted);
}

.tutorial-card {
  display: grid;
  min-height: 100%;
  padding: 1.25rem;
}

.tutorial-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.tag {
  display: inline-flex;
  width: max-content;
  padding: 0.28rem 0.45rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}

.article-body {
  padding: 1.5rem;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

.seo-content {
  display: grid;
  gap: 1rem;
}

.seo-block {
  padding: 1.35rem;
}

.seo-block h2 {
  font-size: 1.55rem;
}

.seo-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 1rem;
}

.seo-panel {
  padding: 1rem;
}

.seo-panel ul,
.seo-block ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--teal-dark);
  text-decoration: none;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

.link-card:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.article-body h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.article-body ol {
  display: grid;
  gap: 1rem;
  padding-left: 1.35rem;
}

.article-aside {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 1rem;
}

.aside-box {
  padding: 1rem;
}

.aside-box ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  gap: 1rem;
}

.legal-block {
  padding: 1.25rem;
}

.legal-block h2 {
  font-size: 1.35rem;
}

.site-footer {
  padding: 2.2rem 0;
  color: #d6e2e3;
  background: #102d35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.hero .reveal,
.page-hero .reveal,
.article-hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-panel {
    position: fixed;
    inset: 78px 1rem auto 1rem;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: grid;
  }

  .header-call {
    justify-self: end;
  }

  .hero__inner,
  .service-hero__grid,
  .service-process,
  .service-bottom-grid,
  .method,
  .about-layout,
  .zones-layout,
  .contact-layout,
  .article-layout,
  .seo-layout {
    grid-template-columns: 1fr;
  }

  .article-aside,
  .seo-sidebar {
    position: static;
  }

  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-needs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand img {
    width: 148px;
  }

  .header-call {
    width: 44px;
    padding-inline: 0.75rem;
  }

  .call-text {
    display: none;
  }

  .hero__inner {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

  .service-hero__grid {
    min-height: auto;
    padding: 3.2rem 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  .section-header,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .page-hero h1,
  .article-hero h1 {
    font-size: 2rem;
  }

  .hero-proof,
  .trust-strip__inner,
  .grid--4,
  .grid--3,
  .grid--2,
  .service-detail-grid,
  .local-needs-grid,
  .quick-contact,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }
}

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