/* ============================================================
   Breeze Climate — Design Lab demo stylesheet
   Cool-tech, eco-modern HVAC / heat-pump installer
   ============================================================ */

:root {
  /* Brand palette */
  --ink:        #0b1f2a;   /* deep cool ink */
  --ink-2:      #14323f;
  --slate:      #4a6470;
  --mist:       #6f8a96;
  --frost:      #eef6f9;   /* light cool base */
  --frost-2:    #dcebf1;
  --white:      #ffffff;

  --blue:       #1b7fd1;
  --blue-deep:  #0f5ea3;
  --teal:       #16c0c0;
  --teal-deep:  #0e8f97;
  --aqua:       #5fd6e6;
  --emerald:    #18b87a;   /* on-brand success colour */

  /* Gradients */
  --grad-cool:  linear-gradient(135deg, #1b7fd1 0%, #16c0c0 100%);
  --grad-deep:  linear-gradient(150deg, #0b1f2a 0%, #114a64 60%, #0e8f97 100%);
  --grad-frost: linear-gradient(180deg, #ffffff 0%, #eef6f9 100%);
  --glow:       0 0 0 1px rgba(27,127,209,.08), 0 18px 40px -18px rgba(15,94,163,.35);

  /* Type */
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body:    "Manrope", "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 11px;
  --gap: clamp(1rem, 2.4vw, 2rem);
  --shadow: 0 14px 36px -20px rgba(11,31,42,.45);
  --shadow-lg: 0 30px 70px -30px rgba(11,31,42,.55);
  --ring: 0 0 0 3px rgba(22,192,192,.30);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: clamp(1rem, .55vw + .85rem, 1.06rem);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.02em; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
p { color: var(--slate); }
.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
section { position: relative; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad-cool);
}
.lead { font-size: clamp(1.05rem, 1.3vw, 1.22rem); color: var(--slate); max-width: 56ch; }
.section-head { max-width: 62ch; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.center { text-align: center; margin-inline: auto; }
.grad-text {
  background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.5rem; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-cool); color: #fff;
  box-shadow: 0 14px 30px -12px rgba(22,192,192,.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(27,127,209,.7); }
.btn-ghost {
  background: rgba(255,255,255,.7); color: var(--ink);
  border-color: rgba(27,127,209,.25); backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--teal); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--ink-2); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(15,94,163,.10);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; }
.brand .logo-mark {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-cool); box-shadow: 0 8px 18px -8px rgba(22,192,192,.7);
}
.brand .logo-mark svg { width: 24px; height: 24px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mist); }

.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a { font-weight: 600; font-size: .94rem; color: var(--ink-2); position: relative; padding: .25rem 0; transition: color .2s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; border-radius: 2px;
  background: var(--grad-cool); transition: width .25s ease;
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--blue-deep); }
.nav-cta { display: flex; align-items: center; gap: .9rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--ink); }
.nav-phone svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links, .nav-cta {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: flex-start; gap: 1.1rem;
    background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
    padding: 1.4rem 1.2rem; border-bottom: 1px solid rgba(15,94,163,.12);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all .28s ease;
  }
  .nav-cta { top: 100%; padding-top: 0; border: 0; box-shadow: 0 20px 30px -18px rgba(11,31,42,.3); }
  .nav.open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav.open .nav-cta { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta { top: calc(100% + 0px); }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-frost);
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 6.5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 82% 18%, rgba(22,192,192,.20), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(27,127,209,.16), transparent 60%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.hero-copy h1 { margin: 1rem 0 1.1rem; }
.hero-copy .lead { margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.hero-trust .ht { display: flex; align-items: center; gap: .55rem; font-size: .88rem; color: var(--slate); font-weight: 600; }
.hero-trust .ht svg { width: 20px; height: 20px; color: var(--teal-deep); flex: 0 0 auto; }

/* Hero visual: airflow SVG + dial card */
.hero-visual { position: relative; }
.hero-airflow { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(15,94,163,.25)); }
.dial-card {
  position: absolute; bottom: -10px; left: -14px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(27,127,209,.18); border-radius: var(--radius);
  padding: 1rem 1.15rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .9rem;
}
.dial-card .dial { width: 64px; height: 64px; flex: 0 0 auto; }
.dial-card .dial-arc { stroke-dasharray: 165; stroke-dashoffset: 165; animation: dialFill 2.2s ease forwards .4s; }
@keyframes dialFill { to { stroke-dashoffset: 56; } }
.dial-card b { font-family: var(--font-display); font-size: 1.35rem; display: block; line-height: 1; }
.dial-card span { font-size: .76rem; color: var(--mist); font-weight: 600; }

