/* =============================================================
   HydraBlue Pool Care — styles.css
   Palette: aqua / blue / white / deep navy with subtle gradients
   ============================================================= */

:root {
  --navy: #072033;
  --navy-2: #0a2540;
  --blue: #0b6fd6;
  --blue-dark: #0857a8;
  --aqua: #2ec5d3;
  --aqua-light: #38d6e6;
  --ink: #0f2740;
  --muted: #5b7185;
  --line: #e2ecf3;
  --bg: #ffffff;
  --bg-tint: #f2f8fc;
  --bg-tint-2: #eaf5fb;
  --white: #ffffff;

  --grad-brand: linear-gradient(135deg, var(--aqua-light) 0%, var(--blue) 60%, var(--blue-dark) 100%);
  --grad-dark: linear-gradient(160deg, var(--navy-2) 0%, var(--navy) 100%);
  --grad-text: linear-gradient(100deg, #7fe9f2 0%, #38d6e6 40%, #eaf7ff 100%);

  --shadow-sm: 0 2px 8px rgba(10, 37, 64, .06);
  --shadow: 0 12px 30px rgba(10, 37, 64, .10);
  --shadow-lg: 0 26px 60px rgba(10, 37, 64, .18);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1200px;
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; color: var(--navy-2); font-weight: 800; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container--narrow { max-width: 820px; }
.section { padding: 96px 0; }
.section--tint { background: var(--bg-tint); }
.text-gradient { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .96rem;
  padding: 13px 24px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap; line-height: 1;
}
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: 0 10px 24px rgba(11, 111, 214, .35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(11, 111, 214, .45); }
.btn--outline { background: #fff; color: var(--blue); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .22); transform: translateY(-3px); }
.btn--ghost-light { background: rgba(255,255,255,.14); color:#fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: rgba(255,255,255,.24); transform: translateY(-3px); }
.btn--white { background: #fff; color: var(--blue); box-shadow: var(--shadow); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue);
  background: var(--bg-tint-2); padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.section-head__sub { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.section-head--left { text-align: left; margin-inline: 0; }
.section-head--light h2, .section-head--light .section-head__sub { color: #fff; }
.section-head--light .kicker { background: rgba(255, 255, 255, .12); color: #9fe6f0; }

/* ---------- Top announcement bar ---------- */
.topbar { background: var(--grad-dark); color: #cfe6f5; font-size: .86rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 44px; gap: 16px; }
.topbar__item { letter-spacing: .01em; }
.topbar__item strong { color: var(--aqua-light); font-weight: 700; }
.topbar__contact { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.topbar__label { color: #9fbccf; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; font-size: .72rem; }
.topbar__phone { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.02rem; letter-spacing: .01em; padding: 3px 12px; border-radius: 100px; background: rgba(56,214,230,.12); border: 1px solid rgba(56,214,230,.3); transition: .25s; }
.topbar__phone:hover { background: rgba(56,214,230,.22); color: var(--aqua-light); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .88); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s, background .3s; }
.nav.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(255, 255, 255, .96); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { display: grid; place-items: center; }
.brand__text { font-family: var(--font-head); font-weight: 500; font-size: 1.32rem; color: var(--navy-2); line-height: 1; position: relative; }
.brand__text strong { color: var(--blue); font-weight: 800; }
.brand__text small { display: block; font-size: .56rem; letter-spacing: .34em; color: var(--muted); font-weight: 600; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links > a:not(.btn) { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--navy-2); position: relative; }
.nav__links > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad-brand); transition: width .28s var(--ease); border-radius: 2px; }
.nav__links > a:not(.btn):hover::after { width: 100%; }
.nav__cta { padding: 10px 20px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--navy-2); border-radius: 3px; transition: .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s var(--ease), transform 7s ease; transform: scale(1.06); }
.hero__slide.is-active { opacity: 1; transform: scale(1.14); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7, 32, 51, .9) 0%, rgba(8, 45, 90, .72) 45%, rgba(11, 111, 214, .35) 100%); }
.hero__inner { position: relative; z-index: 2; padding: 90px 22px; }
.hero__content { max-width: 720px; }
.hero__eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; letter-spacing: .06em; font-size: .82rem; color: #bfeaf5; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); padding: 8px 16px; border-radius: 100px; margin-bottom: 22px; }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.6rem); color: #fff; margin-bottom: 20px; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.24rem); color: #dcefff; max-width: 600px; margin-bottom: 26px; }

/* Prominent transparent price block */
.hero__price { display: flex; align-items: center; gap: 20px; max-width: 620px; margin-bottom: 30px; padding: 18px 22px; border-radius: var(--radius-lg); background: linear-gradient(120deg, rgba(255,255,255,.14), rgba(255,255,255,.05)); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); box-shadow: 0 14px 34px rgba(7,32,51,.35); }
.hero__price-main { flex-shrink: 0; display: flex; flex-direction: column; padding-right: 20px; border-right: 1px solid rgba(255,255,255,.2); }
.hero__price-from { font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #9fe6f0; }
.hero__price-amt { display: flex; align-items: baseline; gap: 4px; }
.hero__price-amt strong { font-family: var(--font-head); font-size: 2.7rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.02em; }
.hero__price-amt span { color: #cfe6f5; font-weight: 600; font-size: 1rem; }
.hero__price-note { font-size: .84rem; color: #d3e7f5; line-height: 1.5; margin: 0; }
.hero__price-note strong { color: #fff; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero__badges li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .95rem; color: #eaf6ff; }
.hero__badges .dot, .map__legend .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--aqua-light); box-shadow: 0 0 0 4px rgba(56, 214, 230, .25); }
.hero__dots { position: absolute; bottom: 96px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; background: none; border: none; }
.hero__dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .4); transition: .3s; }
.hero__dots span.is-active { background: #fff; width: 26px; border-radius: 5px; }
.hero__wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 2; line-height: 0; }
.hero__wave svg { width: 100%; height: 90px; }

/* ---------- Trust strip ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; padding: 30px 22px; }
.trust__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 14px 12px; border-radius: var(--radius); transition: background .25s; }
.trust__item:hover { background: var(--bg-tint); }
.trust__ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-tint-2); color: var(--blue); }
.trust__ico svg { width: 24px; height: 24px; stroke: currentColor; }
.trust__item strong { display: block; font-family: var(--font-head); font-size: .92rem; color: var(--navy-2); line-height: 1.2; }
.trust__item span { display: block; font-size: .76rem; color: var(--muted); margin-top: 2px; line-height: 1.35; }

/* ---------- Showcase carousel ---------- */
.showcase { padding: 84px 0; }
.carousel { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.carousel__track { display: flex; transition: transform .8s var(--ease); }
.carousel__slide { position: relative; min-width: 100%; height: clamp(320px, 52vw, 560px); background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.carousel__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 32, 51, .82) 0%, rgba(7, 32, 51, .1) 55%, transparent 100%); }
.carousel__slide figcaption { position: relative; z-index: 2; padding: 40px; color: #fff; max-width: 560px; }
.carousel__slide .tag { display: inline-block; background: var(--grad-brand); font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 12px; }
.carousel__slide h3 { color: #fff; font-size: clamp(1.4rem, 3vw, 2.1rem); }
.carousel__slide p { color: #d7ecfa; margin-top: 6px; }
.carousel__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: none; background: rgba(255, 255, 255, .92); color: var(--navy-2); font-size: 1.8rem; line-height: 1; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow); transition: .25s; z-index: 3; }
.carousel__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.carousel__arrow--prev { left: 18px; } .carousel__arrow--next { right: 18px; }
.carousel__dots { position: absolute; bottom: 20px; right: 26px; display: flex; gap: 8px; z-index: 3; }
.carousel__dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255, 255, 255, .5); cursor: pointer; transition: .3s; padding: 0; }
.carousel__dots button.is-active { background: #fff; width: 28px; border-radius: 5px; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.svc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__ico { width: 54px; height: 54px; border-radius: 14px; background: var(--bg-tint-2); display: grid; place-items: center; margin-bottom: 18px; transition: .35s; }
.svc-card__ico svg { width: 28px; height: 28px; stroke: var(--blue); }
.svc-card:hover .svc-card__ico { background: var(--grad-brand); }
.svc-card:hover .svc-card__ico svg { stroke: #fff; }
.svc-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: .94rem; }
.services__note { text-align: center; margin-top: 34px; color: var(--muted); background: var(--bg-tint); border: 1px dashed var(--line); border-radius: var(--radius); padding: 18px 24px; max-width: 860px; margin-inline: auto; }

/* ---------- Pricing (single transparent plan) ---------- */
.pricing { display: grid; grid-template-columns: 1fr 1.15fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.pricing__left { background: var(--grad-dark); color: #fff; padding: 46px 42px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.pricing__left::before { content: ""; position: absolute; top: -80px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(46,197,211,.28), transparent 70%); }
.pricing__badge { position: relative; z-index: 1; align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: #9fe6f0; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 7px 14px; border-radius: 100px; margin-bottom: 22px; }
.pricing__price { position: relative; z-index: 1; display: flex; flex-direction: column; margin-bottom: 18px; }
.pricing__from { font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #9fbccf; }
.pricing__amt { display: flex; align-items: baseline; gap: 6px; }
.pricing__amt strong { font-family: var(--font-head); font-size: clamp(3.4rem, 6vw, 4.6rem); font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.03em; }
.pricing__amt span { color: #cfe6f5; font-weight: 600; font-size: 1.15rem; }
.pricing__desc { position: relative; z-index: 1; color: #cfe1ef; font-size: 1rem; margin-bottom: 26px; max-width: 340px; }
.pricing__left .btn { position: relative; z-index: 1; }
.pricing__reassure { position: relative; z-index: 1; margin-top: 16px; font-size: .82rem; color: #9fe6f0; font-weight: 600; }
.pricing__right { padding: 46px 42px; display: flex; flex-direction: column; justify-content: center; }
.pricing__right h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 22px; font-family: var(--font-head); font-size: .92rem; }
.pricing__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.pricing__list li { position: relative; padding-left: 30px; font-size: .96rem; color: #33475b; font-weight: 500; }
.pricing__list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"), var(--grad-brand); background-repeat: no-repeat; background-position: center; background-size: 12px 12px, cover; box-shadow: 0 3px 8px rgba(11,111,214,.3); }
.pricing-note { display: flex; gap: 16px; align-items: flex-start; max-width: 900px; margin: 28px auto 0; background: var(--bg-tint); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 26px; }
.pricing-note__ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--blue); }
.pricing-note__ico svg { width: 22px; height: 22px; stroke: currentColor; }
.pricing-note p { color: #46586a; font-size: .95rem; margin: 0; }
.pricing-note strong { color: var(--navy-2); }

/* Add-ons */
.addons { margin-top: 66px; }
.addons__title { text-align: center; font-size: 1.5rem; margin-bottom: 28px; }
.addons__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.addon { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; transition: .28s; }
.addon:hover { border-color: var(--aqua); box-shadow: var(--shadow); transform: translateY(-3px); }
.addon__ico { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-tint-2); display: grid; place-items: center; flex-shrink: 0; color: var(--blue); }
.addon__ico svg { width: 22px; height: 22px; stroke: currentColor; }
.addon:hover .addon__ico { background: var(--grad-brand); color: #fff; }
.addon strong { font-family: var(--font-head); font-size: .98rem; color: var(--navy-2); }

/* ---------- Services (image tiles) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-tile { position: relative; display: block; min-height: 310px; border-radius: var(--radius-lg); overflow: hidden; background-size: cover; background-position: center; box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s; }
.svc-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-tile__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,32,51,.94) 0%, rgba(7,32,51,.5) 46%, rgba(7,32,51,.05) 100%); transition: background .35s; }
.svc-tile:hover .svc-tile__overlay { background: linear-gradient(to top, rgba(7,32,51,.96) 0%, rgba(8,45,90,.62) 58%, rgba(11,111,214,.18) 100%); }
.svc-tile__body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 24px; color: #fff; }
.svc-tile__body h3 { color: #fff; font-size: 1.28rem; margin-bottom: 6px; }
.svc-tile__body p { color: #dbeafe; font-size: .92rem; margin-bottom: 12px; max-width: 92%; }
.svc-tile__link { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--aqua-light); display: inline-flex; align-items: center; gap: 6px; transition: gap .25s; }
.svc-tile:hover .svc-tile__link { gap: 12px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Areas map ---------- */
.areas__wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.map { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); background: #eaf6fb; }
.map__leaflet { width: 100%; height: clamp(360px, 46vw, 500px); z-index: 1; background: #eaf6fb; }
.map__leaflet .leaflet-container { font-family: var(--font-body); }
.map__leaflet .leaflet-control-attribution { font-size: 10px; background: rgba(255,255,255,.75); }
.map__leaflet .leaflet-bar a { color: var(--navy-2); }
.map__leaflet .leaflet-popup-content-wrapper { border-radius: 12px; box-shadow: var(--shadow); }
.map__leaflet .leaflet-popup-content { font-family: var(--font-body); color: var(--ink); margin: 12px 16px; }
.map__leaflet .leaflet-popup-content strong { font-family: var(--font-head); color: var(--navy-2); }
/* Branded map pins */
.map-pin { background: transparent; border: none; }
.map-pin span { display: block; width: 16px; height: 16px; border-radius: 50%; background: var(--blue); border: 3px solid #fff; box-shadow: 0 2px 6px rgba(10,37,64,.45); }
.map-pin span::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(11,111,214,.4); animation: pinPulse 2.2s ease-out infinite; }
@keyframes pinPulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.4); opacity: 0; } }
/* Premium city labels (permanent tooltips) */
.leaflet-tooltip.map-label { background: var(--navy-2); color: #fff; border: none; box-shadow: 0 4px 12px rgba(7,32,51,.35); border-radius: 100px; padding: 3px 11px; font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .01em; }
.leaflet-tooltip.map-label::before { border-top-color: var(--navy-2); }
.map__legend { position: absolute; bottom: 14px; left: 16px; z-index: 500; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.92); padding: 8px 14px; border-radius: 100px; font-size: .82rem; font-weight: 600; color: var(--navy-2); box-shadow: var(--shadow-sm); pointer-events: none; }
.areas__list h3 { font-size: 1.5rem; margin-bottom: 20px; }
.areas__list ul { display: grid; gap: 14px; margin-bottom: 26px; }
.areas__list li { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px; transition: .25s; }
.areas__list li:hover { border-color: var(--aqua); box-shadow: var(--shadow-sm); }
.areas__list li span { font-size: 1.2rem; }
.areas__list strong { display: block; color: var(--navy-2); font-family: var(--font-head); }
.areas__list small { color: var(--muted); }

/* ---------- Why (dark) ---------- */
.section--dark { background: var(--grad-dark); color: #fff; position: relative; overflow: hidden; }
.section--dark::before { content: ""; position: absolute; top: -120px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(46, 197, 211, .25), transparent 70%); }
.why__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 24px 20px; transition: .3s; }
.why-card:hover { background: rgba(255, 255, 255, .1); transform: translateY(-6px); border-color: rgba(56, 214, 230, .5); }
.why-card__ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(56, 214, 230, .12); display: grid; place-items: center; margin-bottom: 16px; color: var(--aqua-light); }
.why-card__ico svg { width: 24px; height: 24px; stroke: currentColor; }
.why-card:hover .why-card__ico { background: var(--grad-brand); color: #fff; }
.why-card h3 { color: #fff; font-size: 1.02rem; margin-bottom: 6px; }
.why-card p { color: #b9d3e6; font-size: .88rem; }

/* Report callout */
.report-callout { margin-top: 56px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius-xl); padding: 44px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.report-callout h3 { color: #fff; font-size: 1.7rem; margin: 10px 0 12px; }
.report-callout p { color: #c7ddec; }
.report-callout__list { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; }
.report-callout__list li { color: #9fe6f0; font-weight: 600; font-size: .92rem; }
.report-callout__phone { display: grid; place-items: center; }
.phone { width: 260px; background: #0d2b45; border: 8px solid #071a2b; border-radius: 34px; padding: 18px 14px 22px; box-shadow: var(--shadow-lg); position: relative; }
.phone__notch { width: 90px; height: 18px; background: #071a2b; border-radius: 0 0 14px 14px; margin: -18px auto 16px; }
.phone__msg { border-radius: 16px; padding: 12px 14px; font-size: .82rem; margin-bottom: 10px; }
.phone__msg--in { background: #12385a; color: #eaf6ff; border-top-left-radius: 4px; }
.phone__msg--in strong { display: block; color: var(--aqua-light); font-size: .78rem; margin-bottom: 8px; }
.phone__msg--in img { border-radius: 10px; margin-bottom: 8px; height: 100px; width: 100%; object-fit: cover; }
.phone__msg--out { background: var(--grad-brand); color: #fff; border-top-right-radius: 4px; margin-left: 40px; }
.phone__time { display: block; font-size: .68rem; color: #8fb2cc; margin-top: 6px; }

/* ---------- Results / before-after ---------- */
.ba { position: relative; max-width: 900px; margin: 0 auto; height: clamp(320px, 50vw, 500px); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; }
.ba__img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba__img--before { width: 50%; overflow: hidden; border-right: 3px solid #fff; filter: hue-rotate(58deg) saturate(2) brightness(.72) contrast(.9) blur(1px); }
.ba__img--before::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(44, 74, 18, .62), rgba(78, 104, 26, .5)); mix-blend-mode: multiply; }
.ba__tag { position: absolute; top: 16px; z-index: 4; font-family: var(--font-head); font-weight: 700; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; color: #fff; }
.ba__tag--before { left: 16px; background: rgba(60, 100, 40, .9); }
.ba__tag--after { right: 16px; background: var(--grad-brand); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); z-index: 5; pointer-events: none; box-shadow: 0 0 14px rgba(0,0,0,.3); }
.ba__handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; background: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: var(--blue); box-shadow: var(--shadow); letter-spacing: -2px; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 6; margin: 0; }
.results__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.result-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; text-align: center; transition: .28s; }
.result-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--aqua); }
.result-card strong { display: block; font-family: var(--font-head); color: var(--navy-2); margin-bottom: 4px; }
.result-card span { color: var(--muted); font-size: .88rem; }

/* ---------- How it works ---------- */
.how__steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.how__step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 26px; text-align: center; position: relative; transition: .3s; }
.how__step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.how__num { width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; display: grid; place-items: center; box-shadow: 0 10px 22px rgba(11, 111, 214, .3); }
.how__step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.how__step p { color: var(--muted); font-size: .92rem; }

/* ---------- Reviews ---------- */
.reviews__rating { margin-top: 12px; color: var(--muted); }
.reviews__rating .stars { color: #f5a623; letter-spacing: 2px; font-size: 1.1rem; }
.reviews__rating strong { color: var(--navy-2); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: .3s; }
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review__stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 12px; }
.review__text { color: #33475b; font-size: .98rem; margin-bottom: 18px; }
.review__who { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.review__who strong { display: block; color: var(--navy-2); font-family: var(--font-head); font-size: .96rem; }
.review__who small { color: var(--muted); }
.reviews__note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 24px; font-style: italic; }

/* ---------- CTA ---------- */
.cta { background: var(--grad-brand); position: relative; overflow: hidden; }
.cta::before, .cta::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .12); }
.cta::before { width: 340px; height: 340px; top: -140px; left: -80px; }
.cta::after { width: 260px; height: 260px; bottom: -130px; right: -40px; }
.cta__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 70px 22px; flex-wrap: wrap; }
.cta__text h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.cta__text p { color: #eaf7ff; margin-top: 10px; max-width: 520px; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.contact__form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow); }
.quote-form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--navy-2); }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: .96rem; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: #fbfdfe; color: var(--ink); transition: .22s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 111, 214, .12); background: #fff; }
.field textarea { resize: vertical; }
.field input.invalid, .field select.invalid { border-color: #e0546a; box-shadow: 0 0 0 4px rgba(224, 84, 106, .12); }
.quote-form__disclaim { font-size: .8rem; color: var(--muted); text-align: center; }
.quote-form__success { background: #e7f7ee; border: 1px solid #b6e6c9; color: #17794a; border-radius: 12px; padding: 14px 18px; font-weight: 600; text-align: center; }
.quote-form__error { background: #fdecec; border: 1px solid #f5c2c2; color: #b23636; border-radius: 12px; padding: 14px 18px; font-weight: 600; text-align: center; }
.quote-form__error a { color: #b23636; text-decoration: underline; }
.btn--call svg { flex-shrink: 0; }

.contact__card { background: var(--grad-dark); color: #fff; border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); position: sticky; top: 96px; }
.contact__card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 22px; }
.contact__list { display: grid; gap: 20px; margin-bottom: 26px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(255, 255, 255, .1); display: grid; place-items: center; flex-shrink: 0; color: var(--aqua-light); }
.contact__ico svg { width: 20px; height: 20px; stroke: currentColor; }
.contact__list small { display: block; color: #9fbdd4; font-size: .8rem; margin-bottom: 2px; }
.contact__list a, .contact__list span { color: #fff; font-weight: 600; font-size: 1rem; }
.contact__list a:hover { color: var(--aqua-light); }
.contact__promise { background: rgba(255, 255, 255, .07); border-left: 3px solid var(--aqua); border-radius: 10px; padding: 14px 16px; font-size: .9rem; color: #dcecf7; margin-bottom: 22px; }
.contact__promise strong { color: var(--aqua-light); }

/* ---------- FAQ ---------- */
.faq__list { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.is-open { box-shadow: var(--shadow); border-color: var(--aqua); }
.faq-item__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; color: var(--navy-2); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item__q span { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-tint-2); color: var(--blue); display: grid; place-items: center; font-size: 1.3rem; transition: .3s; }
.faq-item.is-open .faq-item__q span { background: var(--grad-brand); color: #fff; transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item__a p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #b9d0e2; padding-top: 66px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 46px; }
.brand--footer .brand__text { color: #fff; }
.brand--footer .brand__text small { color: #93b0c6; }
.footer__brand p { margin: 18px 0; font-size: .92rem; color: #9fbccf; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; color: #cfe2f0; font-weight: 700; transition: .25s; }
.footer__social a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { color: #9fbccf; font-size: .92rem; transition: .2s; }
.footer__col a:hover { color: var(--aqua-light); padding-left: 4px; }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .84rem; color: #93b0c6; }

/* ---------- Floating action button ---------- */
.fab { position: fixed; bottom: 20px; right: 20px; z-index: 90; background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 700; padding: 14px 22px; border-radius: 100px; box-shadow: 0 14px 30px rgba(11, 111, 214, .5); display: none; align-items: center; gap: 8px; }
.fab__pulse { position: absolute; inset: 0; border-radius: 100px; box-shadow: 0 0 0 0 rgba(46, 197, 211, .6); animation: fabPulse 2s infinite; }
@keyframes fabPulse { 0% { box-shadow: 0 0 0 0 rgba(46, 197, 211, .5); } 70% { box-shadow: 0 0 0 16px rgba(46, 197, 211, 0); } 100% { box-shadow: 0 0 0 0 rgba(46, 197, 211, 0); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .section { padding: 68px 0; }
  .nav__links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; background: #fff; padding: 18px 22px 26px; gap: 6px; box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .38s var(--ease); border-bottom: 1px solid var(--line); max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links > a:not(.btn) { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__cta { margin-top: 10px; }
  .nav__toggle { display: flex; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .pricing__left { padding: 36px 30px; }
  .pricing__right { padding: 36px 30px; }
  .hero__price { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__price-main { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 12px; width: 100%; }
  .areas__wrap { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .report-callout { grid-template-columns: 1fr; padding: 30px; }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .results__cards { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card { position: static; }
  .cta__inner { flex-direction: column; text-align: center; align-items: center; }
  .cta__text p { margin-inline: auto; }
  .fab { display: inline-flex; }
  .topbar__item:first-child { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__phone { font-size: 1.05rem; }
}

@media (max-width: 520px) {
  .container { padding-inline: 16px; }
  .addons__grid, .why__grid, .how__steps, .results__cards { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; gap: 4px; padding: 22px 16px; }
  .pricing__list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact__form-wrap, .contact__card { padding: 26px; }
  .carousel__slide figcaption { padding: 24px; }
  .carousel__arrow { width: 42px; height: 42px; font-size: 1.4rem; }
  .hero { min-height: 88vh; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

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