:root {
  --navy: #071d33;
  --trust-blue: #0f4c81;
  --sky-blue: #2aa7df;
  --teal: #008c95;
  --teal-dark: #006b73;
  --light-teal: #d9f4f1;
  --ice-white: #f6fbff;
  --ink: #0b2238;
  --muted: #5b7083;
  --line: #cfe0ea;
  --paper: #ffffff;
  --soft: var(--ice-white);
  --mint: var(--light-teal);
  --amber: #7be0d6;
  --steel: var(--trust-blue);
  --shadow: 0 18px 48px rgba(7, 29, 51, 0.14);
}

* {
  box-sizing: border-box;
}

body > * {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  padding-top: 72px;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: var(--ice-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.band,
.quick-strip,
.services-section,
.process-section,
.cta-band,
.why-section,
.brands-section,
.gallery-section,
.reviews-section,
.contact-section,
.faq-section,
.emergency-banner {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

a {
  color: var(--sky-blue);
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  color: #fff;
  background: rgba(7, 29, 51, 0.96);
  border-bottom: 1px solid rgba(42, 167, 223, 0.22);
  box-shadow: 0 8px 24px rgba(7, 29, 51, 0.12);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1280px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 0.88rem;
  background: linear-gradient(135deg, var(--teal), var(--sky-blue));
  border-radius: 50%;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1 1 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  color: inherit;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--sky-blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 30;
  min-width: 270px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: #ffffff;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 29, 51, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 8px;
  white-space: normal;
}

.nav-dropdown-menu a:hover {
  color: var(--teal-dark);
  background: #eef8fb;
}

.nav-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-call {
  flex: 0 0 auto;
  white-space: nowrap;
}

.nav-call,
.btn.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(8, 126, 139, 0.26);
}

.btn.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.nav-call:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-call:hover,
.btn.primary:hover {
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(42, 167, 223, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 29, 51, 0.94) 0%, rgba(15, 76, 129, 0.82) 38%, rgba(15, 76, 129, 0.22) 72%, rgba(7, 29, 51, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 29, 51, 0.55), rgba(7, 29, 51, 0));
}

.hero-content {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 112px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  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: 16px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: #f4fdff;
  font-size: clamp(2.05rem, 3.55vw, 3.55rem);
  line-height: 1.5;
}

.hero .eyebrow {
  font-weight: 600;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: #d9f4f1;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  max-width: 560px;
  margin: 46px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 29, 51, 0.68);
  backdrop-filter: blur(10px);
}

.hero-stats div {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.quick-strip {
  width: min(1160px, calc(100% - 32px));
  margin: -54px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 247, 251, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-strip::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 54px calc(50% - 50vw) -34px;
  background:
    linear-gradient(180deg, rgba(226, 245, 242, 0.95), rgba(238, 248, 251, 0.72));
  border-block: 1px solid rgba(207, 224, 234, 0.72);
}

.quick-strip.row,
.service-grid.row {
  display: flex;
}

.quick-strip.row {
  flex-wrap: nowrap;
}

.quick-card {
  flex: 1 1 0;
  width: auto;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  align-items: center;
  text-align: center;
  min-height: 156px;
  padding: 26px 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fcfd 100%);
  border: 1px solid rgba(207, 224, 234, 0.92);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(7, 29, 51, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 140, 149, 0.34);
  box-shadow: 0 18px 38px rgba(7, 29, 51, 0.1);
}

.quick-card:last-child {
  border-right: 1px solid rgba(207, 224, 234, 0.92);
}

.strip-icon,
.card-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--teal);
  font-weight: 900;
  background: var(--mint);
  border-radius: 8px;
}

.strip-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: linear-gradient(135deg, #d9f4f1, #eefbf9);
  box-shadow: inset 0 0 0 1px rgba(0, 140, 149, 0.08);
}

.strip-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-strip p {
  margin: 0;
  text-align: center;
}

.quick-strip strong,
.quick-strip p span,
.quick-strip a {
  display: block;
}

.quick-strip strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.2;
}

.quick-strip p span,
.quick-strip a {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.35;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 94px 0;
}

.services-section,
.process-section,
.contact-section {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1160px) / 2));
}

.contact-section {
  padding-inline: max(16px, calc((100vw - 1320px) / 2));
}

