:root {
  --navy: #0b2742;
  --navy-2: #123a5a;
  --blue: #2d7fb8;
  --blue-soft: #e9f4fb;
  --green: #2f9e69;
  --green-soft: #eaf7f0;
  --ink: #102033;
  --muted: #5e6c7d;
  --line: #d9e3ec;
  --light: #f5f8fb;
  --wash: #f8fbfd;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(12, 39, 66, 0.13);
  --shadow-soft: 0 10px 30px rgba(12, 39, 66, 0.08);
  --shadow-lift: 0 24px 54px rgba(12, 39, 66, 0.16);
  --radius: 8px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(45, 127, 184, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

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

.section {
  padding: 76px 0;
  scroll-margin-top: var(--header-height);
}

.section-muted {
  background: var(--light);
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.logo-mark {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(217, 227, 236, 0.9);
  box-shadow: 0 8px 18px rgba(12, 39, 66, 0.08);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand-text {
  line-height: 1.15;
  max-width: 300px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}

.nav-panel > a:not(.btn) {
  color: var(--ink);
}

.nav-panel > a:not(.btn):hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary,
.btn-small {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(47, 158, 105, 0.24);
}

.btn-primary:hover,
.btn-small:hover {
  background: #267f56;
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(12, 39, 66, 0.09);
}

.btn-secondary.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.88rem;
}

.btn-whatsapp {
  width: 100%;
  margin-top: 22px;
  background: var(--green-soft);
  color: #176544;
  border-color: rgba(47, 158, 105, 0.24);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 66px 0 58px;
  background:
    linear-gradient(180deg, rgba(233, 244, 251, 0.72), rgba(255, 255, 255, 1) 76%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2.45rem, 8vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.85rem, 4.8vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  line-height: 1.25;
}

.hero-subheadline {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #f8fbfd, #d9ecf8);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.placeholder-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 39, 66, 0.16) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(180deg, rgba(11, 39, 66, 0.10) 1px, transparent 1px) 0 0 / 46px 46px,
    radial-gradient(circle at 74% 18%, rgba(47, 158, 105, 0.2), transparent 30%),
    linear-gradient(135deg, #f8fbfd 0%, #e9f4fb 48%, #cce6f5 100%);
}

.water-line {
  position: absolute;
  left: 13%;
  top: 44%;
  width: 78%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(45, 127, 184, 0.95), transparent);
  transform: rotate(-14deg);
}

.surface-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 150px;
  height: 110px;
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(12, 39, 66, 0.16);
}

.surface-before {
  left: 9%;
  bottom: 16%;
  background: #b9c3c8;
  color: #38434b;
}

.surface-after {
  right: 10%;
  top: 14%;
  background: var(--white);
  color: var(--green);
}

.media-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-bar {
  background: var(--navy);
  color: var(--white);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}

.trust-bar span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 16px 10px;
  text-align: center;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.align-left {
  margin: 0;
  text-align: left;
}

.card-grid,
.before-grid,
.process-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.before-card,
.process-card,
.review-card,
.contact-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(12, 39, 66, 0.07);
}

.service-card {
  padding: 24px;
}

.service-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 1px rgba(45, 127, 184, 0.08);
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.04);
}

.service-card p,
.process-card p,
.review-card p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

.icon-placeholder {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
}

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

.before-card {
  overflow: hidden;
}

.before-card h3 {
  margin: 0;
  padding: 16px;
  font-size: 1rem;
}

.before-after-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 180px;
}

.before-after-single {
  display: block;
}

.before-after-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  color: var(--white);
  font-weight: 800;
}

