:root {
  --ink: #17242b;
  --muted: #60707a;
  --paper: #ffffff;
  --soft: #f4f8f9;
  --line: #dce7ea;
  --teal: #178e9b;
  --teal-dark: #0c5965;
  --blue: #265fbd;
  --red: #d83c36;
  --gold: #d69b39;
  --shadow: 0 18px 45px rgba(15, 42, 52, .12);
  --radius: 8px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  transition: background-color .18s ease, box-shadow .18s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(12, 45, 57, .96);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: 190px;
  height: 53px;
  object-fit: contain;
}

.nav-shell {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-shell > summary {
  list-style: none;
}

.nav-shell > summary::-webkit-details-marker {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-button {
  display: inline-flex;
  position: relative;
  align-items: center;
  min-height: 42px;
  gap: 6px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-button {
  padding-right: 18px;
}

.nav-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transform-origin: center;
  transition: transform .18s ease, opacity .18s ease, color .18s ease;
  opacity: .82;
}

.nav-link::after,
.nav-button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .16s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-button:hover::after,
.nav-button:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-item:hover > .nav-button::before,
.nav-item:focus-within > .nav-button::before,
.nav-button[aria-expanded="true"]::before {
  transform: translateY(-35%) rotate(225deg);
  opacity: 1;
}

.submenu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 285px;
  padding: 8px;
  margin: 0;
  list-style: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: 4px;
  color: var(--ink);
}

.submenu a:hover,
.submenu a:focus-visible {
  background: var(--soft);
  color: var(--teal-dark);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82svh;
  padding: 154px 0 90px;
  color: #fff;
  overflow: hidden;
  background-color: #0d3038;
  background-position: center;
  background-size: cover;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 32, 39, .76), rgba(6, 32, 39, .44) 52%, rgba(6, 32, 39, .22)),
    linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .1));
}

.hero--home {
  background-image: none;
}

.hero--service {
  min-height: 56svh;
  background-image: url("../img/basari-isitma-sogutma-optimized.webp");
}

.hero--hvac {
  background-image: url("../img/Isitma-ve-Sogutma-Sistemleri-optimized.webp");
}

.hero--kombi {
  background-image: url("../img/2-optimized.webp");
}

.hero--technical {
  background-image: url("../img/1-optimized.webp");
}

.hero--contact {
  min-height: 54svh;
  background-image: url("../img/gebze_klima_servisi-1024x683.jpg");
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin: 0 0 18px;
  color: #e9fbff;
  background: rgba(23, 142, 155, .82);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  line-height: 1.15;
  font-weight: 850;
}

h1 {
  max-width: 860px;
  font-size: 54px;
}

.hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: var(--teal);
}

.btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .05);
}

.btn--light {
  color: var(--teal-dark);
  background: #fff;
}

.section {
  padding: 74px 0;
}