.services-section {
  background:
    linear-gradient(180deg, #eef8fb 0%, #f7fcff 100%);
  border-bottom: 1px solid var(--line);
}

.process-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 29, 51, 0.22), rgba(7, 29, 51, 0)),
    linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.contact-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #edf8f6 100%);
  border-top: 1px solid rgba(207, 224, 234, 0.78);
}

.process-section .eyebrow,
.process-section h2 {
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head p,
.contact-copy p,
.band p {
  color: var(--muted);
}

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

.service-grid.row {
  grid-template-columns: none;
}

.service-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(19, 32, 43, 0.06);
}

.service-card {
  padding: 28px;
}

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

.service-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--steel);
}

.service-card li + li {
  margin-top: 8px;
}

.card-icon {
  margin-bottom: 22px;
}

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

.service-category-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(7, 29, 51, 0.07);
}

.service-category-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.service-category-head .card-icon {
  margin-bottom: 0;
}

.service-category-head h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.service-category-head p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.service-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 16px 16px 16px 48px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fcff 100%);
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 29, 51, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 140, 149, 0.32);
  box-shadow: 0 16px 34px rgba(7, 29, 51, 0.1);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 22px;
  height: 22px;
  background: var(--mint);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-list li::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid var(--teal-dark);
  border-width: 0 2px 2px 0;
  transform: translateY(-58%) rotate(45deg);
}

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

.washing-service-list li,
.ro-service-list li {
  display: grid;
  align-items: stretch;
  gap: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.washing-service-list li::before,
.washing-service-list li::after,
.ro-service-list li::before,
.ro-service-list li::after {
  display: none;
}

.washing-service-list img,
.ro-service-list img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
}

.washing-service-list li > div,
.ro-service-list li > div {
  padding: 18px;
}

.service-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--mint);
  border-radius: 8px;
}

.washing-service-list .service-number,
.ro-service-list .service-number {
  margin-bottom: 14px;
}

.washing-service-list strong,
.ro-service-list strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.washing-service-list p,
.ro-service-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #e2f5f2 0%, #f7fcff 48%, #ffffff 100%);
  border-block: 1px solid var(--line);
}

.band::before {
  content: "";
  position: absolute;
  inset: 28px auto auto max(16px, calc((100vw - 1160px) / 2));
  width: 76px;
  height: 4px;
  background: var(--teal);
  border-radius: 999px;
}

.band-inner {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.about-layout {
  align-items: center;
}

.about-layout.row {
  margin-left: 0;
  margin-right: 0;
}

.quick-strip.row {
  margin-left: auto;
  margin-right: auto;
}

.about-media {
  min-width: 0;
}

.about-media img {
  width: 100%;
  min-height: 520px;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  padding: 6px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(7, 29, 51, 0.14);
}

.about-copy {
  padding-left: 20px;
}

.about-copy h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.22;
}

.about-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 28px 0 8px;
}

.about-highlights div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(207, 224, 234, 0.78);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(7, 29, 51, 0.06);
}

.check-icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  background: var(--mint);
  border-radius: 50%;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 8px;
  height: 12px;
  border: solid var(--teal-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.about-highlights span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.about-copy .btn {
  margin-top: 24px;
}

.process .section-head {
  text-align: center;
  margin-inline: auto;
}

.process .section-head p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
}

.steps {
  grid-template-columns: none;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 46px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 74px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.step-card {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 0 12px;
}

.step-marker {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  background: #ffffff;
  border: 7px solid var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.18);
}

.step-content {
  position: relative;
  width: 100%;
  min-height: 255px;
  padding: 26px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f4ffff 100%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 29, 51, 0.14);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step-content::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-blue), var(--teal));
}

.step-content::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-left: 1px solid rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  transform: translateX(-50%) rotate(45deg);
}

.step-card:nth-child(even) {
  padding-top: 54px;
}

.step-card:hover .step-content {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(7, 29, 51, 0.2);
}

.step-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 900;
  background: var(--mint);
  border-radius: 8px;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--trust-blue);
  background: #eef8fb;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
}

.step-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-content h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.16rem;
}

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

.cta-band {
  width: min(1160px, calc(100% - 32px));
  margin: 46px auto 18px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--trust-blue), var(--teal));
  border-radius: 8px;
}

.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.cta-band .eyebrow {
  margin-bottom: 18px;
}