.image-placeholder.before {
  background: linear-gradient(135deg, #7c8790, #4d5861);
}

.image-placeholder.after {
  background: linear-gradient(135deg, #e8f6ef, #6fc99a);
  color: #13452f;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

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

.choice-item {
  position: relative;
  padding: 16px 16px 16px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(12, 39, 66, 0.06);
}

.choice-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--green-soft);
}

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

.process-card,
.review-card {
  padding: 24px;
}

.process-card span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.stars {
  margin-bottom: 14px;
  color: #f0a92f;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
  overflow: hidden;
}

.area-map-link {
  width: 100%;
  min-height: 52px;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 14px 16px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.area-map-link:hover,
.area-map-link.is-active {
  background: var(--blue-soft);
  color: var(--blue);
}

.area-map-link.is-active {
  box-shadow: inset 3px 0 0 #14bfc3;
}

.contact-section {
  background: linear-gradient(180deg, var(--white), var(--blue-soft));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 28px;
}

.details-note {
  color: var(--muted);
}

.business-details {
  margin: 24px 0 0;
}

.business-details div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.business-details dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.business-details dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row-full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd8e2;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.field-error {
  border-color: #c73838;
  box-shadow: 0 0 0 3px rgba(199, 56, 56, 0.11);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.form-message.error {
  color: #b12d2d;
}

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

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

.faq-item button {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 20px 54px 20px 20px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.5rem;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 20px;
}

.final-cta {
  background: var(--navy);
  color: var(--white);
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 58px 0 96px;
  background: #071c30;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.95fr 0.95fr;
  gap: 28px;
}

.footer-brand {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
}

.mobile-cta-bar {
  display: none;
}

.policy-hero {
  background:
    linear-gradient(180deg, rgba(233, 244, 251, 0.72), rgba(255, 255, 255, 1)),
    var(--white);
  padding-bottom: 46px;
}

.policy-hero h1 {
  margin-bottom: 12px;
}

.policy-hero p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 700;
}

.policy-section {
  padding-top: 42px;
}

.policy-content {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.policy-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.policy-content h2:first-of-type {
  margin-top: 26px;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.policy-nav {
  margin-left: auto;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.privacy-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.privacy-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 48, 0.72);
  backdrop-filter: blur(4px);
}

.privacy-modal-content {
  position: relative;
  width: min(900px, 100%);
  height: 85vh;
  overflow: hidden;
  border: 1px solid rgba(217, 227, 236, 0.95);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(7, 28, 48, 0.34);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}

.privacy-modal.is-open .privacy-modal-content {
  transform: translateY(0) scale(1);
}

.privacy-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217, 227, 236, 0.95);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.privacy-modal-close:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.privacy-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel a {
    padding: 13px 4px;
  }

  .nav-panel .btn {
    margin-top: 8px;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

  .service-grid,
  .process-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .trust-bar span:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

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

  .section {
    padding: 58px 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-text {
    max-width: 218px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

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

  .hero-subheadline {
    font-size: 1rem;
  }

  .hero-actions,
  .final-cta .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

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

  .trust-list li {
    border-radius: var(--radius);
    text-align: center;
  }

  .hero-media {
    min-height: 300px;
  }

  .surface-card {
    width: 122px;
    height: 92px;
  }

  .service-grid,
  .before-grid,
  .process-grid,
  .review-grid,
  .choice-grid,
  .area-list,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-bar span:last-child {
    grid-column: auto;
  }

  .contact-card,
  .form-card {
    padding: 22px;
  }

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

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 24px rgba(12, 39, 66, 0.12);
  }

  .mobile-cta-bar a {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: var(--radius);
    font-weight: 800;
  }

  .mobile-cta-bar a:first-child {
    background: var(--navy);
    color: var(--white);
  }

  .mobile-cta-bar a:last-child {
    background: var(--green);
    color: var(--white);
  }
}

/* Premium polish and lightweight motion layer */
.site-header {
  box-shadow: 0 8px 28px rgba(12, 39, 66, 0.06);
}

.nav-panel > a:not(.btn) {
  position: relative;
}

.nav-panel > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-panel > a:not(.btn):hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 0.98), rgba(255, 255, 255, 0.96) 74%),
    var(--white);
}

.animated-water-bg::before,
.animated-water-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.animated-water-bg::before {
  inset: -20% -14%;
  z-index: -2;
  opacity: 0.42;
  background:
    repeating-linear-gradient(118deg, transparent 0 42px, rgba(45, 127, 184, 0.12) 43px 45px, transparent 46px 74px),
    linear-gradient(125deg, rgba(255, 255, 255, 0.62), rgba(233, 244, 251, 0.22));
  animation: glassSweep 42s linear infinite;
}

.animated-water-bg::after {
  inset: 0;
  z-index: -1;
  opacity: 0.52;
  background:
    radial-gradient(circle at 18% 22%, rgba(45, 127, 184, 0.14), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(47, 158, 105, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), transparent 68%);
}