.section--soft {
  background: var(--soft);
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 32px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.content h2 {
  font-size: 36px;
}

.section-head p,
.content p,
.content li {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.info-card,
.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(19, 55, 65, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover,
.info-card:hover,
.contact-panel:hover,
.logo-item:hover {
  border-color: rgba(23, 142, 155, .28);
  box-shadow: 0 18px 46px rgba(15, 42, 52, .13);
  transform: translateY(-3px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-card-body,
.info-card,
.contact-panel {
  padding: 24px;
}

.service-card h3,
.info-card h3,
.contact-panel h2 {
  font-size: 24px;
}

.contact-panel h2 {
  margin-bottom: 18px;
}

.service-card p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.section-head p,
.content p,
.service-card p,
.info-card p,
.feature-card p,
.zone-card p,
.faq-item p,
.contact-panel p {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.section-head.center p {
  text-align-last: center;
}

.text-link {
  display: inline-flex;
  color: var(--teal-dark);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red);
}

.feature-list,
.check-list,
.area-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.check-list li,
.area-list li {
  position: relative;
  padding-left: 24px;
}

.feature-card {
  display: grid;
  gap: 12px;
  min-height: 178px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(18, 65, 76, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card:hover {
  border-color: rgba(23, 142, 155, .28);
  box-shadow: 0 20px 48px rgba(15, 42, 52, .13);
  transform: translateY(-4px);
}

.feature-card svg {
  width: 38px;
  height: 38px;
  color: var(--teal);
}

.feature-card h3 {
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.check-list li::before,
.area-list li::before {
  content: "";
  position: absolute;
  top: .78em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
}

.content {
  display: grid;
  gap: 16px;
}

.content h2:not(:first-child) {
  margin-top: 16px;
}

.content h3 {
  font-size: 25px;
}

.service-article {
  max-width: 980px;
}

.service-article .content {
  gap: 14px;
}

.service-article > .content,
.service-article .content {
  width: 100%;
}

.service-block {
  display: grid;
  gap: 12px;
  padding-top: 22px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.service-block h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.service-block p {
  margin: 0;
}

.content-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: center;
  gap: 46px;
}

.split--about {
  align-items: center;
}

.about-image {
  height: clamp(320px, 34vw, 460px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.area-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.zone-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(18, 65, 76, .07);
}

.zone-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 12px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, .92), rgba(255, 255, 255, .3) 34%, transparent 58%),
    linear-gradient(135deg, rgba(226, 249, 252, .92), rgba(238, 246, 255, .82));
  border: 1px solid rgba(23, 142, 155, .22);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  isolation: isolate;
  transform: translateZ(0);
}

.map-picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.zone-map .map-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 22px 26px rgba(22, 74, 88, .16));
  transition: transform .28s ease, filter .28s ease;
  animation: mapLiftIn .65s ease both;
}

.zone-map:hover .map-img,
.zone-map:focus-within .map-img {
  transform: translateY(-4px) scale(1.018);
  filter: drop-shadow(0 26px 30px rgba(22, 74, 88, .2));
}

.map-glow {
  position: absolute;
  inset: 8%;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(33, 183, 190, .18), transparent 68%);
  filter: blur(18px);
  transform: translateY(22%);
}

.map-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: mapPointIn .45s ease both;
  animation-delay: var(--delay, 0s);
}

.map-hotspot .dot,
.map-hotspot .pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.map-hotspot .dot {
  z-index: 2;
  width: 11px;
  height: 11px;
  background: #fff;
  border: 3px solid var(--teal-dark);
  box-shadow: 0 5px 13px rgba(0, 75, 90, .22);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.map-hotspot .pulse {
  width: 24px;
  height: 24px;
  background: rgba(18, 143, 157, .18);
  animation: mapPulse 1.8s ease-out infinite;
}

.map-hotspot .tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  display: grid;
  gap: 2px;
  width: max-content;
  max-width: 210px;
  padding: 9px 11px;
  color: #0f2430;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(23, 142, 155, .18);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(17, 48, 58, .16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.map-hotspot .tooltip strong {
  font-size: 13px;
  line-height: 1.15;
}

.map-hotspot .tooltip em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.35;
}

.map-hotspot:hover .dot,
.map-hotspot:focus-visible .dot,
.map-hotspot.is-active .dot {
  background: var(--yellow);
  border-color: #0c6f7c;
  transform: translate(-50%, -50%) scale(1.22);
}

.map-hotspot:hover .tooltip,
.map-hotspot:focus-visible .tooltip,
.map-hotspot.is-active .tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes mapLiftIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mapPointIn {
  from {
    opacity: 0;
    transform: translate(-50%, -44%) scale(.72);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes mapPulse {
  0% {
    opacity: .8;
    transform: translate(-50%, -50%) scale(.68);
  }
  70% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7);
  }
}

.zone-card h3 {
  font-size: 22px;
}

.zone-card p {
  margin: 8px 0 14px;
  color: var(--muted);
}

.zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.zone-pills li {
  padding: 6px 9px;
  color: var(--teal-dark);
  background: #eefbfc;
  border: 1px solid #c9edf2;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.zone-pills a {
  color: inherit;
  text-decoration: none;
}

.zone-pills li:has(a):hover,
.zone-pills li:has(a):focus-within {
  color: #082f36;
  background: #fff7cf;
  border-color: rgba(238, 182, 38, .82);
  transform: translateY(-1px);
}

.zone-pills li.is-active {
  color: #082f36;
  background: #fff7cf;
  border-color: rgba(238, 182, 38, .82);
  transform: translateY(-1px);
}

.area-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.area-list {
  display: grid;
  gap: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.contact-line {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-line strong {
  color: var(--teal-dark);
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(23, 142, 155, .18);
  border-color: var(--teal);
}

.honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.logo-item {
  display: grid;
  place-items: center;
  min-height: 94px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.logo-item img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
}

.reference-image {
  display: grid;
  place-items: center;
  max-width: 1040px;
  margin-inline: auto;
}

.references-document-section {
  padding-top: 54px;
}

.reference-document-image {
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin-inline: auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(18, 65, 76, .06);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(23, 142, 155, .34);
  box-shadow: 0 18px 40px rgba(18, 65, 76, .11);
}

.faq-item summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform .18s ease, background-color .18s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
  background: var(--teal-dark);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  color: #d8edf2;
  background: #0b3038;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, .8fr));
  gap: 28px;
  padding: 48px 0;
}

.footer-logo {
  width: 190px;
  height: 53px;
  object-fit: contain;
  margin-bottom: 16px;
}

.site-footer h2,
.site-footer h3 {
  font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #fff;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.site-footer a {
  color: #d8edf2;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-bottom {
  padding: 16px 0;
  color: #bed5db;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 14px;
}

.quick-actions {
  position: fixed;
  right: 16px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  gap: 9px;
  transform: none;
}

.quick-actions.is-collapsed .quick-action {
  display: none;
}

.quick-actions.is-collapsed .quick-close {
  background: var(--teal);
}

.quick-action,
.quick-close {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
}

.quick-action svg,
.quick-close svg {
  width: 23px;
  height: 23px;
}

.quick-action--phone {
  background: var(--red);
}

.quick-action--whatsapp {
  background: #19a85a;
}

.quick-action--mail {
  background: var(--blue);
}

.quick-action--instagram {
  background:
    radial-gradient(circle at 30% 110%, #fdf497 0 20%, #fd5949 42%, #d6249f 62%, #285aeb 100%);
}

.quick-action--form {
  background: #6b4dbd;
}

.quick-close {
  background: #263944;
  cursor: pointer;
}

.quick-close .icon-open {
  display: none;
}

.quick-actions.is-collapsed .quick-close .icon-close {
  display: none;
}

.quick-actions.is-collapsed .quick-close .icon-open {
  display: block;
}

.quick-action:focus-visible,
.quick-close:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.nav-button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .85);
  outline-offset: 3px;
}

.page-note {
  padding: 18px 20px;
  color: var(--teal-dark);
  background: #ecfbfd;
  border: 1px solid #bce9ef;
  border-radius: var(--radius);
}

@media (max-width: 920px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    width: 100dvw;
  }

  .header-inner {
    position: relative;
    width: calc(100dvw - 40px);
    max-width: none;
    margin-inline: auto;
  }

  .brand {
    min-width: 0;
    flex: 0 1 auto;
  }

  .nav-shell {
    position: relative;
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 3;
    margin-left: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 2;
    display: none;
    width: min(360px, calc(100dvw - 40px));
    max-width: calc(100dvw - 40px);
    align-items: stretch;
    max-height: min(74svh, 640px);
    padding: 12px;
    overflow: auto;
    background:
      linear-gradient(180deg, rgba(13, 51, 64, .98), rgba(10, 38, 49, .98));
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(7, 19, 26, .34);
    backdrop-filter: blur(16px);
    transform: none;
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 10px;
  }

  .nav-item {
    display: grid;
    gap: 8px;
  }

  .nav-link,
  .nav-button {
    width: 100%;
    justify-content: flex-start;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 18px;
    letter-spacing: 0;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  }

  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-button:hover,
  .nav-button:focus-visible,
  .nav-link[aria-current="page"],
  .nav-item.is-open > .nav-button {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(159, 231, 239, .24);
  }

  .nav-link::after,
  .nav-button::after {
    display: none;
  }

  .nav-button {
    padding-right: 48px;
  }

  .nav-button::before {
    right: 20px;
    width: 10px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }

  .submenu {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 10px;
    margin: 0;
    gap: 8px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(23, 142, 155, .16);
    border-radius: 18px;
    box-shadow: none;
  }

  .nav-item.is-open > .submenu,
  .nav-item:focus-within > .submenu {
    display: grid;
  }

  .submenu a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    color: var(--ink);
    border-radius: 14px;
    background: #fff;
    font-size: 17px;
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(11, 30, 38, .08);
  }

  h1 {
    font-size: 38px;
  }

  .hero {
    min-height: 74svh;
    padding: 132px 0 74px;
  }

  .grid--3,
  .grid--2,
  .split,
  .area-wrap,
  .zone-grid,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 74px;
    width: calc(100dvw - 28px);
  }

  .brand,
  .brand img {
    width: 160px;
    min-width: 160px;
    height: auto;
  }

  .site-nav {
    width: min(340px, calc(100dvw - 28px));
    max-width: calc(100dvw - 28px);
  }

  h1 {
    font-size: 31px;
  }

  .section-head h2,
  .content h2 {
    font-size: 29px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 64px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .about-image {
    height: 280px;
  }

  .feature-grid,
  .area-columns,
  .form-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .zone-card {
    grid-template-columns: 1fr;
  }

  .zone-map {
    padding: 8px;
  }

  .map-stage {
    max-width: 100%;
  }

  .map-hotspot {
    width: 26px;
    height: 26px;
  }

  .map-hotspot .tooltip {
    max-width: 170px;
    padding: 7px 9px;
  }

  .quick-actions {
    display: none;
  }
}

