:root {
  --ink: #13212b;
  --muted: #5d6b74;
  --navy: #0c3559;
  --blue: #1267b1;
  --teal: #137f77;
  --teal-dark: #0b655f;
  --yellow: #f2c94c;
  --yellow-dark: #d9ad28;
  --green: #168a51;
  --paper: #ffffff;
  --soft: #f3f7f7;
  --line: #dce5e7;
  --danger: #b42318;
  --radius: 6px;
  --shadow: 0 14px 38px rgba(19, 33, 43, 0.11);
  --container: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(242, 201, 76, 0.85);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 82px 0;
}

.section-tight {
  padding: 58px 0;
}

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

.section-navy {
  color: #fff;
  background: var(--navy);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--yellow);
  content: "";
}

.section-navy .eyebrow,
.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  font-weight: 800;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.65rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0 0 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.section-navy .lead,
.hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 160ms ease, border-color 160ms ease,
    color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #10242e;
  background: var(--yellow);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background: #ffd866;
  border-color: #ffd866;
}

.btn-secondary {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

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

.btn-outline {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--navy);
}

.btn-whatsapp {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.btn-block {
  width: 100%;
}

.topbar {
  color: #fff;
  background: var(--navy);
  font-size: 0.87rem;
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(220, 229, 231, 0.95);
}

.nav-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-sub {
  margin-top: 4px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  color: #2d3e49;
  font-size: 0.91rem;
  font-weight: 750;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--teal);
}

.submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  display: none;
  width: 245px;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  list-style: none;
}

.submenu a {
  display: block;
  padding: 9px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
}

.submenu a:hover {
  color: var(--teal);
  background: var(--soft);
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  display: block;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.language-control {
  position: relative;
  display: inline-flex;
  height: 44px;
  align-items: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.language-control i {
  position: absolute;
  left: 11px;
  pointer-events: none;
  color: var(--teal);
}

.language-select {
  height: 42px;
  min-width: 82px;
  padding: 0 28px 0 32px;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.language-select:focus {
  outline: 0;
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-logo-link,
body > .skiptranslate {
  display: none !important;
}

html,
body {
  top: 0 !important;
}

[dir="rtl"] .language-control i {
  right: 11px;
  left: auto;
}

[dir="rtl"] .language-select {
  padding: 0 32px 0 28px;
}

.header-phone {
  min-height: 44px;
  padding: 9px 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 80px));
  overflow: hidden;
  color: #fff;
  background: #0a3544;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  width: min(62%, 860px);
  background: rgba(7, 42, 52, 0.78);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(720px, calc(100vh - 80px));
  align-items: center;
  padding: 64px 0 110px;
}

.hero-copy {
  width: min(680px, 58%);
}

.hero h1 {
  max-width: 650px;
}

.hero .lead {
  max-width: 620px;
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-points i {
  color: var(--yellow);
}

.trust-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

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

.trust-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px 20px;
  color: var(--ink);
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--teal);
  border-radius: 4px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--navy);
  font-size: 0.93rem;
  line-height: 1.2;
}

.trust-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

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

.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, box-shadow 160ms ease,
    border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(19, 127, 119, 0.45);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
}

.service-card-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 4px;
}

.service-card p {
  min-height: 76px;
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 800;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.check-list i {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  background: rgba(19, 127, 119, 0.1);
  border-radius: 4px;
  font-size: 0.78rem;
}

.check-list strong {
  display: block;
  color: var(--navy);
}

.check-list span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
}

.process-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 900;
}

.process-step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.type-item {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 750;
}

.type-item i {
  color: var(--teal);
}

.area-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 52px;
  align-items: start;
}

.district-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.district-list a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-size: 0.87rem;
  font-weight: 700;
}

.district-list a:hover {
  color: var(--yellow);
  border-color: rgba(242, 201, 76, 0.75);
}

.quote-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 50px;
  align-items: start;
}

