:root {
  --primary: #0f1f2e;
  --primary-light: #183247;
  --primary-mid: #244961;
  --accent: #0e9aa7;
  --accent-light: #2ec6ce;
  --accent-dark: #0a727d;
  --warm-white: #f4f2eb;
  --gray: #9cadba;
  --gray-light: #d8e0e2;
  --red-urgent: #c0392b;
  --secondary: #c8a84b;
  --secondary-light: #e0c87d;
  --shadow: 0 18px 45px rgba(3, 10, 16, 0.18);
  --radius: 22px;
  --max-width: 1180px;
  --display-font: "Bebas Neue", sans-serif;
  --body-font: "IBM Plex Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--primary);
  background:
    radial-gradient(circle at top right, rgba(14, 154, 167, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(200, 168, 75, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfaf6 0%, #eef1f2 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: -44px;
  left: 16px;
  background: var(--accent);
  color: var(--primary);
  padding: 10px 14px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 154, 167, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 154, 167, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 85%);
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.top-alert {
  background: linear-gradient(120deg, rgba(192, 57, 43, 0.96), rgba(173, 42, 31, 0.95));
  color: #fff;
  font-size: 0.95rem;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.top-alert a {
  text-decoration: none;
  color: var(--warm-white);
  font-weight: 700;
}

.top-alert__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.top-alert__note {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-alert__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  animation: pulse 2s infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  transition: 0.25s ease;
  background: rgba(15, 31, 46, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 -1px 0 rgba(247, 244, 236, 0.08);
}

.site-header.is-scrolled {
  background: rgba(15, 31, 46, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--warm-white);
}

.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(18, 166, 181, 0.2), rgba(18, 166, 181, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px;
}

.brand__name {
  font-family: var(--display-font);
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 0.95;
}

.brand__sub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f0d998;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(247, 244, 236, 0.36);
  color: #f7f4ec;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

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

.site-nav a {
  text-decoration: none;
  color: #f7f4ec;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn {
  background: var(--accent);
  color: #f7fbfb;
  border: none;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #f7f4ec;
  border: 1px solid rgba(247, 244, 236, 0.32);
  box-shadow: inset 0 0 0 1px rgba(200, 168, 75, 0.14);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--accent-light);
  color: #f7fbfb;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.hero,
.page-hero {
  position: relative;
  padding: 120px 0 88px;
  background-color: #132b3d;
  background-image:
    linear-gradient(140deg, rgba(15, 31, 46, 0.76), rgba(24, 50, 71, 0.62)),
    url("images/hero-bg.jpg");
  background-position: center, right center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, auto 100%;
  color: var(--warm-white);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(15, 31, 46, 0.65));
  pointer-events: none;
}

.hero__inner,
.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent-light);
}

.hero h1 span,
.page-hero h1 span,
.highlight {
  color: var(--secondary-light);
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 0.95;
}

h1 {
  font-family: var(--display-font);
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

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

h2 {
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero p,
.page-hero p {
  max-width: 62ch;
  font-size: 1.08rem;
  color: rgba(244, 242, 235, 0.86);
}

.hero__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

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

.metric,
.service-card,
.trust-card,
.contact-card,
.faq-list details,
.process-step,
.coverage-card,
.cta-panel,
.side-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric {
  padding: 18px;
  background: rgba(247, 244, 236, 0.12);
  border: 1px solid rgba(247, 244, 236, 0.18);
  color: #f7f4ec;
}

.metric strong {
  display: block;
  font-family: var(--display-font);
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.hero-card {
  background: linear-gradient(170deg, rgba(247, 244, 236, 0.14), rgba(247, 244, 236, 0.06));
  border: 1px solid rgba(247, 244, 236, 0.22);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card p,
.hero-card h2 {
  color: #f7f4ec;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 20px auto 20px 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(46, 198, 206, 0.05), rgba(46, 198, 206, 0.9), rgba(46, 198, 206, 0.05));
}

.depth-scale {
  list-style: none;
  margin: 0;
  padding: 0 0 0 22px;
}

.depth-scale li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
  color: rgba(244, 242, 235, 0.9);
}

.depth-scale li span:last-child {
  color: var(--secondary-light);
  font-weight: 700;
}

main section {
  padding: 82px 0;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(46, 198, 206, 0.12), transparent 25%),
    radial-gradient(circle at bottom right, rgba(200, 168, 75, 0.1), transparent 26%),
    linear-gradient(180deg, #0d1b29 0%, #132b3d 100%);
  color: var(--warm-white);
}

.section-dark p,
.section-dark li {
  color: rgba(247, 244, 236, 0.9);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.35fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-intro p {
  margin: 0;
}

.tag-list,
.check-list,
.service-links,
.mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid rgba(200, 168, 75, 0.28);
  background: rgba(200, 168, 75, 0.1);
  font-size: 0.92rem;
  color: #f8f1d7;
}

.grid-3,
.services-grid,
.trust-grid,
.process-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.services-grid {
  align-items: stretch;
}

.service-card,
.trust-card,
.coverage-card,
.process-step,
.contact-card,
.side-panel,
.cta-panel {
  background: rgba(255, 255, 255, 0.95);
  padding: 26px;
  border: 1px solid rgba(15, 31, 46, 0.08);
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 242, 235, 0.96));
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent), var(--secondary));
}

.service-card__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.service-card__media {
  display: block;
  margin: -26px -26px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 31, 46, 0.08);
  background: rgba(15, 31, 46, 0.04);
  max-height: 220px;
}