/* Desktop services menu: compact, balanced and always contained by the viewport. */
@media (min-width: 921px) {
  .site-nav .nav-item > .submenu {
    top: calc(100% + 12px);
    right: -72px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(620px, calc(100vw - 40px));
    max-height: min(68vh, 520px);
    padding: 14px;
    gap: 6px 10px;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(255, 255, 255, .99);
    border: 1px solid rgba(12, 92, 104, .16);
    border-top: 3px solid var(--teal);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(3, 30, 39, .2);
    transform: translateY(8px) scale(.985);
    transform-origin: top right;
  }

  .site-nav .nav-item:hover > .submenu,
  .site-nav .nav-item:focus-within > .submenu {
    transform: translateY(0) scale(1);
  }

  .site-nav .submenu li {
    min-width: 0;
  }

  .site-nav .submenu a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 9px 12px 9px 30px;
    color: #18313a;
    background: #f7fafb;
    border: 1px solid transparent;
    border-radius: 6px;
    line-height: 1.35;
    transition: color .16s ease, background-color .16s ease, border-color .16s ease, transform .16s ease;
  }

  .site-nav .submenu a::before {
    content: "";
    position: absolute;
    left: 14px;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    opacity: .72;
    transition: opacity .16s ease, transform .16s ease;
  }

  .site-nav .submenu a:hover,
  .site-nav .submenu a:focus-visible,
  .site-nav .submenu a[aria-current="page"] {
    color: #075765;
    background: #edf8f9;
    border-color: rgba(15, 140, 153, .2);
    transform: translateX(2px);
  }

  .site-nav .submenu a:hover::before,
  .site-nav .submenu a:focus-visible::before,
  .site-nav .submenu a[aria-current="page"]::before {
    opacity: 1;
    transform: scale(1.22);
  }

  .site-nav .submenu::-webkit-scrollbar {
    width: 8px;
  }

  .site-nav .submenu::-webkit-scrollbar-thumb {
    background: rgba(15, 140, 153, .34);
    border: 2px solid #fff;
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zone-map .map-img,
  .map-hotspot,
  .map-hotspot .pulse {
    animation: none;
  }

  .zone-map .map-img,
  .map-hotspot .dot,
  .map-hotspot .tooltip {
    transition: none;
  }
}