.why-section {
  width: min(1160px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 46px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
  background:
    linear-gradient(135deg, #ffffff 0%, #f3fbfd 58%, #e2f5f2 100%);
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 29, 51, 0.08);
}

.why-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 2.85rem);
}

.why-copy p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.why-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(207, 224, 234, 0.86);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 29, 51, 0.06);
}

.why-item:nth-child(even) {
  transform: translateY(12px);
}

.why-item.wide {
  grid-column: 1 / -1;
  justify-content: center;
  min-height: 78px;
  color: #fff;
  background: linear-gradient(135deg, var(--trust-blue), var(--teal));
  border-color: transparent;
}

.why-check {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  background: var(--mint);
  border-radius: 50%;
}

.why-item.wide .why-check {
  background: rgba(255, 255, 255, 0.2);
}

.why-check::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 8px;
  height: 14px;
  border: solid var(--teal-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.why-item.wide .why-check::after {
  border-color: #fff;
}

.brands-section {
  width: min(1160px, calc(100% - 32px));
  margin: 26px auto 0;
  padding: 48px 0 54px;
}

.brands-head {
  max-width: 700px;
  margin-bottom: 28px;
}

.brands-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.brand-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.brand-group {
  position: relative;
  padding: 30px;
  background: #ffffff;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(7, 29, 51, 0.07);
  overflow: hidden;
}

.brand-group::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sky-blue), var(--teal));
}

.brand-group-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 8px;
}

.brand-group-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-group h3 {
  margin-bottom: 18px;
  font-size: 1.28rem;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--trust-blue);
  font-size: 0.94rem;
  font-weight: 800;
  background: #f4fbfd;
  border: 1px solid rgba(207, 224, 234, 0.95);
  border-radius: 8px;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
}

.brand-logos span {
  justify-content: center;
  min-height: 92px;
  padding: 14px 16px;
  background: #ffffff;
}

.brand-logos img {
  display: block;
  width: 100%;
  max-width: 162px;
  height: 66px;
  object-fit: contain;
}

.ro-brand-logos img {
  max-width: 178px;
  height: 76px;
}

.gallery-section {
  width: 100%;
  padding: 76px max(16px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(180deg, #ffffff 0%, #eef8fb 100%);
  border-block: 1px solid rgba(207, 224, 234, 0.86);
}

.gallery-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.gallery-head h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.gallery-head p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 29, 51, 0.08);
}

.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 28px);
  min-height: 38px;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  background: rgba(7, 29, 51, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.reviews-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 34px;
  padding: 46px;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--trust-blue) 58%, var(--teal-dark) 100%);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 29, 51, 0.16);
  overflow: hidden;
}

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  color: #fff;
}

.reviews-head h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.review-controls {
  display: flex;
  gap: 10px;
}

.review-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.review-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

.review-slider {
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 360ms ease;
}

.review-card {
  flex: 0 0 100%;
  min-height: 260px;
  padding: 34px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 29, 51, 0.16);
}

.review-rating {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 38px;
  color: var(--teal-dark);
  font-weight: 900;
  background: var(--mint);
  border-radius: 8px;
}

.review-card p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.55;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.review-card span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.review-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.review-dot.is-active {
  width: 28px;
  background: #ffffff;
  border-radius: 999px;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 40px;
  align-items: start;
}

.contact-section {
  align-items: stretch;
}

.contact-copy {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding-inline: 22px;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.05rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(207, 224, 234, 0.86);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(7, 29, 51, 0.06);
}

.contact-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 8px;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item p {
  margin: 0;
}

.contact-item strong,
.contact-item a,
.contact-item p > span {
  display: block;
}

.contact-item strong {
  margin-bottom: 4px;
  color: var(--ink);
}

.contact-item a {
  color: var(--muted);
  font-weight: 800;
}