.service-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.service-card__body {
  display: grid;
  gap: 0;
}

.section-dark .trust-card,
.section-dark .process-step,
.section-dark .coverage-card,
.section-dark .cta-panel,
.section-dark .side-panel {
  background: rgba(247, 244, 236, 0.08);
  border: 1px solid rgba(247, 244, 236, 0.14);
}

.service-card p:last-child,
.trust-card p:last-child,
.coverage-card p:last-child,
.process-step p:last-child {
  margin-bottom: 0;
}

.service-card__link,
.text-link {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.service-card h3,
.trust-card h3,
.coverage-card h3,
.process-step h3,
.contact-card h3,
.side-panel h3 {
  color: var(--primary);
}

.service-card p,
.service-card li,
.faq-list details p,
.faq-list details li {
  color: var(--primary);
}

.section-dark .trust-card h3,
.section-dark .process-step h3,
.section-dark .side-panel h3,
.section-dark .cta-panel h3,
.section-dark .coverage-card h3 {
  color: var(--warm-white);
}

.section-dark .trust-card p,
.section-dark .process-step p,
.section-dark .coverage-card p,
.section-dark .cta-panel p {
  color: rgba(247, 244, 236, 0.9);
}

.section-dark .service-card h3,
.section-dark .service-card p,
.section-dark .service-card li,
.section-dark .service-card__eyebrow,
.section-dark .faq-list details,
.section-dark .faq-list details p,
.section-dark .faq-list details li,
.section-dark .faq-list summary {
  color: var(--primary);
}

.section-dark .service-card__link,
.section-dark .text-link {
  color: var(--accent-light);
}

.check-list li,
.mini-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.check-list li::before,
.mini-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.45em;
  box-shadow: 0 0 0 3px rgba(14, 154, 167, 0.14);
}

.columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 22px;
  border: 1px solid rgba(200, 168, 75, 0.16);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--primary);
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent-dark);
  font-size: 1.4rem;
  line-height: 1;
}

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

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 22px;
  align-items: start;
}

.contact-card {
  background: rgba(247, 244, 236, 0.98);
  color: var(--primary);
}

.content-photo {
  display: block;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(15, 31, 46, 0.08);
  box-shadow: var(--shadow);
  max-height: 320px;
}

.content-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

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

.field,
.field--full {
  display: grid;
  gap: 8px;
}

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

label {
  font-weight: 700;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--gray-light);
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: var(--primary);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(18, 166, 181, 0.3);
  border-color: var(--accent);
}

.helper-text,
.form-status,
.small-note {
  font-size: 0.92rem;
}

.contact-card p,
.contact-card label,
.side-panel p,
.side-panel li {
  color: var(--primary);
}

.contact-card .eyebrow {
  color: var(--accent-dark);
}

.form-status {
  min-height: 1.2em;
  color: var(--accent-dark);
}

.helper-text {
  color: #345164;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.service-links {
  display: grid;
  gap: 12px;
}

.service-links a {
  text-decoration: none;
  font-weight: 700;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-card {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.coverage-card h3,
.side-panel h3,
.contact-card h3,
.cta-panel h3 {
  margin-bottom: 10px;
}

.side-panel {
  position: sticky;
  top: 108px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 238, 0.98));
}

.section-dark .side-panel p,
.section-dark .side-panel li,
.section-dark .side-panel a {
  color: rgba(247, 244, 236, 0.92);
}

.section-dark .side-panel .mini-list li::before {
  background: var(--secondary-light);
  box-shadow: 0 0 0 3px rgba(224, 200, 125, 0.15);
}