/* Search-focused service pages: readable, editable and stable at every viewport. */
.service-page {
  background: #fff;
}

.prose {
  width: min(100%, 980px);
}

.prose > *:first-child {
  margin-top: 0;
}

.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.service-breadcrumb a {
  color: var(--teal-dark);
  font-weight: 750;
}

.service-breadcrumb span[aria-hidden="true"] {
  color: #93a5ad;
}

.service-intro {
  display: grid;
  gap: 18px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.service-intro h2,
.service-section h2,
.service-faq h2,
.service-related h2 {
  max-width: 820px;
  font-size: clamp(28px, 4vw, 38px);
  text-wrap: balance;
}

.service-intro > p,
.service-section > p,
.service-faq > p,
.service-related > p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.service-summary-grid,
.service-process-grid,
.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-summary,
.service-process-step,
.service-related-link {
  min-width: 0;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-summary strong,
.service-process-step strong,
.service-related-link strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.service-summary span,
.service-process-step span,
.service-related-link span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-section,
.service-faq,
.service-related {
  display: grid;
  gap: 20px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.service-section:last-child,
.service-related:last-child {
  border-bottom: 0;
}

.service-process-grid {
  counter-reset: service-step;
}

.service-process-step {
  position: relative;
  padding-top: 54px;
  counter-increment: service-step;
}

.service-process-step::before {
  content: counter(service-step, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
}

.service-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-check-list li {
  position: relative;
  min-width: 0;
  padding: 12px 0 12px 25px;
  border-bottom: 1px solid var(--line);
  overflow-wrap: break-word;
}

.service-check-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 2px;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
}

.service-faq-list {
  display: grid;
  gap: 10px;
}

.service-faq .faq-item {
  margin: 0;
}

.service-related-link {
  transition: border-color .16s ease, background-color .16s ease, transform .16s ease;
}

.service-related-link:hover,
.service-related-link:focus-visible {
  background: #fff;
  border-color: rgba(23, 142, 155, .52);
  transform: translateY(-2px);
}

.service-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 32px;
  margin-top: 48px;
  color: #fff;
  background: #0c5965;
  border-radius: var(--radius);
}

.service-cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 34px);
}