.contact-item p > span {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.contact-form {
  width: 100%;
  padding: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
  box-shadow: 0 18px 48px rgba(7, 29, 51, 0.12);
}

.form-head,
.field-full,
.contact-form .btn,
.form-note {
  grid-column: 1 / -1;
}

.form-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-head h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.form-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.location-map {
  grid-column: 1 / -1;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(7, 29, 51, 0.1);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.faq-section {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto 64px;
  padding: 44px;
  background: #ffffff;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(7, 29, 51, 0.07);
}

.faq-head {
  max-width: 680px;
  margin-bottom: 26px;
}

.faq-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

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

.faq-item {
  border: 1px solid rgba(207, 224, 234, 0.95);
  border-radius: 8px;
  background: #f8fdff;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.emergency-banner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 54px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 29, 51, 0.28), rgba(7, 29, 51, 0)),
    linear-gradient(135deg, var(--trust-blue), var(--teal));
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(7, 29, 51, 0.14);
}

.emergency-banner h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.emergency-banner p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

.emergency-banner .btn.primary {
  background: #ffffff;
  color: var(--teal-dark);
  box-shadow: none;
}

.emergency-banner .btn.primary:hover {
  background: #eefbf9;
}

.service-detail-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 46px;
  align-items: center;
}

.service-detail-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(7, 29, 51, 0.13);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.service-detail-copy h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.service-detail-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.detail-secondary {
  color: var(--teal-dark);
  border-color: rgba(0, 140, 149, 0.34);
  background: #ffffff;
}

.detail-secondary:hover {
  color: #ffffff;
  background: var(--teal-dark);
}

.service-detail-strip {
  margin-top: 0;
}

.service-detail-section {
  padding-top: 82px;
}

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

.detail-service-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.74fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 29, 51, 0.07);
}

.detail-service-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.detail-service-card > div {
  padding: 26px;
}

.detail-service-card h3 {
  margin-top: 16px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.24rem;
}

.detail-service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.detail-problems {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 52px;
  padding: 46px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 38px;
  align-items: center;
  background:
    linear-gradient(135deg, #ffffff 0%, #f3fbfd 58%, #e2f5f2 100%);
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 29, 51, 0.08);
}

.detail-problems-copy h2 {
  font-size: clamp(2rem, 3vw, 2.85rem);
}

.detail-problems-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

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

.problem-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(207, 224, 234, 0.86);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(7, 29, 51, 0.06);
}

.problem-list strong {
  color: var(--ink);
  line-height: 1.3;
}

.detail-process {
  width: 100%;
  padding: 88px max(16px, calc((100vw - 1160px) / 2));
}

.detail-brand-logos {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
}

.wm-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: 48px;
  align-items: center;
}

.wm-hero-copy h1 {
  color: var(--ink);
  font-size: clamp(2rem, 3.25vw, 3.25rem);
  line-height: 1.16;
}

.wm-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.wm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.wm-hero-panel {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(7, 29, 51, 0.13);
}

.wm-hero-panel img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center;
}

.wm-hero-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  color: #ffffff;
  background: rgba(7, 29, 51, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.wm-hero-note strong,
.wm-hero-note span {
  display: block;
}

.wm-hero-note strong {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.wm-hero-note span {
  color: rgba(255, 255, 255, 0.76);
}

.wm-summary {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wm-summary div {
  min-height: 220px;
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 29, 51, 0.07);
}

.wm-summary span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 900;
  background: var(--mint);
  border-radius: 8px;
}

.wm-summary strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.15rem;
}

.wm-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.wm-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.wm-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.wm-intro-copy h2,
.wm-check-copy h2,
.wm-tips-section h2 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.wm-intro-copy p:not(.eyebrow),
.wm-check-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.wm-intro-image {
  overflow: hidden;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 29, 51, 0.1);
}

.wm-intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.wm-diagnosis {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(180deg, #eef8fb 0%, #f7fcff 100%);
  border-block: 1px solid rgba(207, 224, 234, 0.86);
}

.wm-diagnosis-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.wm-diagnosis-list article {
  min-height: 230px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 29, 51, 0.06);
}

.wm-diagnosis-list h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.05rem;
}

.wm-diagnosis-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.wm-type-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 34px;
}

.wm-type-grid {
  display: grid;
  gap: 18px;
}

.wm-type-grid article {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 29, 51, 0.07);
}

.wm-type-grid article:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
}

.wm-type-grid article:nth-child(even) img {
  order: 2;
}

.wm-type-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.wm-type-grid div {
  display: grid;
  align-content: center;
  padding: 34px;
}

.wm-type-grid h3 {
  color: var(--ink);
  font-size: 1.35rem;
}