.glass-badge {
  position: absolute; top: 8px; right: -6px;
  background: rgba(11,31,42,.9); color: #fff;
  border-radius: 14px; padding: .7rem .95rem; font-size: .8rem; font-weight: 600;
  display: flex; align-items: center; gap: .5rem; box-shadow: var(--shadow);
}
.glass-badge svg { width: 18px; height: 18px; color: var(--aqua); }

/* ============================================================
   Eco stat strip
   ============================================================ */
.stat-strip {
  background: var(--grad-deep); color: #fff;
  padding: clamp(2.2rem, 4vw, 3rem) 0;
}
.stat-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.stat {
  text-align: center; position: relative;
}
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1; }
.stat .num .grad-text { background: linear-gradient(120deg,#5fd6e6,#16c0c0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { margin-top: .5rem; font-size: .82rem; color: rgba(255,255,255,.72); font-weight: 600; letter-spacing: .02em; }
.stat::after {
  content: ""; position: absolute; right: 0; top: 12%; height: 76%; width: 1px;
  background: rgba(255,255,255,.14);
}
.stat:last-child::after { display: none; }

/* ============================================================
   Generic section spacing
   ============================================================ */
.section { padding: clamp(3.4rem, 7vw, 6rem) 0; }
.section.frost { background: var(--grad-frost); }

/* ============================================================
   Services cards
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.svc-card {
  background: var(--white); border: 1px solid rgba(15,94,163,.10); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-cool); opacity: .9;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(22,192,192,.4); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(27,127,209,.12), rgba(22,192,192,.16));
  border: 1px solid rgba(22,192,192,.25);
}
.svc-icon svg { width: 30px; height: 30px; color: var(--blue-deep); }
.svc-card h3 { margin-bottom: .5rem; }
.svc-card p { font-size: .94rem; margin-bottom: 1.1rem; }
.svc-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px dashed rgba(15,94,163,.18); }
.price-tag { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.price-tag small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .68rem; color: var(--mist); text-transform: uppercase; letter-spacing: .1em; }
.svc-link { font-weight: 700; font-size: .88rem; color: var(--teal-deep); display: inline-flex; align-items: center; gap: .35rem; }
.svc-link svg { width: 15px; height: 15px; transition: transform .2s; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* ============================================================
   How it works (steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); counter-reset: step; }
.step {
  position: relative; padding: 1.6rem 1.3rem 1.4rem;
  background: rgba(255,255,255,.7); border: 1px solid rgba(27,127,209,.14);
  border-radius: var(--radius); backdrop-filter: blur(4px);
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: .5rem; line-height: 1;
}
.step h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.step p { font-size: .9rem; }
.step .connector {
  position: absolute; top: 2.7rem; right: -10px; color: var(--teal); width: 20px; height: 20px;
}
.step:last-child .connector { display: none; }

/* ============================================================
   Energy savings feature (split)
   ============================================================ */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.savings-panel {
  background: var(--grad-deep); border-radius: var(--radius); padding: clamp(1.6rem,3vw,2.4rem); color: #fff;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.savings-panel::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 80% 10%, rgba(95,214,230,.28), transparent 60%);
  pointer-events: none;
}
.savings-panel h3 { color: #fff; font-size: 1.15rem; margin-bottom: 1.2rem; position: relative; }
.bar-row { display: grid; gap: 1.1rem; position: relative; }
.bar { }
.bar .bar-top { display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: .35rem; }
.bar .bar-top span:first-child { color: rgba(255,255,255,.8); font-weight: 600; }
.bar .bar-top b { font-family: var(--font-display); }
.bar-track { height: 10px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg,#5fd6e6,#16c0c0); }
.bar-fill.old { background: rgba(255,255,255,.32); }
.feature-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: .8rem; align-items: flex-start; }
.feature-list svg { width: 24px; height: 24px; flex: 0 0 auto; color: var(--emerald); margin-top: 2px; }
.feature-list b { font-family: var(--font-display); display: block; color: var(--ink); }
.feature-list span { font-size: .92rem; color: var(--slate); }

/* ============================================================
   Reviews
   ============================================================ */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.review {
  background: var(--white); border: 1px solid rgba(15,94,163,.10); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow); position: relative;
}
.review .stars { display: flex; gap: 2px; margin-bottom: .9rem; color: #f5b53d; }
.review .stars svg { width: 18px; height: 18px; }
.review blockquote { font-size: .98rem; color: var(--ink-2); margin-bottom: 1.2rem; }
.review .who { display: flex; align-items: center; gap: .7rem; }
.review .avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: .95rem;
  background: var(--grad-cool);
}
.review .who b { font-family: var(--font-display); font-size: .92rem; display: block; }
.review .who span { font-size: .8rem; color: var(--mist); }

/* ============================================================
   Blog teaser / list
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.post-card {
  background: var(--white); border: 1px solid rgba(15,94,163,.10); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.post-thumb svg { width: 100%; height: 100%; }
.post-body { padding: 1.3rem 1.3rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-deep); margin-bottom: .6rem;
}
.post-body h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.post-body p { font-size: .9rem; margin-bottom: 1rem; flex: 1; }
.post-meta { font-size: .8rem; color: var(--mist); display: flex; gap: .6rem; align-items: center; }
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--frost-2); }

/* Featured post */
.featured {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--white); border: 1px solid rgba(15,94,163,.10); box-shadow: var(--shadow-lg); margin-bottom: 3rem;
}
.featured .feat-media { background: var(--grad-deep); position: relative; min-height: 320px; }
.featured .feat-media svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.featured .feat-body { padding: clamp(1.6rem,3vw,2.6rem); display: flex; flex-direction: column; justify-content: center; }
.featured .feat-body h2 { margin: .6rem 0 1rem; font-size: clamp(1.5rem,2.4vw,2rem); }
.featured .feat-body p { margin-bottom: 1.5rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--grad-deep); color: #fff; border-radius: var(--radius);
  padding: clamp(2.4rem,5vw,3.6rem); text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 70% at 20% 0%, rgba(95,214,230,.25), transparent 60%),
             radial-gradient(40% 60% at 90% 100%, rgba(27,127,209,.3), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: .8rem; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 52ch; margin: 0 auto 1.8rem; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: clamp(3rem,5vw,4rem) 0 1.8rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--gap); margin-bottom: 2.4rem; }