.service-cta-band p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.service-cta-band .cta-row {
  margin: 0;
}

.service-directory {
  display: grid;
  gap: 24px;
}

.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-directory-link {
  display: grid;
  align-content: start;
  min-height: 142px;
  gap: 8px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.service-directory-link:hover,
.service-directory-link:focus-visible {
  border-color: rgba(23, 142, 155, .48);
  box-shadow: 0 16px 36px rgba(15, 42, 52, .1);
  transform: translateY(-3px);
}

.service-directory-link strong {
  font-size: 18px;
}

.service-directory-link span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.content-link,
.check-list a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.content-link:hover,
.content-link:focus-visible,
.check-list a:hover,
.check-list a:focus-visible {
  color: var(--teal);
}

@media (max-width: 860px) {
  .service-summary-grid,
  .service-process-grid,
  .service-related-grid,
  .service-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .service-intro {
    padding-bottom: 34px;
  }

  .service-section,
  .service-faq,
  .service-related {
    padding: 38px 0;
  }

  .service-summary-grid,
  .service-process-grid,
  .service-related-grid,
  .service-directory-grid,
  .service-check-list {
    grid-template-columns: 1fr;
  }

  .service-summary,
  .service-process-step,
  .service-related-link,
  .service-directory-link {
    padding: 18px;
  }

  .service-process-step {
    padding-top: 50px;
  }

  .service-cta-band {
    padding: 24px 20px;
  }

  .service-cta-band .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-cta-band .btn {
    width: 100%;
  }
}

/* 2026 controlled visual refinement */
:root {
  --ink: #14242c;
  --muted: #52656f;
  --soft: #f3f7f8;
  --line: #d5e1e4;
  --teal: #0f8c99;
  --teal-dark: #0a5661;
  --blue: #255fba;
  --red: #d93b35;
  --shadow: 0 18px 42px rgba(12, 44, 54, .11);
  --shadow-soft: 0 10px 28px rgba(12, 44, 54, .07);
  --radius: 6px;
}

body {
  font-family: "Segoe UI Variable", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: "Segoe UI Variable", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.section-head p,
.content p,
.service-card p,
.info-card p,
.feature-card p,
.zone-card p,
.faq-item p,
.contact-panel p {
  text-align: left;
  text-align-last: auto;
  hyphens: manual;
}

.site-header {
  background: rgba(8, 39, 49, .76);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  transition: background-color .18s ease, box-shadow .18s ease, min-height .18s ease;
}

.admin-bar .site-header,
body.customize-support .site-header {
  top: 32px;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 39, 49, .96);
  box-shadow: 0 14px 36px rgba(3, 19, 25, .2);
}

.header-inner {
  min-height: 76px;
  gap: 24px;
}

.brand,
.brand img {
  width: 180px;
  min-width: 180px;
  height: auto;
}

.site-nav {
  gap: 20px;
  font-size: 15px;
}

.nav-link,
.nav-button {
  min-height: 40px;
}

.nav-item:last-child .nav-link {
  min-height: 40px;
  padding: 0 15px;
  color: #083b44;
  background: #fff;
  border-radius: 4px;
}

.nav-item:last-child .nav-link::after {
  display: none;
}

.nav-item:last-child .nav-link:hover,
.nav-item:last-child .nav-link:focus-visible {
  color: #fff;
  background: var(--teal);
}

.submenu {
  top: calc(100% + 10px);
  padding: 7px;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(4, 27, 34, .18);
}

.hero--modern {
  min-height: min(720px, 82svh);
  padding: 142px 0 78px;
}

.hero--modern::before {
  background:
    linear-gradient(90deg, rgba(4, 29, 36, .83), rgba(4, 29, 36, .58) 50%, rgba(4, 29, 36, .28)),
    linear-gradient(180deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, .26));
}