.wm-type-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.wm-check-section {
  width: min(1160px, calc(100% - 32px));
  margin: 38px auto;
  padding: 46px;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 38px;
  align-items: start;
  background:
    linear-gradient(135deg, #ffffff 0%, #f3fbfd 58%, #e2f5f2 100%);
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 29, 51, 0.08);
}

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

.wm-check-list div {
  min-height: 118px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(7, 29, 51, 0.06);
}

.wm-check-list strong,
.wm-check-list span {
  display: block;
}

.wm-check-list strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.02rem;
}

.wm-check-list span {
  color: var(--muted);
  line-height: 1.45;
}

.wm-service-band {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wm-band-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(207, 224, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 29, 51, 0.07);
}

.wm-band-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wm-band-card h3,
.wm-band-card p {
  margin-inline: 24px;
}

.wm-band-card h3 {
  margin-top: 24px;
  color: var(--ink);
  font-size: 1.2rem;
}

.wm-band-card p {
  margin-bottom: 26px;
  color: var(--muted);
}

.wm-tips-section {
  width: 100%;
  padding: 76px max(16px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 42px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 29, 51, 0.22), rgba(7, 29, 51, 0)),
    linear-gradient(135deg, var(--trust-blue), var(--teal-dark));
}

.wm-tips-section h2,
.wm-tips-section .eyebrow {
  color: #ffffff;
}

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

.wm-tips-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.wm-tips-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 16px;
  height: 16px;
  background: var(--amber);
  border-radius: 50%;
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 140, 149, 0.18);
  border-color: var(--teal);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.footer {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(0, 140, 149, 0.18), rgba(7, 29, 51, 0)),
    var(--navy);
  border-top: 1px solid rgba(42, 167, 223, 0.22);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 38px;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  gap: 34px;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 440px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-call,
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  font-weight: 800;
  border-radius: 8px;
}

.footer-call {
  background: var(--teal);
}

.footer-whatsapp {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.footer h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.footer-links,
.footer-services,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-contact {
  margin: 0;
  font-style: normal;
}

.footer a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  line-height: 1.45;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--sky-blue);
  font-weight: 800;
}

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