.hero-water-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.water-ribbon {
  position: absolute;
  left: -12%;
  width: 124%;
  height: 220px;
  opacity: 0.36;
  filter: blur(0.3px);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45, 127, 184, 0.18), transparent 42%),
    linear-gradient(100deg, transparent 8%, rgba(45, 127, 184, 0.12) 36%, rgba(255, 255, 255, 0.36) 52%, rgba(47, 158, 105, 0.08) 70%, transparent 92%);
  clip-path: polygon(0 43%, 10% 34%, 22% 39%, 34% 30%, 48% 42%, 62% 32%, 75% 40%, 88% 30%, 100% 39%, 100% 70%, 84% 62%, 70% 72%, 56% 60%, 42% 71%, 27% 61%, 13% 70%, 0 62%);
  animation: waterDrift 24s ease-in-out infinite alternate;
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
}

.ribbon-one {
  top: 6%;
}

.ribbon-two {
  bottom: 10%;
  opacity: 0.22;
  transform: translate3d(0, calc(var(--hero-parallax, 0px) * -0.55), 0) scaleY(-1);
  animation-duration: 31s;
}

.mist-field {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 12% 28%, rgba(45, 127, 184, 0.13) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 18%, rgba(47, 158, 105, 0.10) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 64%, rgba(45, 127, 184, 0.12) 0 1px, transparent 3px),
    radial-gradient(circle at 38% 76%, rgba(45, 127, 184, 0.10) 0 2px, transparent 3px);
  background-size: 280px 220px;
  animation: mistFloat 38s linear infinite;
}

.glass-streaks {
  position: absolute;
  inset: -16% -18%;
  opacity: 0.28;
  background:
    linear-gradient(108deg, transparent 16%, rgba(255, 255, 255, 0.9) 17%, transparent 18%),
    linear-gradient(108deg, transparent 34%, rgba(45, 127, 184, 0.22) 35%, transparent 36%),
    linear-gradient(108deg, transparent 58%, rgba(255, 255, 255, 0.65) 59%, transparent 60%),
    linear-gradient(108deg, transparent 78%, rgba(45, 127, 184, 0.18) 79%, transparent 80%);
  filter: blur(0.2px);
  animation: streakDrift 34s ease-in-out infinite alternate;
  transform: translate3d(0, calc(var(--hero-parallax, 0px) * 0.45), 0);
}

@keyframes waterDrift {
  from {
    translate: -1.5% 0;
  }

  to {
    translate: 1.5% 10px;
  }
}

@keyframes mistFloat {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 280px 220px;
  }
}

@keyframes glassSweep {
  from {
    transform: translate3d(-2%, 0, 0);
  }

  to {
    transform: translate3d(2%, 2%, 0);
  }
}

@keyframes streakDrift {
  from {
    translate: -18px -8px;
  }

  to {
    translate: 20px 10px;
  }
}

.hero-copy,
.hero-media {
  position: relative;
}

.hero-media {
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-lift);
}

.placeholder-visual {
  background:
    linear-gradient(90deg, rgba(11, 39, 66, 0.10) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(180deg, rgba(11, 39, 66, 0.07) 1px, transparent 1px) 0 0 / 46px 46px,
    radial-gradient(circle at 74% 18%, rgba(47, 158, 105, 0.19), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #e9f4fb 50%, #cce6f5 100%);
}

.water-line {
  animation: sprayPulse 3.8s ease-in-out infinite;
}

@keyframes sprayPulse {
  0%, 100% {
    opacity: 0.55;
    scale: 0.96 1;
  }

  50% {
    opacity: 0.95;
    scale: 1.04 1;
  }
}

.section {
  position: relative;
}

.section-heading {
  margin-bottom: 44px;
}

.section-lead {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 700;
}

.service-card,
.before-card,
.process-card,
.review-card,
.contact-card,
.form-card,
.choice-item,
.map-card {
  border-color: rgba(217, 227, 236, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.before-card:hover,
.process-card:hover,
.review-card:hover,
.choice-item:hover,
.map-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 127, 184, 0.24);
  box-shadow: var(--shadow-lift);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.icon-placeholder {
  box-shadow: inset 0 0 0 1px rgba(45, 127, 184, 0.08);
}

.trust-bar {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 1), rgba(239, 246, 251, 0.78)),
    var(--light);
}

.before-card,
.review-card {
  overflow: hidden;
}

.contact-section {
  background:
    radial-gradient(circle at 80% 18%, rgba(45, 127, 184, 0.12), transparent 32%),
    linear-gradient(180deg, var(--white), var(--blue-soft));
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 39, 66, 0.98), rgba(18, 58, 90, 0.98)),
    var(--navy);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  opacity: 0.18;
  background:
    repeating-linear-gradient(116deg, transparent 0 34px, rgba(255, 255, 255, 0.18) 35px 36px, transparent 37px 68px),
    radial-gradient(circle at 42% 48%, rgba(45, 127, 184, 0.42), transparent 38%);
  animation: ctaWaterSweep 54s linear infinite;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background:
    linear-gradient(108deg, transparent 22%, rgba(255, 255, 255, 0.28) 23%, transparent 24%),
    linear-gradient(108deg, transparent 62%, rgba(255, 255, 255, 0.18) 63%, transparent 64%);
  animation: streakDrift 38s ease-in-out infinite alternate;
}

