/* ============================================================
   Wildrose Furnace & Duct Cleaning — Clean Air Starts Here
   Futuristic light theme · brand green + navy
   ============================================================ */

:root {
  --green: #3cb52c;
  --green-bright: #46d62b;
  --green-deep: #2a9a1c;
  --green-glow: rgba(60, 181, 44, .28);
  --green-soft: #eefbea;
  --navy: #232d8c;
  --navy-deep: #131c5c;
  --navy-ink: #0d1440;
  --blue: #4a63e0;
  --blue-soft: #eef1fd;
  --bg: #ffffff;
  --bg-alt: #f5f7fc;
  --line: #e4e9f4;
  --ink: #101840;
  --slate: #4a5578;
  --slate-light: #8b93b5;
  --gold: #f59e0b;
  --radius: 18px;
  --shadow-sm: 0 1px 3px rgba(16, 24, 64, .06), 0 4px 14px rgba(16, 24, 64, .06);
  --shadow-md: 0 4px 10px rgba(16, 24, 64, .06), 0 16px 40px rgba(16, 24, 64, .12);
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: var(--font-body);
  color: var(--slate);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* futuristic grid overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(16, 24, 64, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 64, .035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 25%, transparent 100%);
}

::selection { background: var(--green); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

img, svg { display: block; }

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

.accent {
  background: linear-gradient(100deg, var(--green-deep), var(--green) 55%, #15a97c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #fff;
  box-shadow: 0 6px 20px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--green); color: var(--green-deep); }
.btn--light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .28);
}
.btn--light:hover { transform: translateY(-2px); }
.btn--large { padding: 16px 32px; font-size: 16px; }
.btn--small { padding: 9px 20px; font-size: 14px; }

/* ---------- Dual phone pill ---------- */
.callpair {
  display: inline-flex;
  align-items: center;
  padding: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  box-shadow: 0 6px 20px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.callpair__num {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s ease, transform .15s ease;
}
.callpair__num:hover { background: rgba(255, 255, 255, .16); }
.callpair__num svg { width: 18px; height: 18px; flex: none; }
.callpair__or {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  padding: 0 3px;
}
.callpair--stack {
  flex-direction: column;
  align-items: stretch;
  border-radius: 30px;
}
.callpair--stack .callpair__num { justify-content: center; }
.callpair--stack .callpair__or { align-self: center; padding: 2px 0; }
.callpair--light {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .28);
}
.callpair--light .callpair__num { color: var(--navy); }
.callpair--light .callpair__num svg { color: var(--green-deep); }
.callpair--light .callpair__num:hover { background: var(--green-soft); }
.callpair--light .callpair__or { color: var(--slate-light); }

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--navy-ink), var(--navy-deep));
  color: #b8c0e4;
  font-size: 13.5px;
}
.topbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 15px; height: 15px; color: #7d88c4; }
.topbar__phones {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.topbar__phone {
  color: #fff;
  font-weight: 600;
  transition: color .2s;
}
.topbar__phone svg { color: var(--green-bright); }
.topbar__phone:hover { color: var(--green-bright); }
.topbar__dot { color: #7d88c4; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(16, 24, 64, .08); }
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-icon {
  width: 44px;
  height: 44px;
  flex: none;
  filter: drop-shadow(0 2px 8px rgba(60, 181, 44, .30));
}
.nav__logo-icon svg { width: 100%; height: 100%; }
.nav__logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--navy);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav__logo-text em {
  font-style: normal;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
}
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links > a:not(.btn) {
  font-weight: 500;
  font-size: 15px;
  color: var(--slate);
  transition: color .2s;
}
.nav__links > a:not(.btn):hover { color: var(--green-deep); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 55% 55% at 88% 0%, var(--blue-soft) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 5% 100%, var(--green-soft) 0%, transparent 60%);
  overflow: hidden;
  position: relative;
}
.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 24px 96px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.hero__badge-stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.hero__title {
  font-size: clamp(40px, 5.6vw, 66px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy-ink);
  margin-bottom: 22px;
}
.hero__sub { font-size: 18px; max-width: 560px; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 17px; height: 17px; color: var(--green); }