.hero--modern .hero-media {
  object-position: center 42%;
}

.hero--modern .hero-content {
  max-width: 760px;
}

.hero--modern h1 {
  max-width: 720px;
  font-size: 56px;
  line-height: 1.08;
}

.hero--modern p {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  line-height: 1.65;
}

.hero--modern .eyebrow {
  min-height: 30px;
  margin-bottom: 20px;
  padding: 0 11px;
  background: rgba(15, 140, 153, .88);
  border-color: rgba(255, 255, 255, .28);
  font-size: 12px;
  letter-spacing: .04em;
}

.hero--modern .cta-row {
  margin-top: 26px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 20px 0 0;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .86);
  border-top: 1px solid rgba(255, 255, 255, .2);
  list-style: none;
  font-size: 13px;
  font-weight: 650;
}

.hero-proof li {
  position: relative;
  padding-left: 17px;
}

.hero-proof li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #53d5df;
  border-radius: 50%;
  transform: translateY(-50%);
}

.btn {
  min-height: 46px;
  border-radius: 4px;
  letter-spacing: 0;
}

.btn--primary {
  background: #0f96a3;
  box-shadow: 0 10px 24px rgba(0, 109, 121, .24);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #0a7884;
}

.section {
  padding: 86px 0;
}

.section-head {
  gap: 14px;
  max-width: 790px;
  margin-bottom: 38px;
}

.section-head.center {
  max-width: 820px;
}

.section-head--compact {
  max-width: 680px;
  margin-bottom: 30px;
}

.section-head h2,
.content h2 {
  font-size: 38px;
  line-height: 1.16;
}

.section-head p,
.content p,
.content li {
  color: var(--muted);
}

.section-head p {
  margin: 0;
  font-size: 16px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  gap: 9px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--teal);
}

.section-head.center .section-kicker {
  margin-inline: auto;
}

.section--services {
  padding-top: 80px;
}

.section--services .grid--3 {
  gap: 20px;
  align-items: stretch;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  border-color: #d7e2e5;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(15, 140, 153, .42);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card img {
  aspect-ratio: 16 / 9;
}

.service-card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  min-height: 250px;
  padding: 25px;
}

.service-card h3 {
  font-size: 23px;
  line-height: 1.2;
}

.service-card p {
  margin: 13px 0 20px;
  line-height: 1.65;
}

.service-card .text-link {
  align-self: end;
  margin-top: auto;
}

.text-link--arrow::after,
.service-card .text-link::after {
  content: "\2192";
  margin-left: 8px;
  transition: transform .16s ease;
}

.text-link--arrow:hover::after,
.text-link--arrow:focus-visible::after,
.service-card .text-link:hover::after,
.service-card .text-link:focus-visible::after {
  transform: translateX(3px);
}

.section--advantages {
  padding: 72px 0;
  background: #f2f7f8;
}

.section--advantages .container {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid {
  gap: 0;
}

.feature-card {
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  align-content: start;
  min-height: 0;
  gap: 4px 14px;
  padding: 4px 22px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card:hover {
  border-color: var(--line);
  box-shadow: none;
  transform: translateY(-2px);
}

.feature-card svg {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  padding: 8px;
  color: #fff;
  background: var(--teal);
  border-radius: 6px;
}

.feature-card h3 {
  grid-column: 2;
  font-size: 17px;
  line-height: 1.3;
}

.feature-card p {
  grid-column: 2;
  font-size: 14px;
  line-height: 1.55;
}

.section--guidance .split {
  grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
  gap: 64px;
}

.section--guidance .content {
  gap: 14px;
}

.section--guidance .content p {
  max-width: 66ch;
  margin: 0;
}

.section--guidance .content-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 22px 54px rgba(12, 44, 54, .14);
}

.section--guidance .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin-top: 4px;
}