@keyframes ctaWaterSweep {
  from {
    transform: translate3d(-3%, 0, 0);
  }

  to {
    transform: translate3d(3%, 2%, 0);
  }
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.service-area-section {
  overflow: hidden;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 34px;
  align-items: stretch;
}

.area-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-copy p {
  color: var(--muted);
}

.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 227, 236, 0.95);
  border-radius: var(--radius);
  background: var(--white);
  padding: 14px;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 6px 14px;
}

.map-header strong,
.map-header span {
  display: block;
}

.map-header strong {
  color: var(--navy);
  font-size: 1rem;
}

.map-header span,
.map-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-map {
  position: relative;
  min-height: 430px;
  height: 430px;
  max-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-soft);
  z-index: 1;
}

/* Defensive Leaflet fallback: keeps map tiles contained if the CDN CSS is delayed or blocked. */
.service-map .leaflet-pane,
.service-map .leaflet-tile,
.service-map .leaflet-marker-icon,
.service-map .leaflet-marker-shadow,
.service-map .leaflet-tile-container,
.service-map .leaflet-pane > svg,
.service-map .leaflet-pane > canvas,
.service-map .leaflet-zoom-box,
.service-map .leaflet-image-layer,
.service-map .leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.service-map .leaflet-container {
  overflow: hidden;
}

.service-map .leaflet-tile {
  width: 256px;
  height: 256px;
  user-select: none;
}

.service-map .leaflet-control-container {
  position: relative;
  z-index: 450;
}

.map-shell {
  position: relative;
}

