@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter-latin-800-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-800-normal.woff2") format("woff2");
}

:root {
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #0891b2;
  --green: #16a34a;
  --soft: #f6f8fc;
  --line: #e2e8f0;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
}
img,
svg {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.narrow {
  max-width: 850px;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.utility-bar {
  min-height: 38px;
  background: #081225;
  color: #dbeafe;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}
.utility-track {
  display: flex;
  justify-content: center;
  gap: 34px;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.utility-track span {
  white-space: nowrap;
}
.utility-track i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 9px;
  box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.09);
}
.scroll-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 999;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #60a5fa, #2563eb, #22c55e);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: 0.25s;
}
.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
}
.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 23px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand-mark {
  width: 38px;
  color: var(--ink);
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}
.brand small {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 5px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.site-nav > a,
.services-toggle {
  position: relative;
  border: 0;
  background: none;
  padding: 28px 0;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.site-nav > a:after,
.services-toggle:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  transition: right 0.2s;
}
.site-nav > a:hover:after,
.site-nav > a.active:after,
.services-toggle:hover:after,
.nav-dropdown.active .services-toggle:after {
  right: 0;
}
.site-nav > a:hover,
.services-toggle:hover,
.site-nav > a.active,
.nav-dropdown.active .services-toggle {
  color: var(--blue);
}
.chevron {
  width: 16px;
  transition: transform 0.2s;
}
.nav-dropdown.open .chevron {
  transform: rotate(180deg);
}
.service-location-choices {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.service-location-heading {
  flex: 0 0 auto;
}
.service-location-heading span {
  color: var(--ink);
  font-family: Manrope, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-area-coverage {
  margin-left: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.service-area-coverage:hover {
  text-decoration: underline;
}
.service-location-grid {
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-location-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 6px 12px 6px 7px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #fff;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.service-location-card.is-selected {
  border-color: #60a5fa;
  background: #eff6ff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.1);
}
.service-location-card:hover {
  transform: translateY(-1px);
  border-color: #93c5fd;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1);
}
.location-card-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.service-location-card:nth-child(2) .location-card-marker {
  background: var(--blue);
}
.service-location-card strong {
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
}
.service-location-card b {
  color: var(--blue);
  font-size: 13px;
  transition: transform 0.2s ease;
}
.service-location-card:hover b {
  transform: translateX(3px);
}
.service-location-card.is-selected:hover b {
  transform: none;
}
.service-location-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(1120px, calc(100vw - 40px));
  background:
    radial-gradient(circle at 8% 0%, rgba(96, 165, 250, 0.1), transparent 34%),
    radial-gradient(circle at 96% 100%, rgba(34, 211, 238, 0.07), transparent 30%),
    linear-gradient(145deg, #ffffff, #f7fbff);
  border: 1px solid rgba(147, 197, 253, 0.48);
  border-radius: 24px;
  box-shadow:
    0 30px 85px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.22s;
}
.nav-dropdown {
  position: static;
}
.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu,
.nav-dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.mega-column h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin: 0 0 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(147, 197, 253, 0.38);
}
.mega-column a {
  display: block;
  padding: 7px 8px;
  color: #1e293b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
  border-radius: 9px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    padding 0.2s ease,
    transform 0.2s ease;
}
.mega-column a:hover {
  color: var(--blue);
  padding-left: 12px;
  background: #eff6ff;
  transform: translateX(2px);
}
.mega-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.mega-footer a {
  font-weight: 700;
  color: var(--blue);
}
.resources-menu {
  left: 64%;
  width: min(560px, calc(100vw - 40px));
}
.resource-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.resource-links a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border: 1px solid rgba(147, 197, 253, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: 0.2s ease;
}
.resource-links a:hover {
  border-color: #93c5fd;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}
.resource-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eff6ff;
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transition: 0.2s ease;
}
.resource-links a:nth-child(2) .resource-icon {
  background: #ecfeff;
  color: #0e7490;
}
.resource-links a:nth-child(3) .resource-icon {
  background: #f0fdf4;
  color: #15803d;
}
.resource-links a:nth-child(4) .resource-icon {
  background: #fff7ed;
  color: #c2410c;
}
.resource-links a:hover .resource-icon {
  transform: scale(1.06);
}
.resource-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.resource-copy strong {
  color: var(--ink);
  font-size: 14px;
}
.resource-copy > span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.header-actions .button {
  white-space: nowrap;
}
.header-call svg {
  width: 17px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--blue);
  cursor: pointer;
  transition: 0.22s;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.18);
}
.button:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
}
.button-small {
  min-height: 43px;
  padding: 0 16px;
  font-size: 13px;
}
.button-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.button-secondary:hover {
  background: var(--soft);
  color: var(--ink);
}
.button-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.button-light:hover {
  background: #eef4ff;
  color: var(--ink);
}
.button-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}
.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
}
.hero {
  padding: 76px 0 88px;
  overflow: hidden;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 66%);
  left: -240px;
  top: -200px;
  pointer-events: none;
  animation: ambient-drift 10s ease-in-out infinite alternate;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 68px;
}
.hero-copy h1,
.page-hero h1 {
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.01;
  letter-spacing: -0.055em;
  margin: 18px 0 22px;
  max-width: 850px;
}
.hero-lead,
.page-hero p {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 700px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 8px 13px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(236, 254, 255, 0.9));
  box-shadow: 0 7px 20px rgba(37, 99, 235, 0.07);
  font-size: 11px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.105em;
  color: #1d4ed8;
  font-weight: 700;
}
.eyebrow-light {
  color: #eff6ff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.appliance-letter,
.service-visual-monogram {
  display: grid;
  place-items: center;
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--blue);
}
.appliance-letter { font-size: 28px; }
.service-visual-monogram {
  width: 126px;
  height: 126px;
  margin: auto;
  border-radius: 36px;
  background: linear-gradient(145deg, #eff6ff, #ecfeff);
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  font-size: 42px;
}
.service-letter-visual small { margin-top: 22px; }
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.micro-copy {
  font-size: 12px !important;
  color: var(--muted) !important;
  margin-top: 14px;
}
.micro-copy a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}
.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.trust-row span:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 8px;
}
.hero-service-panel {
  position: relative;
  padding: 27px;
  border: 1px solid rgba(147, 197, 253, 0.44);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.11), transparent 32%),
    linear-gradient(145deg, #ffffff, #f4f8ff);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  animation: hero-enter 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s both;
}
.hero-service-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.hero-service-header > div > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-service-header h2 {
  margin: 4px 0 0;
  font-size: 31px;
  letter-spacing: -0.035em;
}
.hero-service-header > a,
.hero-service-footer a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.hero-service-header a b,
.hero-service-footer a b {
  display: inline-block;
  transition: transform 0.2s ease;
}
.hero-service-header a:hover b,
.hero-service-footer a:hover b {
  transform: translateX(3px);
}
.hero-service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.quick-service {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 11px 12px;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 #fff;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.quick-service:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  background: #fff;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.1);
}
.quick-service-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eff6ff;
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.quick-service-mark svg {
  width: 27px;
  height: 27px;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 5px rgba(37, 99, 235, 0.12));
}
.quick-service:nth-child(2) .quick-service-mark,
.quick-service:nth-child(5) .quick-service-mark {
  background: #ecfeff;
  color: #0e7490;
}
.quick-service:nth-child(3) .quick-service-mark,
.quick-service:nth-child(6) .quick-service-mark {
  background: #f0fdf4;
  color: #15803d;
}
.quick-service > span:not(.quick-service-mark) {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.quick-service strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}
.quick-service small {
  color: var(--muted);
  font-size: 11px;
}
.quick-service > b {
  color: var(--blue);
  font-size: 15px;
  transition: transform 0.2s ease;
}
.quick-service:hover > b {
  transform: translateX(3px);
}
.hero-service-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-enter 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-copy > *:nth-child(1) {
  animation-delay: 0.06s;
}
.hero-copy > *:nth-child(2) {
  animation-delay: 0.14s;
}
.hero-copy > *:nth-child(3) {
  animation-delay: 0.22s;
}
.hero-copy > *:nth-child(4) {
  animation-delay: 0.3s;
}
.hero-copy > *:nth-child(5) {
  animation-delay: 0.38s;
}
.hero-copy > *:nth-child(6) {
  animation-delay: 0.46s;
}
.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 40px;
  background: linear-gradient(145deg, #eef4ff, #f8fafc 46%, #dbeafe);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: visual-float 6.5s ease-in-out infinite;
  will-change: transform;
}
.visual-orbit {
  position: absolute;
  border: 1px solid rgba(37, 99, 235, 0.17);
  border-radius: 50%;
  animation: orbit-spin 22s linear infinite;
}
.orbit-one {
  width: 430px;
  height: 430px;
  right: -75px;
  top: 35px;
}
.orbit-two {
  width: 290px;
  height: 290px;
  left: -75px;
  bottom: -75px;
  animation-direction: reverse;
  animation-duration: 17s;
}
.appliance-stack {
  position: absolute;
  inset: 90px 80px 70px 95px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
}
.appliance {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}
.appliance-fridge {
  width: 180px;
  height: 315px;
  border-radius: 25px;
  position: relative;
  animation: appliance-bob 5s ease-in-out infinite;
}
.appliance-fridge:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 112px;
  height: 1px;
  background: #dbe3ef;
}
.appliance-fridge span {
  position: absolute;
  width: 4px;
  height: 42px;
  border-radius: 99px;
  background: #cbd5e1;
  left: 21px;
}
.appliance-fridge span:first-child {
  top: 45px;
}
.appliance-fridge span:last-child {
  top: 140px;
}
.appliance-washer {
  width: 210px;
  height: 255px;
  border-radius: 25px;
  position: relative;
  animation: appliance-bob 5s ease-in-out 1.1s infinite;
}
.appliance-washer:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 14px solid #dbeafe;
  background: linear-gradient(145deg, #93c5fd, #eff6ff);
  left: 31px;
  top: 74px;
}
.appliance-washer span {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  height: 34px;
  border-radius: 10px;
  background: #f1f5f9;
}
.appliance-washer i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563eb;
  right: 32px;
  top: 32px;
}
.visual-note {
  position: absolute;
  background: #fff;
  padding: 12px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
  animation: note-float 4.2s ease-in-out infinite;
}
.note-one {
  top: 58px;
  left: 36px;
}
.note-two {
  right: 28px;
  bottom: 35px;
  animation-delay: 1.2s;
}
.visual-status {
  position: absolute;
  z-index: 3;
  right: 28px;
  top: 28px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  padding: 10px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.visual-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.12);
}
.service-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 17px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #334155;
  white-space: nowrap;
}
.marquee-track b {
  color: #60a5fa;
  font-size: 18px;
}
.benefits-strip {
  padding: 26px 0;
  background: #0f172a;
  color: #fff;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  overflow: hidden;
}
.benefits-grid article {
  background: #0f172a;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  background: #172554;
  color: #93c5fd;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}
.benefits-grid strong {
  display: block;
  font-size: 14px;
}
.benefits-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.35;
  margin-top: 3px;
  font-size: 13px;
}
.benefits-grid small a {
  text-decoration: underline;
}
.section {
  padding: 84px 0;
}
.section-muted {
  background: var(--soft);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading h2,
.split-layout h2,
.content-grid h2,
.assurance-grid h2,
.faq-layout h2,
.cta-band h2,
.contact-panel h2,
.booking-summary h2,
.payment-section h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 15px 0 0;
  max-width: 760px;
}
.section-heading p {
  color: var(--muted);
  max-width: 680px;
}
.text-arrow {
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.appliance-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card-visual {
  padding: 0 25px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  min-height: 334px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.25s;
  overflow: hidden;
}
.service-card-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
  border-color: #bfdbfe;
}
.appliance-icon {
  height: 180px;
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
}
.appliance-icon:before {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: linear-gradient(145deg, #eff6ff, #f8fafc);
}
.appliance-svg {
  width: 125px;
  height: 105px;
  position: relative;
  color: #2563eb;
  filter: drop-shadow(0 13px 12px rgba(37, 99, 235, 0.12));
  transition: 0.25s;
}
.icon-fridge .appliance-svg,
.icon-freezer .appliance-svg,
.icon-ice .appliance-svg,
.icon-wine .appliance-svg {
  color: #0891b2;
}
.icon-oven .appliance-svg,
.icon-cooker .appliance-svg,
.icon-hob .appliance-svg,
.icon-microwave .appliance-svg,
.icon-hood .appliance-svg {
  color: #ea580c;
}
.icon-coffee .appliance-svg,
.icon-airfryer .appliance-svg,
.icon-blender .appliance-svg,
.icon-water .appliance-svg,
.icon-small .appliance-svg {
  color: #7c3aed;
}
.icon-vacuum .appliance-svg {
  color: #db2777;
}
.service-card-visual:hover .appliance-svg {
  transform: translateY(-5px) scale(1.035);
}
.service-card-visual h3 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 9px;
}
.service-card-visual p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 20px;
}
.card-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
}
.local-process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}
.local-process-list li {
  padding: 25px;
  border-top: 2px solid #bfdbfe;
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.local-process-list li > span {
  display: inline-block;
  margin-bottom: 25px;
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
}
.local-process-list h3 {
  margin: 0 0 9px;
  font-size: 18px;
}
.local-process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.preparation-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}
.preparation-layout > div:first-child p {
  color: var(--muted);
  max-width: 540px;
}
.preparation-cards {
  display: grid;
  gap: 12px;
}
.preparation-cards article {
  padding: 23px 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.preparation-cards h3 {
  margin: 0 0 7px;
  font-size: 18px;
}
.preparation-cards p {
  margin: 0;
  color: var(--muted);
}
.local-service-links {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.local-service-links h3 {
  margin: 0 0 18px;
  font-size: 20px;
}
.local-service-links > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.local-service-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}
.local-service-links a:hover {
  border-color: #93c5fd;
  color: var(--blue);
  transform: translateY(-2px);
}
.local-service-links a span {
  color: var(--blue);
}
.split-layout,
.content-grid,
.assurance-grid,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 78px;
  align-items: start;
}
.process-list {
  display: grid;
  gap: 14px;
}
.process-list article {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: 0.25s;
}
.process-list article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  border-color: #bfdbfe;
}
.process-list article > span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.process-list h3 {
  margin: 0 0 4px;
}
.process-list p {
  margin: 0;
  color: var(--muted);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.location-card {
  padding: 46px;
  border-radius: 32px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.location-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.24),
    transparent 38%
  );
}
.location-card > * {
  position: relative;
}
.location-dubai {
  background: linear-gradient(145deg, #0f172a, #1e3a8a);
}
.location-abudhabi {
  background: linear-gradient(145deg, #1e293b, #0f766e);
}
.location-card h2 {
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 15px 0 12px;
}
.location-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
}
.location-card .button {
  margin-top: 12px;
}
.assurance-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.assurance-cards article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.assurance-cards h3 {
  margin: 0 0 7px;
}
.assurance-cards p {
  margin: 0;
  color: var(--muted);
}
.about-principles article {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.about-principles article:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}
.principle-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.company-identity {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #f8fbff);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.07);
}
.company-identity h2 {
  margin: 14px 0;
}
.company-identity p {
  color: var(--muted);
}
.company-identity dl {
  margin: 0;
}
.company-identity dl div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.company-identity dl div:last-child {
  border-bottom: 0;
}
.company-identity dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.company-identity dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}
.quote-heading {
  align-items: end;
  margin-bottom: 54px;
}
.quote-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.quote-steps:before {
  content: "";
  position: absolute;
  top: 29px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #93c5fd, #2563eb, #22c55e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s 0.15s ease;
}
.motion-section.is-visible .quote-steps:before {
  transform: scaleX(1);
}
.quote-steps li {
  position: relative;
  z-index: 1;
}
.quote-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  border: 6px solid var(--soft);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: Manrope, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}
.quote-steps li:last-child .quote-step-number {
  background: var(--green);
}
.quote-steps h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.quote-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-legal-name {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 13px;
}
.social-preview {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.social-preview span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  cursor: default;
  transition: 0.2s ease;
}
.social-preview span:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  transform: translateY(-2px);
}
.home-page .site-header:not(.scrolled):not(.menu-open) {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(226, 232, 240, 0.72);
  box-shadow: none;
}
.home-page .hero {
  margin-top: -81px;
  padding-top: 140px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #f4f8ff 0%, #fff 82%);
}
.help-preview {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 65px;
  align-items: center;
}
.manual-search-card {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, #0f172a, #1d4ed8);
  color: #fff;
  box-shadow: var(--shadow);
}
.manual-search-card h3 {
  font-size: 30px;
  margin: 18px 0 8px;
}
.manual-search-card p {
  color: #dbeafe;
}
.manual-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.model-tag {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 99px;
  margin: 8px 5px 0 0;
  font-size: 12px;
}
.cta-band {
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  padding: 65px 0;
  color: #fff;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-band h2 {
  margin-top: 12px;
}
.cta-band p {
  color: #dbeafe;
  max-width: 720px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.page-hero {
  padding: 90px 0 78px;
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.page-hero .hero-grid {
  grid-template-columns: 1fr 0.52fr;
}
.service-visual {
  min-height: 350px;
  border-radius: 34px;
  background: linear-gradient(145deg, #0f172a, #2563eb);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.service-visual:before,
.service-visual:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  animation: orbit-spin 18s linear infinite;
}
.service-visual:before {
  width: 280px;
  height: 280px;
}
.service-visual:after {
  width: 390px;
  height: 390px;
  animation-direction: reverse;
  animation-duration: 25s;
}
.service-visual-icon {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
}
.service-visual .appliance-svg {
  color: #fff;
  width: 115px;
  height: 105px;
  filter: none;
}
.service-visual small {
  position: relative;
  z-index: 2;
  font-weight: 700;
  margin-top: 20px;
}
.problem-list,
.area-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.problem-list li,
.area-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  font-weight: 700;
}
.problem-list li:before,
.area-list li:before {
  content: "✓";
  color: var(--blue);
  margin-right: 10px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  border: 0;
  background: none;
  padding: 22px 0;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}
.faq-item b {
  font-size: 24px;
  color: var(--blue);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s;
}
.faq-answer > p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-answer > p {
  padding-bottom: 22px;
}
.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.mini-service-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  display: flex;
  gap: 14px;
  align-items: center;
}
.mini-icon {
  width: 64px;
  height: 58px;
  border-radius: 15px;
  background: #eff6ff;
  display: grid;
  place-items: center;
  flex: 0 0 64px;
}
.mini-icon .appliance-svg {
  width: 54px;
  height: 45px;
  filter: none;
}
.service-category {
  padding: 58px 0;
}
.service-category:nth-child(even) {
  background: var(--soft);
}
.category-heading {
  margin-bottom: 25px;
}
.category-heading h2 {
  font-size: 42px;
  letter-spacing: -0.04em;
  margin: 12px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}
.price-card.featured {
  background: linear-gradient(145deg, #0f172a, #1d4ed8);
  color: #fff;
}
.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--blue);
}
.featured .price-label {
  color: #93c5fd;
}
.price-card > strong {
  display: block;
  font-size: 38px;
  line-height: 1.05;
  margin: 24px 0 12px;
  letter-spacing: -0.04em;
}
.price-card h2 {
  font-size: 23px;
}
.price-card p {
  color: var(--muted);
}
.featured p {
  color: #dbeafe;
}
.price-card a {
  font-weight: 700;
  color: var(--blue);
}
.featured a {
  color: #fff;
  text-decoration: underline;
}
.payment-section > div:first-child {
  max-width: 760px;
}
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.payment-methods span {
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}
.payment-note {
  font-size: 13px;
  color: var(--muted);
}
.booking-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 38px;
  align-items: start;
}
.booking-summary {
  padding: 30px;
  border-radius: 26px;
  background: #0f172a;
  color: #fff;
  position: sticky;
  top: 112px;
}
.booking-summary h2 {
  font-size: 36px;
}
.booking-summary ul {
  padding-left: 20px;
  color: #dbeafe;
}
.booking-summary details {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
  margin: 22px 0;
}
.booking-summary summary {
  font-weight: 700;
  cursor: pointer;
}
.booking-summary p {
  color: #cbd5e1;
}
.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-section {
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.form-section h3 {
  font-size: 21px;
  margin: 0 0 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label,
.manual-finder label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea,
.contact-form select,
.manual-finder input,
.manual-finder select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.manual-finder input:focus,
.manual-finder select:focus {
  outline: 3px solid rgba(37, 99, 235, 0.13);
  border-color: var(--blue);
}
.form-help {
  font-size: 13px;
  color: var(--muted);
}
.upload-box {
  border: 2px dashed #bfdbfe;
  border-radius: 18px;
  padding: 24px;
  background: #f8fbff;
  cursor: pointer;
}
.upload-box input {
  border: 0;
  padding: 0;
}
.upload-box span {
  color: var(--blue);
  font-size: 15px;
}
.upload-box small {
  color: var(--muted);
}
.checkbox-label {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px !important;
}
.checkbox-label input {
  width: 20px !important;
  height: 20px;
  flex: 0 0 20px;
}
.checkbox-label a {
  color: var(--blue);
  text-decoration: underline;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.contact-panel {
  padding: 34px;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
  position: sticky;
  top: 112px;
}
.contact-panel a:not(.button),
.contact-panel > div {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-panel strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #93c5fd;
}
.contact-panel span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
}
.contact-book {
  margin-top: 24px;
}
.notice-box,
.warning-box {
  padding: 24px;
  border-radius: 18px;
  background: #eff6ff;
  border-left: 4px solid var(--blue);
  margin-bottom: 32px;
}
.warning-box {
  background: #fff7ed;
  border-color: #ea580c;
}
.terms-document section {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.legal-copy h2 {
  margin: 0 0 10px;
  font-size: 26px;
}
.legal-copy p {
  color: #475569;
  font-size: 17px;
}
.legal-copy a {
  color: var(--blue);
  font-weight: 700;
}
.legal-copy a.button {
  color: #fff;
}
.legal-copy a.button:hover,
.legal-copy a.button:focus-visible {
  color: #fff;
}
.legal-copy a.button-secondary,
.legal-copy a.button-secondary:hover,
.legal-copy a.button-secondary:focus-visible {
  color: var(--ink);
}
.manual-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 30px;
  align-items: start;
}
.manual-finder,
.manual-tips {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
}
.manual-finder h2 {
  font-size: 36px;
  margin-top: 0;
}
.manual-tips {
  background: #0f172a;
  color: #fff;
}
.manual-tips p,
.manual-tips li {
  color: #cbd5e1;
}
.manual-result {
  margin-top: 24px;
  padding: 20px;
  border-radius: 18px;
  background: #eff6ff;
}
.manual-result .button {
  margin-top: 12px;
}
.brand-manual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.brand-manual-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 170px;
}
.brand-manual-card strong {
  font-size: 25px;
}
.brand-manual-card span {
  color: var(--muted);
  margin-top: 6px;
}
.brand-manual-card b {
  margin-top: auto;
  color: var(--blue);
}
.manual-disclaimer {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.article-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 390px;
}
.article-icon {
  height: 150px;
  border-radius: 20px;
  background: #eff6ff;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.article-icon .appliance-svg {
  width: 110px;
}
.article-card > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--blue);
  font-weight: 700;
}
.article-card h3 {
  font-size: 25px;
  line-height: 1.15;
  margin: 14px 0 10px;
}
.article-card p {
  color: var(--muted);
}
.article-card b {
  margin-top: auto;
  color: var(--blue);
}
.article-copy h2 {
  font-size: 33px;
  letter-spacing: -0.035em;
  margin-top: 40px;
}
.article-copy h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 30px 0 8px;
}
.article-copy p {
  font-size: 18px;
  color: #475569;
}
.article-copy ul {
  color: #475569;
  font-size: 17px;
  padding-left: 22px;
}
.article-copy li + li {
  margin-top: 8px;
}
.article-byline {
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 700;
  margin-top: 24px;
}
.article-summary {
  font-size: 17px;
  line-height: 1.7;
}
.article-next-step {
  background: var(--soft);
  border: 1px solid var(--line) !important;
  border-radius: 26px;
  margin-top: 52px;
  padding: 32px !important;
}
.article-next-step h2 {
  margin-top: 12px;
}
.article-review {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 52px;
  padding: 30px !important;
  border: 1px solid #bfdbfe !important;
  border-radius: 26px;
  background: #f8fbff;
}
.article-review h2 {
  font-size: 28px;
  margin: 10px 0;
}
.article-review p {
  font-size: 16px;
}
.review-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.review-details {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.review-methodology section {
  padding-block: 28px;
}
.help-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.help-option-grid a {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
}
.help-option-grid span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #eff6ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.help-option-grid h2 {
  font-size: 30px;
}
.help-option-grid p {
  color: var(--muted);
}
.rich-copy p {
  font-size: 18px;
  color: #475569;
}
.thank-you {
  text-align: center;
  min-height: 60vh;
  display: grid;
  align-items: center;
}
.thank-you .hero-actions {
  justify-content: center;
}
.site-footer {
  background: #080f1e;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 30px;
  padding: 44px 0 28px;
}
.brand-footer {
  margin-bottom: 12px;
}
.brand-footer .brand-mark {
  color: #2563eb;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-grid h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #93c5fd;
  margin: 0 0 12px;
}
.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.65);
  margin: 2px 0;
  line-height: 1.45;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-badges {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
}
.footer-badges span {
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.floating-contact {
  position: fixed;
  bottom: 24px;
  z-index: 140;
}
.floating-contact a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.24);
  transition: 0.22s;
  position: relative;
}
.floating-contact a:hover {
  transform: translateY(-4px) scale(1.03);
}
.floating-contact svg {
  width: 27px;
  height: 27px;
}
.floating-call {
  left: 20px;
}
.floating-call a {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--line);
}
.floating-whatsapp {
  right: 20px;
}
.floating-whatsapp a {
  background: var(--green);
  color: #fff;
}
.floating-contact a:after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 68px;
  white-space: nowrap;
  background: #0f172a;
  color: #fff;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: 0.2s;
}
.floating-contact a:hover:after {
  opacity: 1;
  transform: none;
}
.motion-loaded .motion-section .container > * {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.48s ease,
    transform 0.48s ease;
}
.motion-loaded .motion-section.is-visible .container > * {
  opacity: 1;
  transform: none;
}
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.45s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.hero:before,
.hero-visual,
.visual-orbit,
.appliance,
.visual-note,
.service-visual:before,
.service-visual:after {
  animation: none !important;
}
@keyframes utility-scroll {
  to {
    transform: translateX(calc(-50% - 24px));
  }
}
@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}
@keyframes hero-enter {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes visual-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes appliance-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes note-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ambient-drift {
  to {
    transform: translate(80px, 45px) scale(1.08);
  }
}
@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@media (max-width: 1120px) {
  .site-nav {
    gap: 17px;
  }
  .header-actions .button {
    padding-inline: 13px;
  }
  .header-call span {
    display: none;
  }
  .header-call {
    width: 43px;
    padding: 0;
  }
}
@media (max-width: 980px) {
  .header-inner {
    min-height: 72px;
  }
  .site-nav,
  .header-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-header.menu-open .site-nav {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 20px 26px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 95px);
    overflow: auto;
  }
  .site-header.menu-open .site-nav > a,
  .site-header.menu-open .services-toggle {
    padding: 13px 0;
    width: 100%;
    justify-content: space-between;
  }
  .site-header.menu-open .site-nav > a:after,
  .site-header.menu-open .services-toggle:after {
    display: none;
  }
  .site-header.menu-open .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(72px + min(68vh, 650px));
    z-index: 4;
  }
  .nav-dropdown {
    position: relative;
  }
  .mega-menu {
    position: static;
    width: 100%;
    transform: none !important;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.3s;
  }
  .resources-menu {
    width: 100%;
  }
  .resource-links {
    grid-template-columns: 1fr 1fr;
  }
  .nav-dropdown.open .mega-menu {
    max-height: 1450px;
    padding: 10px 0 18px;
  }
  .mega-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .mega-footer {
    flex-direction: column;
    gap: 10px;
  }
  .company-identity {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .quote-steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 42px;
  }
  .quote-steps:before {
    display: none;
  }
  .hero-grid,
  .page-hero .hero-grid,
  .split-layout,
  .content-grid,
  .assurance-grid,
  .faq-layout,
  .contact-layout,
  .help-preview,
  .booking-layout,
  .manual-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .home-page .hero-grid {
    gap: 0;
  }
  .home-page .hero-copy {
    display: contents;
  }
  .home-page .hero-service-panel {
    order: 4;
    margin-top: 30px;
  }
  .home-page .hero-actions {
    order: 5;
    margin-top: 24px;
  }
  .home-page .trust-row {
    order: 6;
    margin-top: 20px;
  }
  .hero-visual {
    min-height: 460px;
  }
  .appliance-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .local-process-list {
    grid-template-columns: 1fr 1fr;
  }
  .local-service-links > div {
    grid-template-columns: 1fr 1fr;
  }
  .preparation-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .booking-summary,
  .contact-panel {
    position: static;
  }
  .brand-manual-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-grid,
  .help-option-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .service-location-choices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .service-location-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .service-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .service-location-card {
    width: 100%;
    justify-content: flex-start;
    padding: 6px 10px 6px 7px;
  }
  .service-location-card b {
    margin-left: auto;
  }
  .service-area-coverage {
    margin-left: 0;
  }
  .home-page .hero {
    margin-top: -73px;
    padding-top: 126px;
  }
  .resource-links {
    grid-template-columns: 1fr;
  }
  .hero-service-panel {
    padding: 19px;
    border-radius: 26px;
  }
  .hero-service-header {
    align-items: center;
  }
  .hero-service-header h2 {
    font-size: 27px;
  }
  .hero-service-header > a {
    font-size: 12px;
  }
  .hero-service-grid {
    gap: 8px;
    margin-top: 18px;
  }
  .quick-service {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    min-height: 66px;
    padding: 9px;
    border-radius: 15px;
  }
  .quick-service-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 9px;
  }
  .quick-service-mark svg {
    width: 23px;
    height: 23px;
  }
  .quick-service strong {
    font-size: 12px;
  }
  .quick-service small {
    font-size: 10px;
  }
  .quick-service > b {
    display: none;
  }
  .hero-service-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .company-identity {
    padding: 27px;
  }
  .company-identity dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .quote-heading {
    margin-bottom: 38px;
  }
  .quote-steps {
    display: block;
  }
  .quote-steps li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 17px;
    padding-bottom: 30px;
  }
  .quote-steps li:not(:last-child):after {
    content: "";
    position: absolute;
    left: 29px;
    top: 57px;
    bottom: 0;
    width: 2px;
    background: #bfdbfe;
  }
  .quote-step-number {
    width: 58px;
    height: 58px;
    margin: 0;
  }
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .utility-bar {
    height: 30px;
  }
  .utility-track {
    gap: 32px;
    font-size: 10px;
    animation-duration: 24s;
  }
  .hero {
    padding: 54px 0 70px;
  }
  .hero-copy h1,
  .page-hero h1 {
    font-size: 43px;
  }
  .hero-lead,
  .page-hero p {
    font-size: 17px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-visual {
    min-height: 380px;
    border-radius: 28px;
  }
  .appliance-stack {
    inset: 80px 30px 45px;
  }
  .appliance-fridge {
    width: 125px;
    height: 225px;
  }
  .appliance-washer {
    width: 150px;
    height: 185px;
  }
  .appliance-washer:before {
    width: 88px;
    height: 88px;
    left: 19px;
    top: 62px;
  }
  .visual-note {
    font-size: 11px;
  }
  .note-one {
    left: 18px;
    top: 22px;
  }
  .note-two {
    right: 16px;
    bottom: 18px;
  }
  .visual-status {
    top: 18px;
    right: 16px;
    font-size: 9px;
    padding: 8px 11px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .utility-track {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .utility-track::-webkit-scrollbar {
    display: none;
  }
  .utility-track span {
    flex: 0 0 auto;
  }
  .utility-track span:nth-child(3) {
    display: none;
  }
  .local-process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .local-service-links > div {
    grid-template-columns: 1fr;
  }
  .local-process-list li {
    padding: 22px 0;
    border-top-color: var(--line);
    background: transparent;
  }
  .benefits-grid article {
    padding: 17px;
  }
  .section {
    padding: 68px 0;
  }
  .section-heading,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .appliance-card-grid,
  .location-grid,
  .assurance-cards,
  .problem-list,
  .area-list,
  .mini-service-grid,
  .form-grid,
  .brand-manual-grid,
  .article-grid,
  .help-option-grid {
    grid-template-columns: 1fr;
  }
  .service-card-visual {
    min-height: 330px;
  }
  .appliance-icon {
    height: 180px;
  }
  .location-card {
    min-height: 330px;
    padding: 32px;
  }
  .location-card h2 {
    font-size: 32px;
  }
  .cta-actions,
  .cta-actions .button {
    width: 100%;
  }
  .mega-grid {
    grid-template-columns: 1fr;
  }
  .site-header.menu-open .header-actions {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 38px 0 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 14px 0 68px;
  }
  .floating-contact {
    bottom: 15px;
  }
  .floating-call {
    left: 12px;
  }
  .floating-whatsapp {
    right: 12px;
  }
  .floating-contact a {
    width: 48px;
    height: 48px;
  }
  .contact-form {
    padding: 22px;
  }
  .article-review {
    grid-template-columns: 1fr;
    padding: 24px !important;
  }
  .booking-summary {
    padding: 24px;
  }
}

/* Consistent themed cards across service and business sections */
.service-card-visual {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  border-color: #dbe7f8;
  box-shadow: 0 14px 34px rgba(30, 64, 175, 0.07);
}
.service-card-visual:nth-child(3n + 2) { background: linear-gradient(180deg, #ffffff 0%, #eefbfc 100%); }
.service-card-visual:nth-child(3n) { background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%); }
.business-equipment-grid article {
  position: relative;
  overflow: hidden;
  border-color: #d9e7f8;
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 72%, #ecfeff 120%);
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.08);
}
.business-equipment-grid article:nth-child(even) { background: linear-gradient(145deg, #ffffff 0%, #f0fdfa 72%, #eff6ff 120%); }
.business-equipment-grid article > span:first-child {
  display: inline-grid;
  place-items: center;
  min-width: 2.45rem;
  height: 2.45rem;
  padding: 0 .6rem;
  margin-bottom: .85rem;
  border-radius: .8rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(37, 99, 235, .2);
}
.business-support-grid article {
  border-color: rgba(37, 99, 235, .18);
  background: linear-gradient(145deg, #f8fbff, #eef6ff 65%, #ecfeff);
  box-shadow: 0 16px 38px rgba(37, 99, 235, .08);
}
.price-card:not(.featured) {
  background: linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
  border-color: #dce7f7;
}

@media (max-width: 680px) {
  .business-equipment-grid article,
  .business-support-grid article {
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(37, 99, 235, .09);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .utility-track,
  .marquee-track,
  .hero-copy > *,
  .hero-visual,
  .visual-orbit,
  .appliance,
  .visual-note,
  .cta-band,
  .service-visual:before,
  .service-visual:after {
    animation: none !important;
  }
  .hero-copy > * {
    opacity: 1;
    transform: none;
  }
  .motion-loaded .motion-section .container > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Commercial services */
.business-path-grid,
.business-equipment-grid,
.business-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.business-path-card,
.business-equipment-grid article,
.business-support-grid article {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--surface, #fff);
  box-shadow: 0 14px 40px rgba(16, 38, 67, 0.07);
}

.business-path-card {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.business-path-card:hover,
.business-path-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 18px 46px rgba(16, 38, 67, 0.12);
}

.business-card-mark {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.business-path-card h3,
.business-equipment-grid h3,
.business-support-grid h3 { margin-top: 0; }
.business-path-card .card-link { display: inline-block; margin-top: .55rem; }
.business-process { counter-reset: business-step; }
.business-process article { position: relative; padding-left: 4.6rem; }
.business-process article::before {
  counter-increment: business-step;
  content: counter(business-step);
  position: absolute;
  left: 1.4rem;
  top: 1.35rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.business-request-form { margin-top: 1.5rem; }
.business-request-form textarea { resize: vertical; }

@media (max-width: 720px) {
  .business-path-grid,
  .business-equipment-grid,
  .business-support-grid { grid-template-columns: 1fr; }
}

/* Themed commercial pathways */
.business-path-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(37, 99, 235, 0.22);
  background: linear-gradient(145deg, #0f3f9d 0%, #2563eb 62%, #0891b2 125%);
  color: #fff;
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.2);
}
.business-path-card:nth-child(2) {
  background: linear-gradient(145deg, #0f3b70 0%, #087e9c 62%, #2563eb 130%);
}
.business-path-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 12rem;
  height: 12rem;
  right: -4rem;
  bottom: -6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.business-path-card p { color: rgba(255, 255, 255, 0.82); }
.business-path-card .card-link { color: #fff; }
.business-path-card .business-card-mark {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.business-path-card:hover,
.business-path-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.28);
}

@media (max-width: 980px) {
  .site-header.menu-open .site-nav {
    gap: 8px;
    padding: 16px 16px 24px;
    background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
  }
  .site-header.menu-open .site-nav > a,
  .site-header.menu-open .services-toggle {
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid #dbe5f3;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.055);
    color: var(--ink-2);
    line-height: 1.2;
  }
  .site-header.menu-open .site-nav > a:hover,
  .site-header.menu-open .site-nav > a:focus-visible,
  .site-header.menu-open .services-toggle:hover,
  .site-header.menu-open .services-toggle:focus-visible,
  .site-header.menu-open .site-nav > a.active,
  .site-header.menu-open .nav-dropdown.active > .services-toggle,
  .site-header.menu-open .nav-dropdown.open > .services-toggle {
    border-color: #93c5fd;
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
    color: var(--blue-dark);
    box-shadow: 0 7px 20px rgba(37, 99, 235, 0.1);
  }
  .site-header.menu-open .services-toggle .chevron {
    width: 28px;
    height: 28px;
    padding: 6px;
    border-radius: 9px;
    background: #eff6ff;
  }
}

@media (max-width: 680px) {
  .service-card-visual {
    min-height: 0;
    padding: 0 20px 22px;
    border-radius: 20px;
  }
  .appliance-icon {
    height: 142px;
    min-height: 142px;
    isolation: isolate;
  }
  .appliance-icon::before {
    z-index: -1;
    width: 118px;
    height: 118px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  }
  .appliance-svg {
    width: 98px;
    height: 82px;
    stroke-width: 3.25;
  }
  .appliance-letter {
    font-size: 24px;
    color: var(--blue-dark);
  }
  .service-card-visual h3 {
    font-size: 19px;
  }
  .business-path-card {
    min-height: 230px;
    padding: 24px;
    border-radius: 22px;
  }
  .business-card-mark {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
  }
}

/* Compact official-brand directory */
.brand-manual-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.brand-manual-card {
  position: relative;
  min-height: 112px;
  padding: 18px 42px 17px 18px;
  border-color: #dbe7f5;
  border-radius: 17px;
  background: linear-gradient(145deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.brand-manual-card strong { font-size: 18px; line-height: 1.15; }
.brand-manual-card span { margin-top: 7px; font-size: 12px; line-height: 1.35; }
.brand-manual-card b {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  margin: 0;
  border-radius: 9px;
  background: #eaf2ff;
  font-size: 15px;
}
.brand-manual-card:hover,
.brand-manual-card:focus-visible {
  transform: translateY(-3px);
  border-color: #93b8f7;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12);
}

/* Light premium treatment for the outer commercial-service options */
.pricing-grid.business-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.business-support-grid .business-service-option {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: radial-gradient(circle at 100% 0%, rgba(14, 165, 233, 0.16), transparent 42%), linear-gradient(150deg, #fff 0%, #f5f9ff 58%, #eef8ff 100%);
  box-shadow: 0 20px 46px rgba(30, 64, 175, 0.1);
}
.business-support-grid .business-service-option-planned {
  border-color: rgba(8, 145, 178, 0.24);
  background: radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.17), transparent 42%), linear-gradient(150deg, #fff 0%, #f4fbfb 58%, #ecfeff 100%);
}
.business-service-option::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.business-service-option-planned::after { border-color: rgba(8, 145, 178, 0.06); }
.business-option-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 15px;
  background: linear-gradient(145deg, #eaf2ff, #fff);
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 9px 22px rgba(37, 99, 235, 0.12);
}
.business-service-option-planned .business-option-icon {
  border-color: rgba(8, 145, 178, 0.2);
  background: linear-gradient(145deg, #dcfafa, #fff);
  color: #0e7490;
}
.business-service-option h3 {
  margin: 8px 0 12px;
  font-size: clamp(26px, 2.2vw, 34px);
  letter-spacing: -0.035em;
}
.business-service-option ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}
.business-service-option li { position: relative; padding-left: 26px; color: #334155; }
.business-service-option li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 900;
}
.business-service-option-planned li::before { background: #ccfbf1; color: #0f766e; }

@media (max-width: 1100px) {
  .brand-manual-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .pricing-grid.business-support-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .brand-manual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-support-grid .business-service-option { padding: 27px; }
}

/* Keep the themed business cards after the base commercial rules. */
.business-equipment-grid article {
  position: relative;
  overflow: hidden;
  border-color: #d9e7f8;
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 72%, #ecfeff 120%);
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.08);
}
.business-equipment-grid article:nth-child(even) {
  background: linear-gradient(145deg, #ffffff 0%, #f0fdfa 72%, #eff6ff 120%);
}
.business-equipment-grid article > span:first-child {
  display: inline-grid;
  place-items: center;
  min-width: 2.45rem;
  height: 2.45rem;
  padding: 0 .6rem;
  margin-bottom: .85rem;
  border-radius: .8rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(37, 99, 235, .2);
}
.business-support-grid article {
  border-color: rgba(37, 99, 235, .18);
  background: linear-gradient(145deg, #f8fbff, #eef6ff 65%, #ecfeff);
  box-shadow: 0 16px 38px rgba(37, 99, 235, .08);
}