/* Hero visual card */
.hero__visual { position: relative; }
.hero__card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .85);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  max-width: 400px;
  margin-left: auto;
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1.5px;
  background: linear-gradient(140deg, rgba(60, 181, 44, .55), transparent 35%, transparent 65%, rgba(74, 99, 224, .55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero__card-header { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.hero__g { width: 34px; height: 34px; flex: none; }
.hero__card-header strong { display: block; color: var(--ink); font-size: 15px; }
.hero__card-header span { font-size: 13px; color: var(--slate-light); }
.hero__card-rating { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.hero__card-score {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero__card-stars { color: var(--gold); font-size: 24px; letter-spacing: 3px; }
.hero__card-note { font-size: 13.5px; color: var(--slate-light); margin-bottom: 20px; }
.hero__card-list { list-style: none; display: grid; gap: 11px; border-top: 1px solid var(--line); padding-top: 20px; }
.hero__card-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--slate); }
.hero__card-list span { color: var(--green); font-weight: 700; }

/* airflow decoration */
.hero__airflow {
  position: absolute;
  inset: auto 0 -30px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1;
  pointer-events: none;
}
.hero__airflow span {
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--green) 40%, var(--blue) 70%, transparent);
  opacity: .4;
  animation: drift 4s ease-in-out infinite;
}
.hero__airflow span:nth-child(2) { animation-delay: .8s; width: 80%; }
.hero__airflow span:nth-child(3) { animation-delay: 1.6s; width: 60%; }
@keyframes drift {
  0%, 100% { transform: translateX(0); opacity: .2; }
  50% { transform: translateX(30px); opacity: .55; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--alt {
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, var(--blue-soft) 0%, transparent 70%),
    var(--bg-alt);
}
.section__inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section__head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.section__head h2, .section__inner h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; margin-bottom: 16px; }
.section__head p { font-size: 17px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green));
}
.eyebrow::after { background: linear-gradient(90deg, var(--green), transparent); }
.section__cta { text-align: center; margin-top: 52px; }
.section__cta-lead {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 18px;
}
.lede { font-size: 17px; margin-bottom: 28px; }

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(60, 181, 44, .5);
  box-shadow: var(--shadow-md), 0 0 28px rgba(60, 181, 44, .14);
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--green-soft), #fff);
  border: 1px solid rgba(60, 181, 44, .35);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 18.5px; margin-bottom: 10px; }
.card p { font-size: 14.5px; }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
}
.feature { text-align: left; }
.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; }

/* ---------- Benefits band ---------- */
.band {
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(74, 99, 224, .25) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy-ink) 0%, var(--navy) 100%);
  color: #b8c0e4;
  padding: 72px 0;
}
.band__inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.band h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 40px; text-align: center; }
.band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.band__item {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(6px);
}
.band__item strong { color: var(--green-bright); font-family: var(--font-head); font-size: 17px; }
.band__item span { font-size: 14px; color: #ccd3f0; }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(60, 181, 44, .45);
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md), 0 0 36px rgba(60, 181, 44, .14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.price-card__flag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 14px var(--green-glow);
  margin-bottom: 20px;
}
.price-card h3 { font-size: 21px; margin-bottom: 14px; }
.price-card__price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.price-card__was {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--slate-light);
  text-decoration: line-through;
}
.price-card__now {
  font-family: var(--font-head);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--green-deep), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.price-card__note { font-size: 14.5px; color: var(--slate-light); margin-bottom: 18px; }
.price-card__list {
  list-style: none;
  display: grid;
  gap: 11px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 28px;
  width: 100%;
}
.price-card__list li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); }
.price-card__list span { color: var(--green); font-weight: 700; }
.addons {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.addons h3 { font-size: 21px; margin-bottom: 22px; }
.addons__list { list-style: none; display: grid; gap: 0; flex: 1; }
.addons__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.addons__list li:first-child { padding-top: 0; }
.addons__list strong { display: block; color: var(--ink); font-size: 15.5px; font-family: var(--font-head); font-weight: 600; }
.addons__list span { font-size: 13.5px; color: var(--slate-light); }
.addons__list em {
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: var(--navy);
  white-space: nowrap;
}
.addons__list em small { font-size: 13px; font-weight: 600; color: var(--slate-light); }
.addons__foot { font-size: 13.5px; color: var(--slate-light); margin-top: 20px; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s ease;
}
.step:hover { border-color: rgba(60, 181, 44, .45); }
.step__num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 20px;
  box-shadow: 0 5px 16px var(--green-glow);
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15px; }

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s ease;
}
.review:hover { border-color: rgba(74, 99, 224, .5); }
.review__stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.review blockquote { font-size: 15px; color: var(--ink); flex: 1; }
.review figcaption { font-size: 13.5px; font-weight: 600; color: var(--slate-light); }

/* ---------- Fleet gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--green-soft), var(--blue-soft));
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 40px 22px 18px;
  background: linear-gradient(transparent, rgba(13, 20, 64, .88));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
}
.gallery__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: var(--green-deep);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
}
.gallery__placeholder svg { width: 56px; height: 56px; opacity: .8; }
.gallery__placeholder small { font-family: var(--font-body); font-weight: 500; color: var(--slate-light); }
.gallery__item--pending img, .gallery__item--pending .gallery__cap { display: none; }
.gallery__item--pending .gallery__placeholder { display: flex; }

/* ---------- Service area ---------- */
.section__inner--split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.area-list li:hover { border-color: var(--green); }
.area-card {
  position: relative;
  background: linear-gradient(160deg, var(--green-soft), var(--blue-soft));
  border: 1px solid rgba(60, 181, 44, .35);
  border-radius: 22px;
  padding: 40px;
  text-align: center;
}
.area-card__pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px var(--green-glow);
}
.area-card__pin svg { width: 26px; height: 26px; }
.area-card h3 { font-size: 20px; margin-bottom: 10px; }
.area-card p { font-size: 15px; margin-bottom: 24px; }