.map-recenter-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 500;
  min-height: 42px;
  border: 1px solid rgba(217, 227, 236, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  padding: 9px 13px;
  box-shadow: var(--shadow-soft);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.map-recenter-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.map-note {
  margin: 12px 6px 2px;
}

.leaflet-container {
  font-family: "Inter", Arial, sans-serif;
}

.leaflet-control-attribution {
  font-size: 0.68rem;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.leaflet-control-zoom a {
  color: var(--navy);
}

.map-popup strong,
.map-popup span {
  display: block;
}

.map-popup strong {
  margin-bottom: 4px;
  color: var(--navy);
}

.map-popup span {
  color: var(--muted);
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 160;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.floating-btn {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease, visibility 0.22s ease;
}

.floating-btn:hover,
.floating-btn[aria-expanded="true"] {
  background: var(--green);
  transform: translateY(-2px);
}

.floating-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.floating-top-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}

.floating-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.quick-menu-panel {
  position: absolute;
  right: 0;
  bottom: 124px;
  width: min(270px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(217, 227, 236, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.quick-menu-panel.quick-menu-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.quick-menu-panel strong {
  display: block;
  padding: 8px 10px 10px;
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.quick-menu-link {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-radius: var(--radius);
  padding: 9px 10px;
  color: var(--ink);
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.quick-menu-link:hover {
  background: var(--blue-soft);
  color: var(--navy);
  transform: translateX(2px);
}

.quick-menu-link.estimate-link {
  margin-top: 6px;
  background: var(--green-soft);
  color: #176544;
}

@media (max-width: 980px) {
  .area-layout {
    grid-template-columns: 1fr;
  }

  .service-map {
    min-height: 390px;
    height: 390px;
    max-height: 390px;
  }

  .nav-panel > a:not(.btn)::after {
    bottom: 7px;
    right: auto;
    width: 42px;
    transform-origin: left;
  }
}

@media (max-width: 680px) {
  .section-heading {
    margin-bottom: 32px;
  }

  .area-layout {
    gap: 22px;
  }

  .service-map {
    min-height: 330px;
    height: 330px;
    max-height: 330px;
  }

  .map-card {
    padding: 10px;
  }

  .map-recenter-btn {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
  }

  .floating-actions {
    right: 12px;
    bottom: 82px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .quick-menu-panel {
    bottom: 112px;
  }

  .map-header {
    padding: 4px 4px 10px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Hero redesign inspired by the SM logo: adjust animation opacity here if needed. */
.site-header {
  background: #061f38;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(6, 31, 56, 0.18);
  backdrop-filter: none;
}

.nav {
  min-height: 88px;
}

.brand-lockup {
  gap: 14px;
  color: var(--white);
}

.brand-lockup .brand-mark {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  border-radius: 12px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.brand-lockup .logo-mark img {
  padding: 0;
}

.brand-lockup .brand-text {
  display: grid;
  gap: 2px;
  max-width: 330px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-lockup .brand-text small {
  color: #14c7c9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nav-panel {
  color: rgba(255, 255, 255, 0.88);
}

.nav-panel > a:not(.btn) {
  color: rgba(255, 255, 255, 0.88);
}

.nav-panel > a:not(.btn):hover {
  color: var(--white);
}

.nav-panel > a:not(.btn)::after {
  background: #14c7c9;
}

.header-phone-btn {
  gap: 9px;
  min-height: 50px;
  border-radius: 999px;
  background: #14bfc3;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(20, 191, 195, 0.24);
}

.header-phone-btn svg,
.hero-actions svg,
.hero-badge svg,
.hero-trust-row svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.header-phone-btn:hover {
  background: #0eaeb2;
}

.menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle span {
  background: var(--white);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  padding: 92px 0 72px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(235, 248, 252, 0.9)),
    var(--white);
}

.animated-water-bg::before {
  opacity: 0.32;
  background:
    repeating-linear-gradient(122deg, transparent 0 44px, rgba(20, 191, 195, 0.11) 45px 47px, transparent 48px 78px),
    linear-gradient(125deg, rgba(255, 255, 255, 0.72), rgba(221, 242, 249, 0.32));
}

.animated-water-bg::after {
  opacity: 0.54;
  background:
    radial-gradient(circle at 16% 24%, rgba(20, 191, 195, 0.12), transparent 26%),
    radial-gradient(circle at 80% 18%, rgba(45, 127, 184, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), transparent 70%);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(34px, 5vw, 76px);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  padding: 10px 17px;
  border: 1px solid rgba(20, 191, 195, 0.24);
  border-radius: 999px;
  background: rgba(20, 191, 195, 0.1);
  color: #0eaeb2;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge svg {
  fill: currentColor;
  stroke: none;
}

.hero-title {
  display: grid;
  gap: 0;
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.text-professional {
  font-weight: 500;
}

.text-pressure,
.text-services {
  color: #061f38;
  font-weight: 800;
}

.text-window {
  color: #14bfc3;
  font-weight: 800;
}

.text-amp {
  color: #061f38;
  font-weight: 500;
}

.hero-subheadline {
  max-width: 620px;
  color: #526174;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.62;
}

.hero-actions {
  gap: 16px;
  margin: 32px 0 38px;
}

.hero-actions .btn {
  gap: 12px;
  min-height: 58px;
  min-width: 210px;
  border-radius: 10px;
  font-size: 1rem;
}

.hero-actions .btn-primary {
  background: #14bfc3;
  box-shadow: 0 16px 30px rgba(20, 191, 195, 0.25);
}

.hero-actions .btn-primary:hover {
  background: #0eaeb2;
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: #061f38;
  color: #061f38;
}

.hero-actions .btn-secondary:hover {
  background: #061f38;
  color: var(--white);
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust-row li {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 0 26px;
  border-right: 1px solid rgba(11, 39, 66, 0.13);
}

.hero-trust-row li:first-child {
  padding-left: 0;
}

.hero-trust-row li:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  color: #14bfc3;
  box-shadow: 0 10px 26px rgba(11, 39, 66, 0.12);
}

.hero-trust-row strong {
  color: #061f38;
  font-size: 0.95rem;
  line-height: 1.2;
}

.hero-trust-row small {
  color: #647387;
  font-size: 0.84rem;
}

.hero-visual-card {
  position: relative;
  min-height: 610px;
  border-radius: 34px;
  isolation: isolate;
}

.hero-visual-accent {
  position: absolute;
  left: 0;
  top: 42px;
  bottom: 42px;
  width: 54%;
  border-radius: 28px;
  background: linear-gradient(180deg, #061f38, #092c4f);
  box-shadow: 0 26px 70px rgba(6, 31, 56, 0.28);
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  left: 32%;
  top: 0;
  width: 68%;
  height: 100%;
  border-radius: 38px;
  background: #ffffff;
  box-shadow: var(--shadow-lift);
  transform: skewX(-11deg);
  transform-origin: bottom left;
}

.hero-logo-badge {
  position: absolute;
  left: 18%;
  top: 90px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: #061f38;
  border: 2px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 40px rgba(6, 31, 56, 0.28);
}

.hero-logo-badge img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.hero-visual-window,
.hero-visual-pressure {
  position: absolute;
  right: 24px;
  z-index: 2;
  width: 72%;
  overflow: hidden;
  border: 12px solid var(--white);
  background: var(--blue-soft);
  box-shadow: 0 22px 48px rgba(6, 31, 56, 0.16);
  transform: skewX(-11deg);
}

.hero-visual-window {
  top: 32px;
  height: 48%;
  border-radius: 34px 34px 0 0;
}

.hero-visual-pressure {
  bottom: 32px;
  height: 48%;
  border-radius: 0 0 34px 34px;
}

.hero-visual-window img,
.hero-visual-pressure img {
  width: 122%;
  height: 100%;
  object-fit: cover;
  transform: skewX(11deg) scale(1.06);
}

.hero-service-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #061f38;
  padding: 10px 18px;
  box-shadow: 0 12px 26px rgba(6, 31, 56, 0.15);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: skewX(11deg);
}

.hero-service-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 50%;
  background: #14bfc3;
}

.badge-window {
  right: 22px;
  bottom: 28px;
}

.badge-pressure {
  right: 22px;
  bottom: 28px;
}

@media (max-width: 1120px) {
  .nav-panel {
    gap: 14px;
    font-size: 0.86rem;
  }

  .header-phone-btn span {
    display: none;
  }

  .header-phone-btn {
    width: 50px;
    min-width: 50px;
    padding: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    background: #061f38;
  }

  .nav {
    min-height: var(--header-height);
  }

  .brand-lockup .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-lockup .brand-text {
    font-size: 0.86rem;
  }

  .brand-lockup .brand-text small {
    font-size: 0.61rem;
  }

  .nav-panel {
    background: #061f38;
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .header-phone-btn span {
    display: inline;
  }

  .header-phone-btn {
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
  }

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

  .hero-content {
    max-width: 760px;
  }

  .hero-visual-card {
    min-height: 540px;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 48px 0 56px;
  }

  .hero-badge {
    margin-bottom: 22px;
    font-size: 0.74rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 13vw, 3.65rem);
    line-height: 1.03;
  }

  .hero-actions .btn {
    min-width: 0;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-trust-row li,
  .hero-trust-row li:first-child,
  .hero-trust-row li:last-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 39, 66, 0.1);
  }

  .hero-trust-row li:last-child {
    border-bottom: 0;
  }

  .hero-visual-card {
    min-height: 430px;
  }

  .hero-visual-accent {
    left: 0;
    top: 26px;
    bottom: 26px;
    width: 52%;
  }

  .hero-logo-badge {
    left: 9%;
    top: 64px;
    width: 82px;
    height: 82px;
  }

  .hero-visual-window,
  .hero-visual-pressure {
    right: 10px;
    width: 78%;
    border-width: 8px;
  }

  .hero-visual-window {
    top: 20px;
  }

  .hero-visual-pressure {
    bottom: 20px;
  }

  .hero-service-badge {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.68rem;
  }
}