@media (max-width: 900px) {
  html {
    scroll-padding-top: 86px;
  }

  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    order: 4;
    display: none;
    width: 100%;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 0 0 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(42, 167, 223, 0.22);
    border-radius: 8px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 8px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(42, 167, 223, 0.22);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.82);
  }

  .nav-dropdown-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-call {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7, 29, 51, 0.94), rgba(15, 76, 129, 0.58));
  }

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

  .quick-strip,
  .service-grid,
  .service-category-grid,
  .band-inner,
  .split {
    grid-template-columns: 1fr;
  }

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

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 0;
    padding-left: 36px;
  }

  .process-timeline::before {
    top: 14px;
    bottom: 14px;
    left: 13px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .step-card,
  .step-card:nth-child(even) {
    justify-items: stretch;
    padding: 0;
  }

  .step-marker {
    position: absolute;
    top: 26px;
    left: -36px;
    margin-bottom: 0;
  }

  .step-content {
    min-height: 0;
  }

  .step-content::after {
    top: 31px;
    left: -9px;
    transform: rotate(-45deg);
  }

  .quick-strip.row {
    flex-direction: column;
  }

  .quick-strip.row,
  .service-grid.row {
    row-gap: 0;
  }

  .quick-card {
    border-right: 1px solid rgba(207, 224, 234, 0.92);
    border-bottom: 1px solid rgba(207, 224, 234, 0.92);
  }

  .quick-card:last-child {
    border-bottom: 1px solid rgba(207, 224, 234, 0.92);
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .why-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px;
  }

  .why-copy p:not(.eyebrow) {
    max-width: none;
  }

  .brand-groups {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .reviews-section {
    padding: 34px;
  }

  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-copy {
    align-content: start;
    padding-inline: 0;
  }

  .contact-section {
    gap: 24px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .contact-list {
    margin-top: 24px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-copy {
    padding-left: 0;
  }

  .about-media img {
    min-height: 360px;
    max-height: 460px;
  }

  .service-detail-hero,
  .detail-problems {
    grid-template-columns: 1fr;
  }

  .service-detail-media,
  .service-detail-media img {
    min-height: 420px;
  }

  .detail-service-grid {
    grid-template-columns: 1fr;
  }

  .wm-hero,
  .wm-intro,
  .wm-check-section,
  .wm-tips-section {
    grid-template-columns: 1fr;
  }

  .wm-hero-panel,
  .wm-hero-panel img {
    min-height: 460px;
    height: 460px;
  }

  .wm-summary,
  .wm-service-band {
    grid-template-columns: 1fr;
  }

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

  .wm-type-grid article,
  .wm-type-grid article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .wm-type-grid article:nth-child(even) img {
    order: 0;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 700px;
  }

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

  .hero-content {
    padding-top: 70px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(1.78rem, 9vw, 2.35rem);
    line-height: 1.36;
  }

  .hero-copy {
    max-width: 92%;
    font-size: 0.98rem;
    line-height: 1.72;
  }

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

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section,
  .band-inner {
    padding-block: 68px;
  }

  .about-copy {
    padding-left: 0;
  }

  .about-media img {
    min-height: 300px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .service-category-card {
    padding: 22px;
  }

  .service-category-head {
    flex-direction: row;
  }

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

  .why-section {
    padding: 26px;
  }

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

  .why-item:nth-child(even) {
    transform: none;
  }

  .why-item.wide {
    justify-content: flex-start;
  }

  .brands-section {
    padding: 38px 0 46px;
  }

  .gallery-section {
    padding-block: 52px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-feature {
    grid-column: auto;
    grid-row: span 1;
  }

  .gallery-item figcaption {
    font-size: 0.86rem;
  }

  .brand-group {
    padding: 24px;
  }

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

  .reviews-section {
    padding: 26px;
  }

  .review-card {
    min-height: 300px;
    padding: 24px;
  }

  .review-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .contact-section {
    width: 100%;
    padding-inline: 16px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .contact-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.18;
  }

  .contact-copy > p:not(.eyebrow) {
    max-width: none;
    font-size: 0.98rem;
  }

  .contact-item {
    gap: 12px;
    padding: 14px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon svg {
    width: 21px;
    height: 21px;
  }

  .contact-item a,
  .contact-item p > span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .form-head h3 {
    font-size: 1.25rem;
  }

  .contact-form .btn {
    width: 100%;
  }

  .location-map,
  .location-map iframe {
    min-height: 280px;
    height: 280px;
  }

  .faq-section {
    padding: 28px 22px;
    margin-bottom: 46px;
  }

  .emergency-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .emergency-actions {
    width: 100%;
  }

  .emergency-actions .btn {
    flex: 1 1 150px;
  }

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

  .process-timeline {
    padding-left: 30px;
  }

  .step-marker {
    left: -30px;
    width: 24px;
    height: 24px;
    border-width: 6px;
  }

  .step-content {
    padding: 22px;
  }

  .step-icon {
    top: 22px;
    right: 22px;
  }

  .quick-strip {
    margin-top: -34px;
  }

  .service-detail-hero {
    padding-top: 54px;
    gap: 28px;
  }

  .service-detail-media,
  .service-detail-media img {
    min-height: 320px;
  }

  .service-detail-strip {
    margin-top: 0;
  }

  .detail-service-card {
    grid-template-columns: 1fr;
  }

  .detail-service-card img {
    min-height: 220px;
    height: 220px;
  }

  .detail-problems {
    padding: 26px;
  }

  .problem-list,
  .detail-brand-logos {
    grid-template-columns: 1fr;
  }

  .wm-hero {
    padding-top: 54px;
    gap: 28px;
  }

  .wm-hero-panel,
  .wm-hero-panel img {
    min-height: 330px;
    height: 330px;
  }

  .wm-hero-note {
    position: static;
    margin: 0;
    border-radius: 0;
  }

  .wm-summary div {
    min-height: 0;
  }

  .wm-section,
  .wm-type-section {
    padding-block: 58px;
  }

  .wm-intro-image img,
  .wm-type-grid img {
    height: 240px;
    min-height: 240px;
  }

  .wm-diagnosis-list,
  .wm-check-list {
    grid-template-columns: 1fr;
  }

  .wm-diagnosis-list article {
    min-height: 0;
  }

  .wm-type-grid div,
  .wm-check-section {
    padding: 24px;
  }

  .wm-service-band {
    padding-bottom: 52px;
  }

  .wm-tips-section {
    padding-block: 58px;
    gap: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 42px;
  }

  .footer-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-call,
  .footer-whatsapp {
    width: 100%;
  }
}