/* ---------- Final CTA ---------- */
.cta {
  background:
    radial-gradient(ellipse 60% 90% at 50% 110%, rgba(70, 214, 43, .20) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: 92px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__rose {
  display: inline-block;
  width: 54px;
  height: 54px;
  color: var(--green-bright);
  filter: drop-shadow(0 0 16px var(--green-glow));
  margin-bottom: 18px;
}
.cta__rose svg { width: 100%; height: 100%; }
.cta h2 { color: #fff; font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.cta p { font-size: 17.5px; color: #ccd3f0; margin-bottom: 32px; }
.cta__alt { font-size: 15px; color: #aab3dd; margin-top: 18px; }
.cta__alt a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255, 255, 255, .35); transition: border-color .2s; }
.cta__alt a:hover { border-color: var(--green-bright); }
.cta__tagline {
  display: block;
  margin-top: 30px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--green-bright);
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-ink); color: #a3abce; }
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
}
.footer__brand { display: flex; gap: 16px; align-items: flex-start; }
.footer__brand strong { color: #fff; font-family: var(--font-head); font-size: 16px; display: block; margin-bottom: 8px; }
.footer__brand p { font-size: 14px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer__col h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer__col a:hover { color: var(--green-bright); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.footer__tag { color: var(--green-bright); font-weight: 600; letter-spacing: .06em; }

/* ---------- Floating call button (mobile) ---------- */
.fab {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #fff;
  place-items: center;
  box-shadow: 0 8px 24px var(--green-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
.fab svg { width: 26px; height: 26px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px var(--green-glow), 0 0 0 0 rgba(60, 181, 44, .35); }
  50% { box-shadow: 0 8px 24px var(--green-glow), 0 0 0 14px rgba(60, 181, 44, 0); }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* staggered reveals — cards cascade in one after another */
.cards .card:nth-child(2), .features .feature:nth-child(2), .steps .step:nth-child(2),
.reviews .review:nth-child(2), .gallery .gallery__item:nth-child(2), .pricing .addons { transition-delay: .12s; }
.cards .card:nth-child(3), .features .feature:nth-child(3), .steps .step:nth-child(3),
.reviews .review:nth-child(3) { transition-delay: .24s; }
.cards .card:nth-child(4), .features .feature:nth-child(4) { transition-delay: .36s; }

/* hero card gently floats */
.hero__card { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* drifting aurora glows behind the hero */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.hero::before {
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(74, 99, 224, .16), transparent 65%);
  animation: aurora 16s ease-in-out infinite alternate;
}
.hero::after {
  bottom: -180px;
  left: -140px;
  background: radial-gradient(circle, rgba(70, 214, 43, .14), transparent 65%);
  animation: aurora 13s ease-in-out infinite alternate-reverse;
}
@keyframes aurora {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-70px, 50px) scale(1.18); }
}

/* nav links get an animated gradient underline */
.nav__links > a:not(.btn) { position: relative; padding-bottom: 3px; }
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); }

/* shimmer sweep across the deal badge */
.price-card__flag { position: relative; overflow: hidden; }
.price-card__flag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .45) 50%, transparent 70%);
  transform: translateX(-110%);
  animation: shine 3.6s ease-in-out infinite;
}
@keyframes shine {
  0%, 55% { transform: translateX(-110%); }
  85%, 100% { transform: translateX(110%); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__airflow span, .fab, .hero__card, .hero::before, .hero::after, .price-card__flag::after { animation: none; }
  .gallery__item img, .nav__links > a:not(.btn)::after { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cards, .features, .band__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding-top: 60px; }
  .hero__card { margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .topbar__item--hide-sm { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(16, 24, 64, .12);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 20px;
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links > a:not(.btn) { padding: 13px 0; border-bottom: 1px solid var(--bg-alt); }
  .nav__cta { margin-top: 14px; justify-content: center; }
  .steps, .reviews, .pricing, .gallery { grid-template-columns: 1fr; }
  .section__inner--split { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 72px 0; }
  .fab { display: grid; }
}

@media (max-width: 560px) {
  .cards, .features, .band__grid, .footer__inner { grid-template-columns: 1fr; }
  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3px 18px;
    padding: 7px 16px;
    text-align: center;
  }
  .topbar__phones { margin-left: 0; }
  .hero__inner { padding: 44px 24px 72px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .callpair {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-radius: 30px;
  }
  .callpair__num { justify-content: center; }
  .callpair__or { align-self: center; padding: 2px 0; }
  .nav__logo-text { font-size: 16px; }
}