.section--guidance .check-list li {
  padding-left: 24px;
  color: #2d454f;
  font-size: 14px;
  font-weight: 650;
}

.section--guidance .check-list li::before {
  top: .6em;
  width: 11px;
  height: 6px;
  background: transparent;
  border: 0 solid var(--teal);
  border-width: 0 0 2px 2px;
  border-radius: 0;
  transform: rotate(-45deg);
}

.section--zones {
  padding-block: 80px;
}

.zone-grid {
  gap: 22px;
}

.zone-card {
  gap: 20px;
  padding: 16px;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.zone-map {
  padding: 10px;
  border-radius: 6px;
}

.zone-card > div:last-child {
  padding: 0 4px 4px;
}

.zone-pills {
  gap: 7px;
}

.zone-pills li {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
}

.section--references {
  border-top: 1px solid #edf2f3;
}

.logo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.logo-item {
  min-height: 88px;
  padding: 14px;
  border-radius: 6px;
  box-shadow: none;
}

.logo-item img {
  max-height: 48px;
  filter: saturate(.84);
  opacity: .9;
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}

.logo-item:hover img {
  filter: saturate(1);
  opacity: 1;
  transform: scale(1.025);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.section--faq {
  background: #fbfcfc;
}

.faq-list {
  gap: 10px;
  max-width: 960px;
}

.faq-item {
  border-radius: 6px;
  box-shadow: none;
}

.faq-item:hover,
.faq-item[open] {
  box-shadow: 0 12px 32px rgba(12, 44, 54, .08);
}

.faq-item summary {
  min-height: 68px;
  padding: 19px 62px 19px 22px;
  font-weight: 750;
}

.faq-item p {
  max-width: 82ch;
  padding: 0 62px 22px 22px;
  line-height: 1.65;
}

.section--contact-cta {
  padding: 64px 0;
  color: #fff;
  background: #0a3741;
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
}

.section--contact-cta .content {
  gap: 10px;
  max-width: 650px;
}

.section--contact-cta .section-kicker {
  color: #8fe2e8;
}

.section--contact-cta .section-kicker::before {
  background: #46c8d2;
}

.section--contact-cta h2 {
  color: #fff;
}

.section--contact-cta p {
  margin: 0;
  color: #cfe1e5;
}

.section--contact-cta .cta-row {
  justify-content: flex-end;
  margin-top: 0;
}

.section--contact-cta .btn {
  white-space: nowrap;
}

.footer-inner {
  padding: 54px 0 48px;
}

.site-footer p {
  max-width: 34ch;
  color: #c2d9de;
}

.site-footer h3 {
  font-size: 15px;
  letter-spacing: .02em;
}

.quick-actions {
  right: 18px;
  bottom: 24px;
  gap: 8px;
}

.quick-action,
.quick-close {
  position: relative;
  width: 44px;
  height: 44px;
  box-shadow: 0 9px 20px rgba(0, 0, 0, .18);
  transition: transform .16s ease, opacity .16s ease, box-shadow .16s ease;
}

.quick-action:hover,
.quick-action:focus-visible,
.quick-close:hover,
.quick-close:focus-visible {
  transform: translateX(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .24);
}

.quick-action svg,
.quick-close svg {
  width: 21px;
  height: 21px;
}

.quick-action::before {
  content: attr(aria-label);
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  width: max-content;
  max-width: 190px;
  padding: 6px 9px;
  color: #fff;
  background: #142f38;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
  opacity: 0;
  pointer-events: none;
  transform: translate(4px, -50%);
  transition: opacity .15s ease, transform .15s ease;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.quick-action:hover::before,
.quick-action:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.quick-actions.is-collapsed .quick-action {
  display: none;
}

.quick-actions.is-collapsed .quick-close {
  background: #263944;
}

@media (max-width: 1100px) {
  .section--references .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section--contact-cta .cta-row {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .site-header {
    background: rgba(8, 39, 49, .94);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand,
  .brand img {
    width: 170px;
    min-width: 170px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
    backdrop-filter: none;
  }

  .site-nav {
    top: calc(100% + 8px);
    width: min(380px, calc(100dvw - 40px));
    padding: 10px;
    background: #0b3440;
    border-radius: 8px;
    backdrop-filter: none;
  }

  .nav-link,
  .nav-button,
  .nav-item:last-child .nav-link {
    min-height: 52px;
    padding: 0 16px;
    color: #fff;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    font-size: 17px;
  }

  .nav-button {
    padding-right: 46px;
  }

  .submenu {
    padding: 7px;
    border-radius: 6px;
  }

  .submenu a {
    min-height: 48px;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: none;
  }

  .hero--modern {
    min-height: 680px;
    padding: 126px 0 70px;
  }

  .hero--modern h1 {
    font-size: 44px;
  }

  .feature-card {
    padding: 14px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section--guidance .split {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header,
  body.customize-support .site-header {
    top: 46px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 68px;
    width: calc(100dvw - 28px);
  }

  .brand,
  .brand img {
    width: 154px;
    min-width: 154px;
  }

  .site-nav {
    width: calc(100dvw - 28px);
    max-width: calc(100dvw - 28px);
    max-height: calc(100svh - 92px);
  }

  .hero--modern {
    min-height: 650px;
    padding: 112px 0 54px;
  }

  .hero--modern .hero-media {
    object-position: 60% center;
  }

  .hero--modern h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .hero--modern p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero--modern .cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero--modern .cta-row .btn:last-child {
    grid-column: 1 / -1;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
    padding-top: 16px;
    margin-top: 18px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2,
  .content h2 {
    font-size: 30px;
  }

  .section--advantages {
    padding: 50px 0;
  }

  .section--advantages .container {
    padding: 28px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:nth-last-child(-n + 2) {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .service-card-body {
    min-height: 230px;
    padding: 22px;
  }

  .section--guidance .check-list {
    grid-template-columns: 1fr;
  }

  .section--references .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .section--references .logo-item {
    min-height: 68px;
    padding: 8px;
  }

  .section--references .logo-item img {
    width: 100%;
    max-width: 150px;
    max-height: 42px;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 17px 54px 17px 18px;
    font-size: 15px;
  }

  .faq-item summary::after {
    right: 17px;
  }

  .faq-item p {
    padding: 0 18px 18px;
    font-size: 15px;
  }

  .section--contact-cta {
    padding: 54px 0;
  }

  .section--contact-cta .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .section--contact-cta .btn {
    width: 100%;
  }

  .footer-inner {
    padding: 44px 0 38px;
  }

  .quick-actions {
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    padding: 7px 12px calc(7px + env(safe-area-inset-bottom));
    background: rgba(8, 39, 49, .98);
    border-top: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 -10px 28px rgba(4, 24, 31, .18);
  }

  .quick-action,
  .quick-close {
    display: grid;
    width: 44px;
    height: 44px;
    margin-inline: auto;
    box-shadow: none;
  }

  .quick-actions.is-collapsed {
    grid-template-columns: 1fr;
  }

  .quick-actions.is-collapsed .quick-action {
    display: none;
  }

  .quick-actions.is-collapsed .quick-close {
    display: grid;
    grid-column: 1;
  }

  .quick-action--phone {
    grid-column: 1;
  }

  .quick-action--whatsapp {
    grid-column: 2;
  }

  .quick-action--instagram {
    grid-column: 3;
  }

  .quick-action--mail {
    grid-column: 4;
  }

  .quick-action--form {
    grid-column: 5;
  }

  .quick-close {
    grid-column: 6;
  }

  .quick-action::before {
    display: none;
  }
}

/* Consistent reading rhythm across phone, tablet, desktop and wide displays. */
.section-head p,
.content p,
.service-card p,
.info-card p,
.zone-card p,
.faq-item p,
.contact-panel p,
.contact-cta-copy p,
.page-intro p {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
  letter-spacing: 0;
}

.section-head.center p {
  width: min(100%, 820px);
  margin-inline: auto;
  text-align: justify;
  text-align-last: center;
}

.section-head h1,
.section-head h2,
.content h1,
.content h2,
.content h3,
.service-card h3 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

@media (max-width: 620px) {
  .section-head p,
  .content p,
  .service-card p,
  .info-card p,
  .zone-card p,
  .faq-item p,
  .contact-panel p,
  .contact-cta-copy p,
  .page-intro p {
    line-height: 1.72;
  }

  .section-head.center p {
    text-align-last: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .feature-card,
  .logo-item img,
  .quick-action,
  .quick-close,
  .text-link::after {
    transition: none;
  }
}