/* HomeGuard Appliance Repair Services — production styles */
:root {
  --navy-950: #05131f;
  --navy-900: #071a2b;
  --navy-850: #0a2235;
  --navy-800: #0d2a40;
  --navy-700: #153e57;
  --ink: #102332;
  --muted: #5d6d77;
  --line: #dbe4e6;
  --mist: #f2f6f3;
  --cream: #fbfaf5;
  --white: #ffffff;
  --lime: #65f243;
  --lime-dark: #2f9f26;
  --lime-soft: #dffbd7;
  --amber: #ffad42;
  --amber-soft: #fff0d9;
  --error: #b42318;
  --shadow-sm: 0 10px 30px rgba(9, 31, 45, 0.08);
  --shadow-md: 0 25px 70px rgba(6, 29, 44, 0.14);
  --shadow-deep: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
svg { display: block; width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
section[id], article[id] { scroll-margin-top: calc(var(--header-height) + 28px); }

::selection { color: var(--navy-950); background: var(--lime); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--lime);
  border-radius: 10px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-950); font-family: "Space Grotesk", Arial, sans-serif; line-height: 1.05; letter-spacing: -0.04em; }
h1 { margin-bottom: 24px; font-size: clamp(3rem, 6.2vw, 6.2rem); font-weight: 600; }
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4.6vw, 4.7rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
p { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--lime-dark);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow--light { color: var(--lime); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: .91rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms var(--ease-out), box-shadow 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(.97); }
.button svg { width: 18px; height: 18px; }
.button--primary { color: var(--navy-950); background: var(--lime); box-shadow: 0 10px 30px rgba(101, 242, 67, .18); }
.button--primary:hover { background: #79fa59; box-shadow: 0 16px 42px rgba(101, 242, 67, .26); }
.button--call { color: var(--navy-950); background: var(--lime); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.button--ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.12); }
.button--dark { color: var(--white); background: var(--navy-950); box-shadow: var(--shadow-sm); }
.button--dark:hover { background: var(--navy-800); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.34); }
.button--outline-light:hover { color: var(--navy-950); background: var(--white); }
.button--large { min-height: 56px; padding: 16px 23px; }
.button--full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.text-link svg { width: 18px; transition: transform 180ms var(--ease-out); }
.text-link:hover svg { transform: translateX(5px); }