.footer-grid h4 { color: #fff; font-size: .92rem; letter-spacing: .04em; margin-bottom: 1rem; }
.footer-grid a, .footer-grid li { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: .55rem; transition: color .2s; }
.footer-grid a:hover { color: var(--aqua); }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); max-width: 34ch; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--aqua); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; font-size: .8rem; color: rgba(255,255,255,.5); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
.footer-disclaimer { background: rgba(255,255,255,.05); border-radius: 12px; padding: .9rem 1.1rem; font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 1.5rem; line-height: 1.5; }

/* ============================================================
   Page hero (sub-pages)
   ============================================================ */
.page-hero {
  background: var(--grad-frost); padding: clamp(2.6rem,5vw,4.2rem) 0 clamp(2rem,4vw,3rem); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 88% 10%, rgba(22,192,192,.16), transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 { margin: .8rem 0 .9rem; font-size: clamp(2.1rem,4.4vw,3.4rem); }
.breadcrumb { font-size: .82rem; color: var(--mist); font-weight: 600; }
.breadcrumb a:hover { color: var(--blue-deep); }

/* ============================================================
   Filter bar + pricing table (services page)
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-bottom: 2rem; }
.filter-btn {
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  padding: .55rem 1.1rem; border-radius: 999px; cursor: pointer;
  background: var(--white); border: 1px solid rgba(15,94,163,.18); color: var(--ink-2);
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--teal); }
.filter-btn.active { background: var(--grad-cool); color: #fff; border-color: transparent; }
.filter-count { margin-left: auto; font-size: .85rem; color: var(--mist); font-weight: 600; }
.filter-count b { color: var(--ink); }

.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
[data-listing] { transition: opacity .3s, transform .3s; }
[data-listing].hide { display: none; }
.price-card {
  background: var(--white); border: 1px solid rgba(15,94,163,.12); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column;
}
.price-card.featured-plan { border-color: var(--teal); box-shadow: var(--shadow-lg); }
.price-card .plan-flag {
  position: absolute; top: -11px; right: 18px; background: var(--grad-cool); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px;
}
.price-card .cat-pill {
  align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal-deep); background: rgba(22,192,192,.12); border-radius: 999px; padding: .3rem .7rem; margin-bottom: .9rem;
}
.price-card h3 { margin-bottom: .4rem; }
.price-card .price { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; color: var(--ink); margin: .4rem 0 .2rem; }
.price-card .price small { font-size: .8rem; color: var(--mist); font-weight: 600; }
.price-card .price-sub { font-size: .82rem; color: var(--mist); margin-bottom: 1.1rem; }
.price-card ul.inc { display: grid; gap: .6rem; margin: 1rem 0 1.4rem; }
.price-card ul.inc li { display: flex; gap: .55rem; font-size: .9rem; color: var(--slate); }
.price-card ul.inc svg { width: 18px; height: 18px; color: var(--emerald); flex: 0 0 auto; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,4vw,3rem); align-items: start; }
.form-card {
  background: var(--white); border: 1px solid rgba(15,94,163,.12); border-radius: var(--radius);
  padding: clamp(1.6rem,3vw,2.2rem); box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .85rem; margin-bottom: .4rem; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  padding: .8rem .9rem; border-radius: var(--radius-sm); border: 1px solid rgba(15,94,163,.2);
  background: var(--frost); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: var(--ring); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
[data-form-note] { font-size: .9rem; font-weight: 600; margin-top: .4rem; min-height: 1.2em; }

.info-card {
  background: var(--grad-deep); color: #fff; border-radius: var(--radius); padding: clamp(1.6rem,3vw,2.2rem);
  box-shadow: var(--shadow-lg);
}
.info-card h3 { color: #fff; margin-bottom: 1.2rem; }
.info-list li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1.1rem; }
.info-list svg { width: 20px; height: 20px; color: var(--aqua); flex: 0 0 auto; margin-top: 3px; }
.info-list b { display: block; font-family: var(--font-display); font-size: .92rem; color: #fff; }
.info-list span { font-size: .88rem; color: rgba(255,255,255,.72); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.6rem; }
.hours-table th { text-align: left; font-family: var(--font-display); font-size: .85rem; color: #fff; padding-bottom: .6rem; }
.hours-table td { font-size: .88rem; padding: .42rem 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.75); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: #fff; }
.hours-table tr.today td { color: var(--aqua); }

.map-wrap {
  margin-top: 2.4rem; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(15,94,163,.14);
  box-shadow: var(--shadow);
}
.map-wrap svg { width: 100%; height: auto; display: block; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dial-card .dial-arc { animation: none; stroke-dashoffset: 56; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 520px; margin-inline: auto; }
  .feature-split { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .featured .feat-media { min-height: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .stat-strip .container { grid-template-columns: repeat(2,1fr); gap: 1.6rem 1rem; }
  .stat:nth-child(2)::after { display: none; }
  .svc-grid, .review-grid, .blog-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step .connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta .nav-phone { display: none; }
}
@media (max-width: 560px) {
  .svc-grid, .review-grid, .blog-grid, .price-grid, .steps { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}