.quote-side {
  position: sticky;
  top: 118px;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-line {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.contact-line i {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 4px;
}

.contact-line small {
  display: block;
  color: rgba(255, 255, 255, 0.67);
}

.quote-form {
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: #2b3d47;
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd7da;
  border-radius: 4px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(19, 127, 119, 0.13);
}

.consent-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
}

.consent-row a {
  color: var(--teal);
  text-decoration: underline;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status.error {
  color: var(--danger);
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 10px;
  margin: 34px auto 0;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.faq-list summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--teal);
  content: "+";
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.page-hero-media,
.page-hero-media img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-media img {
  object-fit: cover;
}

.page-hero-overlay {
  background: rgba(8, 48, 61, 0.78);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 430px;
  align-content: center;
  padding: 72px 0;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.25rem, 4.8vw, 4rem);
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
}

.breadcrumbs a:hover {
  color: var(--yellow);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.prose {
  max-width: 790px;
}

.prose h2 {
  margin: 38px 0 16px;
  font-size: clamp(1.6rem, 2.7vw, 2.25rem);
}

.prose h3 {
  margin: 28px 0 12px;
}

.prose p,
.prose li {
  color: #44545d;
}

.prose ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.side-panel {
  position: sticky;
  top: 116px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.side-panel h3 {
  margin-bottom: 14px;
}

.side-links {
  display: grid;
  gap: 7px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.side-links a {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
}

.side-links a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.neighborhood {
  padding: 7px 9px;
  color: #30434d;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.83rem;
  font-weight: 700;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.district-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
}

.district-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(19, 33, 43, 0.08);
}

.district-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.cta-band {
  color: #fff;
  background: var(--teal);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-copy {
  max-width: 760px;
}

.cta-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.site-footer {
  padding: 60px 0 24px;
  color: rgba(255, 255, 255, 0.8);
  background: #09283a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.8fr 1fr;
  gap: 42px;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand p {
  max-width: 350px;
  margin-top: 18px;
  font-size: 0.92rem;
}

.footer-title {
  margin-bottom: 15px;
  color: #fff;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.powered-by:hover {
  color: #fff;
}

.powered-by img {
  width: 104px;
  height: 23px;
  object-fit: contain;
}

.mobile-actions {
  position: fixed;
  z-index: 980;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(19, 33, 43, 0.12);
}

.mobile-actions a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-weight: 850;
}

.mobile-call {
  background: var(--navy);
}

.mobile-wa {
  background: var(--green);
}

.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: 20px;
  bottom: 20px;
  display: none;
  width: min(430px, calc(100% - 40px));
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner strong {
  display: block;
  color: var(--navy);
}

.cookie-banner p {
  margin: 7px 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions .btn {
  min-height: 40px;
  flex: 1;
  padding: 8px 12px;
  font-size: 0.84rem;
}

.notice {
  padding: 15px 16px;
  color: #36505a;
  background: #eef8f6;
  border: 1px solid rgba(19, 127, 119, 0.23);
  border-left: 4px solid var(--teal);
  border-radius: 4px;
}

.notice p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .nav-inner {
    gap: 14px;
  }

  .nav-link {
    padding-inline: 8px;
    font-size: 0.86rem;
  }

  .header-phone span {
    display: none;
  }

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

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

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

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .topbar-group:last-child {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-phone {
    display: none;
  }

  .language-control {
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    z-index: 1050;
    top: 114px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 18px 16px 90px;
    background: #fff;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-list {
    display: grid;
    align-items: stretch;
    gap: 5px;
  }

  .nav-link {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .submenu {
    position: static;
    display: grid;
    width: 100%;
    padding: 5px 0 8px 14px;
    border: 0;
    box-shadow: none;
  }

  .submenu a {
    min-height: 42px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-shade {
    width: 100%;
    background: rgba(7, 42, 52, 0.82);
  }

  .hero-inner {
    min-height: 720px;
    padding: 64px 0 260px;
  }

  .hero-copy {
    width: 100%;
  }

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

  .trust-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section-header,
  .split,
  .area-band,
  .quote-wrap,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    gap: 18px;
  }

  .quote-side,
  .side-panel {
    position: static;
  }

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

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

@media (max-width: 640px) {
  body {
    padding-bottom: 58px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .section-tight {
    padding: 44px 0;
  }

  .topbar-inner {
    min-height: 34px;
  }

  .topbar-group {
    width: 100%;
    justify-content: center;
  }

  .topbar-group > :last-child {
    display: none;
  }

  .nav-inner {
    min-height: 68px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .brand-sub {
    font-size: 0.65rem;
  }

  .language-control {
    width: 44px;
  }

  .language-control i {
    left: 13px;
  }

  .language-select {
    width: 44px;
    min-width: 44px;
    padding: 0;
    color: transparent;
  }

  .main-nav {
    top: 102px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    min-height: 780px;
    align-items: flex-start;
    padding: 58px 0 290px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 60px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 8px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:nth-child(n) {
    border-right: 0;
    border-left: 0;
  }

  .trust-item:nth-child(3) {
    display: none;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
  }

  .service-grid,
  .process-grid,
  .type-grid,
  .district-list,
  .district-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card p {
    min-height: 0;
  }

  .quote-form {
    padding: 20px 16px;
  }

  .page-hero,
  .page-hero-inner {
    min-height: 390px;
  }

  .page-hero-inner {
    padding: 54px 0;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .cta-inner,
  .cta-actions,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .mobile-actions {
    display: grid;
  }

  .cookie-banner {
    right: 12px;
    bottom: 70px;
    width: calc(100% - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