.topbar { color: #cad7dc; background: var(--navy-950); font-size: .78rem; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p, .topbar a { margin: 0; display: flex; align-items: center; gap: 8px; color: inherit; }
.topbar p strong { color: var(--lime); }
.topbar svg { width: 15px; height: 15px; color: var(--lime); }
.topbar a { color: var(--white); font-weight: 700; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(7, 26, 43, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav { height: var(--header-height); display: flex; align-items: center; gap: 26px; }
.brand {
  width: 240px;
  height: 58px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.16);
}
.brand img { width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: clamp(15px, 1.45vw, 24px); margin-left: auto; }
.nav-links a { position: relative; color: #dbe6e9; font-size: .84rem; font-weight: 600; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--lime); transition: right 180ms var(--ease-out); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-call { padding-inline: 17px; }
.nav-toggle, .mobile-menu__close { display: none; align-items: center; justify-content: center; border: 0; background: none; }
.mobile-menu, .menu-backdrop { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - 114px);
  color: var(--white);
  background: var(--navy-900);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .09;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, #000 0, transparent 65%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  left: -280px;
  bottom: -320px;
  border: 1px solid rgba(101,242,67,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(101,242,67,.04), 0 0 0 160px rgba(101,242,67,.025);
}
.hero__glow { position: absolute; z-index: -1; top: -240px; left: 28%; width: 520px; height: 520px; border-radius: 50%; background: rgba(101,242,67,.09); filter: blur(100px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr); gap: clamp(36px, 6vw, 82px); align-items: center; padding-top: 74px; padding-bottom: 88px; }
.hero__content { position: relative; z-index: 2; }
.hero h1 { max-width: 790px; color: var(--white); }
.hero h1 em { display: block; color: var(--lime); font-style: normal; }
.hero__lede { max-width: 650px; margin-bottom: 30px; color: #c5d3d9; font-size: 1.1rem; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero__micro { display: flex; max-width: 600px; align-items: flex-start; gap: 9px; margin: 0; color: #8fa7b1; font-size: .78rem; }
.hero__micro svg { flex: 0 0 auto; margin-top: 3px; color: var(--lime); }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero__chips span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; color: #dce9ed; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.04); font-size: .75rem; font-weight: 600; }
.hero__chips svg { color: var(--lime); }
.hero__visual { position: relative; padding: 18px 0 36px 20px; }
.hero__image-wrap { position: relative; aspect-ratio: .84; overflow: visible; }
.hero__image-wrap::before { content: ""; position: absolute; z-index: -1; inset: -18px 36px 18px -18px; border: 1px solid rgba(101,242,67,.32); border-radius: 28px; }
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; border-radius: 28px; box-shadow: var(--shadow-deep); }
.hero__image-shade { position: absolute; inset: 0; border-radius: 28px; background: linear-gradient(180deg, transparent 52%, rgba(5,19,31,.55) 100%); pointer-events: none; }
.hero__availability { position: absolute; top: 24px; left: -34px; display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: var(--navy-950); background: var(--white); border-radius: 14px; box-shadow: var(--shadow-md); }
.hero__availability small, .hero__location-card small { display: block; color: var(--muted); font-size: .65rem; line-height: 1.3; text-transform: uppercase; letter-spacing: .1em; }
.hero__availability strong { display: block; font-family: "Space Grotesk", Arial, sans-serif; font-size: .9rem; }
.pulse { position: relative; width: 11px; height: 11px; flex: 0 0 auto; background: var(--lime-dark); border-radius: 50%; box-shadow: 0 0 0 6px var(--lime-soft); }
.hero__location-card { position: absolute; right: -24px; bottom: 18px; width: 210px; display: flex; align-items: flex-start; gap: 11px; padding: 16px; color: var(--white); background: rgba(7,26,43,.92); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.hero__location-card > svg { flex: 0 0 auto; color: var(--lime); }
.hero__location-card strong, .hero__location-card span { display: block; }
.hero__location-card strong { font-family: "Space Grotesk", Arial, sans-serif; font-size: .85rem; }
.hero__location-card span { color: #9cb0b8; font-size: .73rem; }
.hero__route { position: absolute; right: -70px; bottom: 1px; width: 245px; display: flex; align-items: center; gap: 9px; color: #78909b; font-family: "Space Grotesk", Arial, sans-serif; font-size: .61rem; letter-spacing: .16em; }
.hero__route i { height: 1px; flex: 1; background: linear-gradient(90deg, var(--lime), transparent); }

.trust-strip { position: relative; z-index: 4; margin-top: -32px; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-md); }
.trust-strip article { min-height: 96px; display: flex; align-items: center; gap: 14px; padding: 20px 23px; border-right: 1px solid var(--line); }
.trust-strip article:last-child { border-right: 0; }
.trust-strip__icon { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; color: var(--navy-950); background: var(--lime-soft); border-radius: 12px; }
.trust-strip article strong, .trust-strip article small { display: block; }
.trust-strip article strong { color: var(--navy-950); font-family: "Space Grotesk", Arial, sans-serif; font-size: .86rem; }
.trust-strip article small { color: var(--muted); font-size: .72rem; }

.about { padding-top: 140px; background: var(--cream); }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(56px, 9vw, 120px); align-items: center; }
.about__visual { position: relative; padding: 0 40px 52px 0; }
.about__image { position: relative; overflow: hidden; aspect-ratio: .9; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,19,31,.28)); }
.about__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about__note { position: absolute; right: 0; bottom: 0; width: min(330px, 78%); display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 22px; color: var(--white); background: var(--navy-900); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.about__note span { color: var(--lime); font-family: "Space Grotesk", Arial, sans-serif; font-size: .7rem; letter-spacing: .12em; }
.about__note p { margin: 0; color: #c6d4d9; font-size: .81rem; line-height: 1.5; }
.about__note strong { display: block; color: var(--white); }
.about__content > p { font-size: 1rem; line-height: 1.85; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 42px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--line); }
.about__stats div { min-height: 108px; display: flex; flex-direction: column; justify-content: center; padding: 20px; background: var(--white); }
.about__stats strong { display: block; color: var(--navy-950); font-family: "Space Grotesk", Arial, sans-serif; font-size: 1.75rem; line-height: 1; }
.about__stats span { margin-top: 8px; color: var(--muted); font-size: .72rem; line-height: 1.35; }

.services { position: relative; overflow: hidden; background: var(--mist); }
.services::before { content: "08"; position: absolute; top: 50px; right: -20px; color: rgba(7,26,43,.035); font-family: "Space Grotesk", Arial, sans-serif; font-size: 18rem; font-weight: 700; line-height: 1; }
.section-heading { position: relative; z-index: 1; margin-bottom: 54px; }
.section-heading--split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.section-heading--split h2 { margin-bottom: 0; }
.section-heading--split > p { max-width: 470px; margin-bottom: 6px; font-size: 1.03rem; }
.section-heading--center { max-width: 740px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p { max-width: 570px; margin: 0 auto; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 430px; display: flex; flex-direction: column; overflow: hidden; padding: 0; background: var(--white); border: 1px solid transparent; border-radius: var(--radius-md); box-shadow: 0 1px 0 rgba(7,26,43,.06); transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out); }
.service-card:hover { transform: translateY(-7px); border-color: rgba(47,159,38,.2); box-shadow: var(--shadow-sm); }
.service-card--featured { background: var(--navy-900); }
.service-card__image { aspect-ratio: 16 / 9; overflow: hidden; background: #d9e1df; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 260ms var(--ease-out); }
.service-card:hover .service-card__image img { transform: scale(1.035); }
.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin: 24px 28px 20px; }
.service-card__icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--navy-950); background: var(--lime-soft); border-radius: 14px; }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__number { color: #9aabad; font-family: "Space Grotesk", Arial, sans-serif; font-size: .67rem; letter-spacing: .1em; }
.service-card h3 { margin: 0 28px 13px; }
.service-card p { margin: 0 28px 24px; font-size: .87rem; line-height: 1.65; }
.service-card a { display: inline-flex; align-items: center; gap: 8px; margin: auto 28px 28px; color: var(--navy-950); font-family: "Space Grotesk", Arial, sans-serif; font-size: .75rem; font-weight: 700; }
.service-card a svg { width: 15px; transition: transform 180ms var(--ease-out); }
.service-card a:hover svg { transform: translateX(4px); }
.service-card--featured h3, .service-card--featured a { color: var(--white); }
.service-card--featured p { color: #9fb1b9; }
.service-card--featured .service-card__number { color: var(--lime); }

.service-details { color: var(--white); background: var(--navy-900); }
.service-details__intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.service-details__intro h2 { max-width: 700px; margin-bottom: 0; color: var(--white); }
.service-details__intro > p { margin: 0 0 8px; color: #9fb2bb; }
.detail-list { border-top: 1px solid rgba(255,255,255,.12); }
.detail-row { display: grid; grid-template-columns: 1.15fr 1.05fr 1fr .75fr; gap: 30px; align-items: start; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.detail-row__title { display: grid; grid-template-columns: 24px 42px 1fr; gap: 10px; align-items: center; }
.detail-row__title > span { color: var(--lime); font-family: "Space Grotesk", Arial, sans-serif; font-size: .65rem; letter-spacing: .1em; }
.detail-row__title > svg { width: 28px; height: 28px; color: var(--lime); }
.detail-row h3 { margin: 0; color: var(--white); font-size: 1.07rem; letter-spacing: -.02em; }
.detail-row > p, .detail-row ul { margin: 0; color: #a9bbc2; font-size: .8rem; line-height: 1.7; }
.detail-row ul { padding-left: 17px; }
.detail-row li::marker { color: var(--lime); }
.detail-row__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.detail-row__actions a { color: var(--white); font-size: .72rem; font-weight: 700; text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 4px; }
.detail-row__actions a:last-child { color: #8199a3; text-decoration-color: transparent; }

.why-us { background: var(--cream); }
.why-us__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px, 8vw, 105px); align-items: center; }
.why-us__content { position: sticky; top: calc(var(--header-height) + 40px); }
.why-us__content h2 { font-size: clamp(2.4rem, 4vw, 4.2rem); }
.why-us__content p { max-width: 450px; margin-bottom: 32px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit-grid article { min-height: 250px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background-color 180ms var(--ease-out); }
.benefit-grid article:hover { background: var(--white); }
.benefit-grid article > span { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 43px; color: var(--navy-950); background: var(--lime-soft); border-radius: 50%; }
.benefit-grid h3 { margin-bottom: 10px; font-size: 1rem; }
.benefit-grid p { margin-bottom: 0; font-size: .8rem; line-height: 1.65; }

.process { overflow: hidden; background: var(--white); }
.process__steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin: 0; padding: 0; list-style: none; }
.process__steps::before { content: ""; position: absolute; top: 61px; left: 12%; right: 12%; height: 1px; background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px); }
.process__steps li { position: relative; z-index: 1; text-align: center; }
.process__steps li > span { display: block; margin-bottom: 14px; color: var(--lime-dark); font-family: "Space Grotesk", Arial, sans-serif; font-size: .67rem; letter-spacing: .1em; }
.process__icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 26px; color: var(--navy-950); background: var(--cream); border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 10px var(--white); }
.process__icon svg { width: 28px; height: 28px; }
.process__steps h3 { margin-bottom: 10px; font-size: 1rem; }
.process__steps p { max-width: 240px; margin: 0 auto; font-size: .8rem; }
.process__cta { margin-top: 50px; text-align: center; }

.area-hero { position: relative; height: 300px; overflow: hidden; background: radial-gradient(circle at 75% 30%, rgba(101,242,67,.2), transparent 24%), linear-gradient(140deg, #164136, #0a2b36 48%, var(--navy-900)); }
.area-hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 46px 46px; transform: perspective(500px) rotateX(58deg) scale(1.6); transform-origin: 50% 100%; }
.area-hero div { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, var(--navy-900)); }
.service-area { padding-top: 0; color: var(--white); background: var(--navy-900); }
.service-area__header { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 50px; }
.service-area__header h2 { margin-bottom: 0; color: var(--white); }
.service-area__header p { margin: 0 0 8px; color: #a8bbc2; }
.service-area__header p strong { color: var(--white); }
.service-area__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(285px, .65fr); gap: 20px; }
.map-card { overflow: hidden; color: var(--ink); background: var(--white); border-radius: var(--radius-md); }
.map-card__top { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 24px; }
.map-card__top span, .map-card__top strong { display: block; }
.map-card__top span { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.map-card__top strong { font-family: "Space Grotesk", Arial, sans-serif; font-size: .9rem; }
.map-card__top a { display: flex; align-items: center; gap: 6px; color: var(--navy-950); font-size: .75rem; font-weight: 700; }
.map-card__top svg { width: 15px; }
.map-shell { position: relative; height: 470px; background: #e7ede7; }
.map-placeholder { position: absolute; z-index: 2; inset: 0; display: grid; place-content: center; justify-items: center; gap: 14px; padding: 20px; text-align: center; background: radial-gradient(circle at 50% 50%, rgba(101,242,67,.12), transparent 36%), linear-gradient(135deg, #e7ede7, #dbe5df); }
.map-placeholder__pin { width: 52px; height: 52px; display: grid; place-items: center; color: var(--navy-950); background: var(--lime); border-radius: 50% 50% 50% 7px; transform: rotate(-45deg); box-shadow: var(--shadow-sm); }
.map-placeholder__pin svg { transform: rotate(45deg); }
.map-placeholder p, .map-placeholder strong, .map-placeholder span { display: block; margin: 0; }
.map-placeholder p { color: var(--ink); }
.map-placeholder span { color: var(--muted); font-size: .75rem; }
.map-card__note { display: flex; align-items: center; gap: 9px; margin: 0; padding: 14px 24px; color: var(--muted); font-size: .7rem; }
.map-card__note span { width: 12px; height: 12px; flex: 0 0 auto; background: rgba(101,242,67,.22); border: 2px solid var(--lime-dark); border-radius: 50%; }
.area-list { display: flex; flex-direction: column; padding: 28px; background: var(--navy-800); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md); }
.area-list__label { margin-bottom: 17px; color: var(--lime); font-family: "Space Grotesk", Arial, sans-serif; font-size: .69rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.area-list ul { display: grid; gap: 2px; margin: 0 0 24px; padding: 0; list-style: none; }
.area-list li { display: flex; align-items: center; gap: 11px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.area-list li > svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--lime); }
.area-list li span, .area-list li strong, .area-list li small { display: block; }
.area-list li strong { color: var(--white); font-family: "Space Grotesk", Arial, sans-serif; font-size: .79rem; }
.area-list li small { color: #819ba5; font-size: .65rem; }
.area-list .button { margin-top: auto; }

.faq { background: var(--mist); }
.faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(52px, 9vw, 125px); align-items: start; }
.faq__intro { position: sticky; top: calc(var(--header-height) + 42px); }
.faq__intro p { max-width: 390px; }
.faq__contact { display: flex; align-items: center; gap: 14px; margin-top: 34px; padding: 18px 20px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.faq__contact > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy-950); background: var(--lime-soft); border-radius: 50%; }
.faq__contact small, .faq__contact a { display: block; }
.faq__contact small { color: var(--muted); font-size: .7rem; }
.faq__contact a { color: var(--navy-950); font-family: "Space Grotesk", Arial, sans-serif; font-weight: 700; }
.faq-list { border-top: 1px solid #cdd8da; }
.faq-item { border-bottom: 1px solid #cdd8da; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; text-align: left; border: 0; background: transparent; font-family: "Space Grotesk", Arial, sans-serif; font-size: 1rem; font-weight: 600; line-height: 1.4; cursor: pointer; }
.faq-item button svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--lime-dark); transition: transform 200ms var(--ease-out); }
.faq-item button[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer { padding: 0 42px 24px 0; }
.faq-answer[hidden] { display: none; }
.faq-answer p { margin: 0; font-size: .87rem; line-height: 1.75; }
.faq-answer a { color: var(--navy-950); font-weight: 700; text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 3px; }

.contact { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .05; background-image: radial-gradient(var(--white) 1px, transparent 1px); background-size: 24px 24px; }
.contact__grid { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 105px); align-items: start; }
.contact__info { padding-top: 24px; }
.contact__info h2 { color: var(--white); }
.contact__info > p { color: #a7bac2; }
.contact__info address { display: grid; gap: 0; margin-top: 38px; }
.contact__info address > a, .contact__info address > div { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact__info address > * > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: var(--navy-950); background: var(--lime); border-radius: 12px; }
.contact__info address small, .contact__info address strong, .contact__info address p { display: block; }
.contact__info address small { color: #77909b; font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; }
.contact__info address strong { color: var(--white); font-family: "Space Grotesk", Arial, sans-serif; }
.contact__info address p { margin: 1px 0 0; color: #98adb6; font-size: .8rem; }
.contact__availability { display: flex; align-items: center; gap: 15px; margin-top: 28px; padding: 16px 19px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); }
.contact__availability p, .contact__availability strong, .contact__availability small { display: block; margin: 0; }
.contact__availability strong { color: var(--white); font-family: "Space Grotesk", Arial, sans-serif; font-size: .8rem; }
.contact__availability small { color: #7e98a2; font-size: .68rem; }
.form-card { color: var(--ink); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-deep); }
.form-card__header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 30px 34px; border-bottom: 1px solid var(--line); }
.form-card__header span { display: block; color: var(--lime-dark); font-family: "Space Grotesk", Arial, sans-serif; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.form-card__header h3 { margin: 5px 0 0; font-size: 1.35rem; }
.form-card__header .form-card__step { padding: 7px 10px; color: var(--navy-950); background: var(--lime-soft); border-radius: 999px; white-space: nowrap; }
.form-card form { padding: 32px 34px 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label { margin-bottom: 7px; color: var(--ink); font-size: .76rem; font-weight: 700; }
.field label span { color: var(--error); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cbd7d9; border-radius: 10px; color: var(--ink); background: #fbfcfa; transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background-color 160ms var(--ease-out); }
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 126px; padding: 13px 14px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8c9aa0; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lime-dark); background: var(--white); box-shadow: 0 0 0 4px rgba(101,242,67,.16); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 3px rgba(180,35,24,.1); }
.field-error { min-height: 18px; margin-top: 4px; color: var(--error); font-size: .69rem; line-height: 1.35; }
.consent-field { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; margin-top: 18px; padding: 16px; background: var(--mist); border-radius: 10px; }
.consent-field input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--lime-dark); }
.consent-field label { color: #4f616b; font-size: .7rem; line-height: 1.6; }
.form-card__footer { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; margin-top: 16px; }
.form-card__footer p { display: flex; align-items: flex-start; gap: 7px; margin: 0; color: #75868d; font-size: .62rem; line-height: 1.45; }
.form-card__footer p svg { flex: 0 0 auto; margin-top: 1px; color: var(--lime-dark); }
.form-status { display: none; margin-top: 16px; padding: 13px 15px; border-radius: 9px; font-size: .76rem; font-weight: 600; }
.form-status.is-visible { display: block; }
.form-status.is-error { color: #7a271a; background: #fef3f2; border: 1px solid #fecdca; }
.form-status.is-info { color: #123b2b; background: #ecfdf3; border: 1px solid #abefc6; }

.final-cta { padding: 44px 0; color: var(--white); background: linear-gradient(115deg, #154d2b, #0a2b33 68%, #0b2336); }
.final-cta__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.final-cta__mark { width: 70px; height: 70px; display: grid; place-items: center; color: var(--navy-950); background: var(--lime); border-radius: 20px; transform: rotate(-4deg); }
.final-cta__mark svg { width: 34px; height: 34px; }
.final-cta span { color: var(--lime); font-family: "Space Grotesk", Arial, sans-serif; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.final-cta h2 { margin: 4px 0 4px; color: var(--white); font-size: clamp(1.65rem, 2.8vw, 2.7rem); }
.final-cta p { margin: 0; color: #abc0c4; font-size: .85rem; }
.final-cta__actions { display: flex; gap: 10px; }

.site-footer { color: #a5b7be; background: var(--navy-950); }
.footer__main { display: grid; grid-template-columns: 1.4fr .65fr .8fr .85fr; gap: 55px; padding-top: 74px; padding-bottom: 60px; }
.brand--footer { width: 220px; height: 56px; margin-bottom: 22px; }
.footer__brand p { max-width: 340px; color: #8097a0; font-size: .8rem; }
.site-footer h2 { margin-bottom: 18px; color: var(--white); font-family: "Space Grotesk", Arial, sans-serif; font-size: .75rem; letter-spacing: .11em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.site-footer li, .site-footer address { font-size: .78rem; }
.site-footer li a:hover, .site-footer address a:hover { color: var(--lime); }
.footer__contact address { display: grid; gap: 9px; }
.footer__contact address a { color: var(--white); font-family: "Space Grotesk", Arial, sans-serif; font-size: 1rem; font-weight: 700; }
.footer__contact address strong { width: fit-content; margin-top: 5px; padding: 5px 8px; color: var(--navy-950); background: var(--lime); border-radius: 6px; font-size: .68rem; }
.footer__disclaimer { padding-top: 24px; padding-bottom: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.footer__disclaimer p { margin: 0; color: #657e88; font-size: .62rem; line-height: 1.7; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom .container { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer__bottom p { margin: 0; color: #69818a; font-size: .68rem; }
.footer__bottom a { display: flex; align-items: center; gap: 7px; color: var(--white); font-size: .7rem; font-weight: 700; }
.footer__bottom a svg { width: 14px; transform: rotate(-90deg); }
.mobile-call { display: none; }

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out); }
  [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
  .pulse::after { content: ""; position: absolute; inset: -4px; border: 1px solid var(--lime-dark); border-radius: 50%; animation: pulse-ring 2s infinite; }
  @keyframes pulse-ring { 0% { opacity: .6; transform: scale(.8); } 70%,100% { opacity: 0; transform: scale(1.8); } }
}

@media (max-width: 1120px) {
  :root { --header-height: 72px; }
  .nav-links { gap: 15px; }
  .nav-links a { font-size: .77rem; }
  .brand { width: 205px; height: 54px; }
  .nav-call span { display: none; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr); }
  .service-card { padding: 0; }
  .detail-row { grid-template-columns: 1.1fr 1fr 1fr; }
  .detail-row__actions { grid-column: 2 / -1; flex-direction: row; }
  .final-cta__inner { grid-template-columns: auto 1fr; }
  .final-cta__actions { grid-column: 2; }
}

@media (max-width: 920px) {
  .section { padding: 88px 0; }
  .container { width: min(100% - 32px, 760px); }
  .topbar p span { display: none; }
  .nav-links, .nav-call { display: none; }
  .nav-toggle { width: 46px; height: 46px; display: grid; margin-left: auto; color: var(--white); border: 1px solid rgba(255,255,255,.2); border-radius: 10px; }
  .nav-toggle svg { width: 23px; height: 23px; }
  .mobile-menu { position: fixed; z-index: 210; top: 0; right: 0; width: min(400px, 90vw); height: 100dvh; display: flex; flex-direction: column; padding: 25px; color: var(--white); background: var(--navy-900); box-shadow: -30px 0 80px rgba(0,0,0,.28); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; color: #8ca2ab; font-family: "Space Grotesk", Arial, sans-serif; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; border-bottom: 1px solid rgba(255,255,255,.1); }
  .mobile-menu__close { width: 44px; height: 44px; display: grid; color: var(--white); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; }
  .mobile-menu__links { display: grid; margin: 18px 0 auto; }
  .mobile-menu__links a { padding: 14px 0; color: var(--white); font-family: "Space Grotesk", Arial, sans-serif; font-size: 1.2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .menu-backdrop { position: fixed; z-index: 205; inset: 0; display: block; background: rgba(5,19,31,.66); backdrop-filter: blur(4px); }
  .menu-backdrop[hidden] { display: none; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 60px; padding-top: 68px; }
  .hero__content { max-width: 720px; }
  .hero__visual { width: min(620px, 94%); margin-left: auto; }
  .hero__image-wrap { aspect-ratio: 1.22; }
  .hero__image-wrap img { object-position: center 36%; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip article:nth-child(2) { border-right: 0; }
  .trust-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about { padding-top: 118px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { width: min(590px, 100%); }
  .about__image { aspect-ratio: 1.12; }
  .section-heading--split, .service-details__intro, .service-area__header { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 420px; }
  .why-us__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .why-us__content, .faq__intro { position: static; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 50px 32px; }
  .process__steps::before { display: none; }
  .service-area__grid { grid-template-columns: 1fr; }
  .area-list ul { grid-template-columns: 1fr 1fr; gap: 0 18px; }
  .contact__info { max-width: 650px; }
  .footer__main { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer__contact { grid-column: 3; }
  .footer__brand { grid-row: span 2; }
}

@media (max-width: 680px) {
  :root { --header-height: 66px; }
  html { scroll-padding-top: 84px; }
  body { padding-bottom: calc(69px + env(safe-area-inset-bottom)); }
  .container { width: min(100% - 28px, 620px); }
  .section { padding: 74px 0; }
  .topbar { font-size: .7rem; }
  .topbar__inner { min-height: 34px; }
  .brand { width: 185px; height: 49px; padding: 6px 9px; }
  .nav { height: var(--header-height); }
  h1 { font-size: clamp(2.7rem, 13vw, 4.7rem); }
  h2 { font-size: clamp(2.2rem, 10.8vw, 3.45rem); }
  .hero__grid { padding-top: 52px; padding-bottom: 82px; }
  .hero__lede { font-size: 1rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__visual { width: 96%; margin: 0 0 0 auto; padding-left: 8px; }
  .hero__image-wrap { aspect-ratio: .92; }
  .hero__image-wrap img { object-position: 58% center; }
  .hero__availability { top: 18px; left: -8px; }
  .hero__location-card { right: -5px; bottom: 15px; }
  .hero__route { display: none; }
  .trust-strip { margin-top: -25px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip article { min-height: 78px; padding: 14px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip article:last-child { border-bottom: 0; }
  .about { padding-top: 104px; }
  .about__visual { padding: 0 20px 56px 0; }
  .about__image { aspect-ratio: .85; }
  .about__note { width: 88%; padding: 18px; }
  .about__stats { grid-template-columns: 1fr; }
  .about__stats div { min-height: 84px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 420px; }
  .services::before { font-size: 10rem; }
  .detail-row { grid-template-columns: 1fr; gap: 18px; }
  .detail-row__actions { grid-column: auto; }
  .detail-row ul { display: grid; gap: 5px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article { min-height: 215px; }
  .process__steps { grid-template-columns: 1fr; }
  .area-hero { height: 280px; }
  .map-card__top { align-items: flex-start; flex-direction: column; padding: 18px; }
  .map-shell { height: 380px; }
  .map-card__note { padding-inline: 18px; }
  .area-list { padding: 22px; }
  .area-list ul { grid-template-columns: 1fr; }
  .faq-item button { min-height: 76px; font-size: .92rem; }
  .form-card { border-radius: var(--radius-md); }
  .form-card__header, .form-card form { padding: 24px 20px; }
  .form-card__header { align-items: flex-start; }
  .form-card__step { display: none !important; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .field--full { grid-column: auto; }
  .form-card__footer { grid-template-columns: 1fr; }
  .form-card__footer .button { width: 100%; }
  .final-cta { padding: 54px 0; }
  .final-cta__inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta__mark { margin-inline: auto; }
  .final-cta__actions { grid-column: auto; flex-direction: column; width: 100%; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
  .footer__brand { grid-column: 1 / -1; grid-row: auto; }
  .footer__contact { grid-column: auto; }
  .footer__bottom .container { flex-direction: column; justify-content: center; padding: 18px 0; text-align: center; }
  .mobile-call { position: fixed; z-index: 150; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 12px; min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--navy-950); background: var(--lime); border: 1px solid rgba(5,19,31,.16); border-radius: 13px; box-shadow: 0 15px 35px rgba(5,19,31,.3); font-family: "Space Grotesk", Arial, sans-serif; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(18px); transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out); }
  .mobile-call.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-call svg { width: 19px; height: 19px; }
}

@media (max-width: 390px) {
  .container { width: min(100% - 22px, 360px); }
  .brand { width: 170px; }
  .nav-toggle { width: 42px; height: 42px; }
  .hero__location-card { width: 190px; }
  .about__stats span { font-size: .68rem; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__contact { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .topbar, .site-header, .mobile-call, .hero__actions, .final-cta { display: none !important; }
  body { color: #000; background: #fff; padding: 0; }
  .section { padding: 32px 0; }
}