.site-footer {
  background: #0a1621;
  color: rgba(244, 242, 235, 0.84);
  padding: 34px 0 90px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) repeat(2, minmax(180px, 0.3fr));
  gap: 24px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--warm-white);
}

.site-footer a {
  color: #eef2f2;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 26px;
  padding-top: 18px;
  font-size: 0.92rem;
}

.mobile-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  background: rgba(6, 16, 24, 0.94);
  backdrop-filter: blur(14px);
  z-index: 120;
}

.btn-toolbar {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #f7fbfb;
  border-radius: 999px;
  border: none;
  padding: 14px 16px;
  font-weight: 700;
  font: inherit;
  cursor: pointer;
}

.btn-toolbar--chat {
  background: rgba(255, 255, 255, 0.12);
  color: var(--warm-white);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 130;
  width: min(360px, calc(100vw - 24px));
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.chat-widget > * {
  pointer-events: auto;
}

.chat-toggle {
  justify-self: end;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  color: #f7fbfb;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 16px 34px rgba(4, 15, 22, 0.22);
  cursor: pointer;
  padding: 0;
}

.chat-panel {
  display: none;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.chat-widget.is-open .chat-panel {
  display: block;
}

.chat-panel__header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--warm-white);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.chat-panel__header p {
  margin: 6px 0 0;
  color: rgba(244, 242, 235, 0.84);
}

.chat-close {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--warm-white);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  flex: 0 0 auto;
}

.chat-close:hover,
.chat-close:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.chat-panel__body {
  padding: 18px;
  max-height: 340px;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(244, 242, 235, 0.65), #fff);
}

.chat-message {
  max-width: 88%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 18px;
}

.chat-message--bot {
  background: #edf6f5;
  color: var(--primary);
}

.chat-message--user {
  background: var(--primary);
  color: var(--warm-white);
  margin-left: auto;
}

.chat-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--gray-light);
}

.chat-panel input {
  min-height: auto;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (max-width: 1024px) {
  .hero__inner,
  .page-hero__inner,
  .columns,
  .contact-wrap,
  .section-intro,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

  .side-panel {
    position: static;
    top: auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 82px 16px auto;
    background: rgba(8, 19, 27, 0.96);
    border-radius: 20px;
    padding: 18px;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .site-nav.is-open {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .hero,
  .page-hero {
    padding-top: 108px;
    background-position: center, center;
    background-size: cover, cover;
  }

  .hero__metrics,
  .grid-3,
  .services-grid,
  .trust-grid,
  .process-grid,
  .coverage-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .mobile-toolbar {
    display: grid;
  }

  .chat-widget {
    display: none;
  }

  .chat-toggle {
    width: 58px;
    height: 58px;
    font-size: 1.2rem;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 480px) {
  body {
    line-height: 1.55;
  }

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

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.6rem);
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .hero-card,
  .service-card,
  .trust-card,
  .contact-card,
  .cta-panel,
  .coverage-card,
  .process-step,
  .faq-list details {
    padding: 22px;
  }

  .service-card__media {
    margin: -22px -22px 0;
    max-height: 190px;
  }

  .service-card__media img {
    height: 190px;
  }

  .content-photo {
    max-height: 240px;
  }

  .content-photo img {
    height: 240px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .top-alert__inner,
  .site-header__inner {
    gap: 12px;
  }

  .brand__name {
    font-size: 1.72rem;
  }

  .btn,
  .btn-outline,
  .btn-toolbar {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* --- Cluster links (homepage) --- */
.cluster-links {
  max-width: 860px;
  margin: 0 auto 3rem;
  padding: 1.25rem 2rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.cluster-links p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}
.cluster-links a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Answer capsule sections --- */
.answer-capsule-section {
  padding: 2.5rem 0 1.5rem;
}
.answer-capsule-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.answer-capsule-section p {
  max-width: 740px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--body);
}

/* --- Related services internal (service pages) --- */
.related-services-internal {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 31, 46, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  margin: 0 0 0;
}
.related-services-internal h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--primary);
}
.related-services-internal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.related-services-internal li {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--primary);
}
.related-services-internal a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Other local services cards (service pages) --- */
.related-local-services {
  padding: 4rem 0;
}
.related-local-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.related-local-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 31, 46, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.related-local-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
}
.related-local-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
}
.related-local-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
  flex: 1;
}
.related-local-card a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.related-local-card a:hover {
  text-decoration: underline;
}
