/* ========================================================================
   VALLEY VIEW HVAC — clean corporate
   Deep blue + orange + white · soft rounded · friendly-pro
   ======================================================================== */

:root {
  --bg: #f6f8fc;
  --white: #ffffff;
  --ink: #0f172a;
  --ink-soft: #475569;
  --mute: #64748b;
  --border: #e2e8f0;
  --blue: #1e3a8a;
  --blue-deep: #0b1f5a;
  --blue-soft: #dbe4ff;
  --sky: #38bdf8;
  --orange: #ff6b1f;
  --orange-soft: #fff1e7;
  --orange-deep: #d94e00;
  --green: #10b981;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);

  --ff-display: 'Outfit', 'Inter', sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 70% 40% at 80% 0%, rgba(59, 130, 246, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 30% at 10% 20%, rgba(255, 107, 31, 0.05), transparent 60%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

.wrap { max-width: 1280px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); position: relative; }

/* Nav ------------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-brand .mark {
  width: 42px; height: 42px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white;
  display: grid; place-items: center;
  font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
}
.nav-brand .tm { font-family: var(--ff-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); line-height: 1; letter-spacing: -0.01em; }
.nav-brand .tm small { display: block; font-family: var(--ff-body); font-weight: 500; font-size: 0.72rem; color: var(--mute); margin-top: 3px; letter-spacing: 0.04em; }

.nav-links { display: flex; gap: 0.3rem; font-size: 0.94rem; }
.nav-links a {
  position: relative;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-soft); }
.nav-links a.active { color: var(--blue); background: var(--blue-soft); font-weight: 600; }

.nav-cta {
  padding: 0.6rem 1.1rem;
  background: var(--orange);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(255, 107, 31, 0.35);
  transition: transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255, 107, 31, 0.5); }

/* Mobile toggle (hamburger) -------------------------------- */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: 0;
  position: relative;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.mobile-toggle:hover { background: var(--blue-soft); border-color: var(--blue); }
.mobile-toggle::before,
.mobile-toggle::after,
.mobile-toggle > span.mt-bar {
  content: '';
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.28s cubic-bezier(.2,.9,.2,1), opacity 0.2s, top 0.28s;
}
.mobile-toggle::before { top: calc(50% - 7px); }
.mobile-toggle > span.mt-bar { top: 50%; transform: translate(-50%, -50%); }
.mobile-toggle::after { top: calc(50% + 5px); }
.mobile-toggle.is-open::before { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.mobile-toggle.is-open > span.mt-bar { opacity: 0; }
.mobile-toggle.is-open::after { top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile drawer --------------------------------------------- */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 86vw);
  background: var(--white);
  z-index: 90;
  padding: 0;
  border-left: 1px solid var(--border);
  box-shadow: -24px 0 60px rgba(15, 23, 42, 0.18);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.2,.9,.2,1);
  overflow: hidden;
  visibility: hidden;
}
@media (max-width: 980px) { .mobile-menu { display: flex; } }
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
@media (max-width: 980px) { .mobile-menu-scrim { display: block; } }
.mobile-menu-scrim.open { opacity: 1; pointer-events: auto; }

.mm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
  min-height: 72px;
  flex-shrink: 0;
}
.mm-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  min-width: 0;
}
.mm-brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.mm-brand span { line-height: 1.1; }
.mm-brand small { display: block; font-family: var(--ff-body); font-weight: 500; font-size: 0.7rem; color: var(--mute); margin-top: 2px; letter-spacing: 0.04em; }
.mm-close {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 1.1rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.mm-close:hover { background: var(--blue-soft); color: var(--blue); border-color: var(--blue); }

.mm-links {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mm-links > a,
.mm-links .mm-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.02rem;
  text-align: left;
  line-height: 1.25;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-height: 48px;
}
.mm-links > a:hover,
.mm-links > a:focus-visible,
.mm-links .mm-group:hover,
.mm-links .mm-group:focus-visible { background: var(--blue-soft); color: var(--blue); outline: none; }
.mm-links > a.active { background: var(--blue-soft); color: var(--blue); font-weight: 600; }

.mm-group .mm-chev {
  font-size: 0.9rem;
  color: var(--mute);
  transition: transform 0.22s ease;
  display: inline-flex;
  font-style: normal;
}
.mm-group[aria-expanded="true"] { background: var(--blue-soft); color: var(--blue); }
.mm-group[aria-expanded="true"] .mm-chev { transform: rotate(180deg); color: var(--blue); }

.mm-sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s cubic-bezier(.2,.9,.2,1);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0 0.35rem;
}
.mm-sub.is-open { max-height: 720px; padding-top: 0.25rem; padding-bottom: 0.35rem; }
.mm-sub a {
  display: block;
  padding: 0.7rem 0.95rem 0.7rem 1.6rem;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mm-sub a::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
  transform: translateY(-50%);
}
.mm-sub a:hover { background: var(--blue-soft); color: var(--blue); }
.mm-sub a:hover::before { opacity: 1; }

.mm-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0.5rem;
}
.mm-label {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
  padding: 0.75rem 1rem 0.35rem;
}

.mm-foot {
  padding: 1rem 1.1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mm-foot .mm-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(255, 107, 31, 0.3);
  min-height: 48px;
}
.mm-foot .mm-call:hover { filter: brightness(1.05); transform: translateY(-1px); }
.mm-foot .mm-note {
  display: block;
  text-align: center;
  color: var(--mute);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* Nav responsiveness (mid + mobile) -------------------------- */
@media (max-width: 1180px) {
  .nav-links { font-size: 0.88rem; gap: 0.15rem; }
  .nav-links a { padding: 0.5rem 0.75rem; }
  .nav-brand .tm { font-size: 1.02rem; }
  .nav-brand .tm small { font-size: 0.68rem; }
}
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: inline-flex; }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 640px) {
  .nav { padding: 0.7rem 1rem; gap: 0.6rem; }
  .nav-brand .tm { font-size: 0.98rem; }
  .nav-brand .tm small { display: none; }
  .nav-brand .mark { width: 36px; height: 36px; }
}
@media (max-width: 420px) {
  .nav { padding: 0.6rem 0.85rem; }
  .nav-brand .tm { font-size: 0.92rem; }
}

/* Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.9rem 1.3rem;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--blue); }
.btn-primary { background: var(--blue); color: white; border-color: var(--blue); box-shadow: 0 6px 18px rgba(30, 58, 138, 0.3); }
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 10px 28px rgba(30, 58, 138, 0.45); }
.btn-orange { background: var(--orange); color: white; border-color: var(--orange); box-shadow: 0 6px 18px rgba(255, 107, 31, 0.3); }
.btn-orange:hover { background: var(--orange-deep); box-shadow: 0 10px 28px rgba(255, 107, 31, 0.45); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Hero ------------------------------------------------------ */
.hero {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem;
  align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.2rem;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px rgba(255, 107, 31, 0.25); }

.hero h1 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.02; letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.hero h1 .blue { color: var(--blue); }
.hero h1 .orange { color: var(--orange); }
.hero-sub { color: var(--ink-soft); font-size: 1.15rem; max-width: 52ch; margin-bottom: 1.8rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}
.trust-row .trust {
  display: flex; gap: 0.8rem; align-items: center;
  font-size: 0.9rem; color: var(--ink-soft);
}
.trust-row .trust strong { color: var(--ink); font-weight: 700; font-size: 1rem; }
.trust-row .trust .tico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center;
  font-size: 1.1rem;
}

/* Hero image block ----------------------------------------- */
.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: var(--shadow-lg);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hero-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.7)); }

.hero-card .tile {
  position: absolute; z-index: 2;
  background: var(--white);
  border-radius: 18px;
  padding: 0.95rem 1.15rem;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  max-width: 260px;
  white-space: nowrap;   /* keep short values on one line; <br/> still breaks */
}
.hero-card .tile .k { font-size: 0.74rem; color: var(--mute); font-weight: 500; margin-bottom: 0.25rem; letter-spacing: 0.02em; }
.hero-card .tile .v { font-family: var(--ff-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); line-height: 1.15; }
.hero-card .tile .v em { color: var(--orange); font-style: normal; }
.hero-card .tile.t1 { top: 1.5rem; right: 1rem; animation: floatY 5s ease-in-out infinite; }
.hero-card .tile.t2 { bottom: 28%; left: 1rem; animation: floatY 6s ease-in-out infinite 0.6s; }
.hero-card .tile.t3 { bottom: 1.5rem; right: 1rem; animation: floatY 4.5s ease-in-out infinite 1.2s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-card { aspect-ratio: 16/11; }
  .hero-card .tile { min-width: 180px; }
  .hero-card .tile.t1 { right: 1rem; top: 1rem; }
  .hero-card .tile.t2 { left: 1rem; bottom: 30%; }
}

/* Section --------------------------------------------------- */
.section { padding: 5rem 0; position: relative; }
.section-head { margin-bottom: 3rem; display: grid; gap: 0.8rem; max-width: 56rem; }
.section-head .eyebrow {
  font-family: var(--ff-display); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.section-head .eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--orange); }
.section-head h2 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink);
}
.section-head h2 .blue { color: var(--blue); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; max-width: 56ch; }

/* Services grid --------------------------------------------- */
.svc-grid {
  display: grid; gap: 1.3rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  background: var(--white);
  border-radius: 22px;
  padding: 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-soft); }
.svc::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, var(--blue-soft));
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.svc:hover::before { opacity: 0.3; }
.svc .ico {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.svc:nth-child(3n+2) .ico { background: var(--orange-soft); color: var(--orange); }
.svc:nth-child(3n+3) .ico { background: #e8f7f0; color: var(--green); }
.svc h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.svc p { color: var(--ink-soft); font-size: 0.96rem; }
.svc .arrow-box {
  margin-top: 1.2rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--blue); font-weight: 600; font-size: 0.92rem;
  transition: gap 0.2s;
}
.svc:hover .arrow-box { gap: 0.7rem; }

/* Ticker ---------------------------------------------------- */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 0;
  overflow: hidden;
  background: var(--white);
}
.ticker-track {
  display: flex; gap: 3rem; white-space: nowrap; width: max-content;
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  animation: slideLeft 40s linear infinite;
}
.ticker-track span em { color: var(--orange); font-style: normal; margin: 0 0.5rem; }
@keyframes slideLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Photo carousel -------------------------------------------- */
.showcase {
  padding: 2rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.showcase-track {
  display: flex; gap: 1rem; width: max-content;
  animation: slideLeft 55s linear infinite;
}
.showcase-track > figure {
  width: 320px; aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--blue-soft);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.showcase-track > figure img { width: 100%; height: 100%; object-fit: cover; }
.showcase-track > figure figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--blue);
}

/* Stats / metrics ------------------------------------------- */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.metric { padding: 2rem 1.5rem; border-right: 1px solid var(--border); text-align: center; }
.metric:last-child { border-right: 0; }
.metric .v { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--blue); line-height: 1; letter-spacing: -0.02em; }
.metric .v em { color: var(--orange); font-style: normal; }

.metric .v .metric-star {
  color: var(--orange);
  font-size: 0.7em;
  vertical-align: 0.15em;
  margin-left: 0.15em;
}
.metric .k { font-size: 0.88rem; color: var(--mute); margin-top: 0.55rem; font-weight: 500; }
@media (max-width: 900px) { .metrics { grid-template-columns: repeat(2, 1fr); } .metric:nth-child(2) { border-right: 0; } .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--border); } }

/* Steps ----------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step .n {
  position: absolute; top: 1rem; right: 1.2rem;
  font-family: var(--ff-display); font-size: 2rem; font-weight: 700;
  color: var(--blue-soft);
}
.step .si {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--orange-soft); color: var(--orange);
  display: grid; place-items: center; font-size: 1.2rem;
  margin-bottom: 0.9rem;
}
.step h4 { font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* Quotes ---------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.quote:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.quote .stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 0.7rem; font-size: 0.95rem; }
.quote p { color: var(--ink); margin-bottom: 1rem; line-height: 1.55; }
.quote .who {
  display: flex; align-items: center; gap: 0.7rem;
  padding-top: 0.8rem; border-top: 1px solid var(--border);
}
.quote .who .av { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; font-weight: 700; font-family: var(--ff-display); }
.quote .who strong { display: block; color: var(--ink); font-size: 0.95rem; }
.quote .who span { color: var(--mute); font-size: 0.82rem; }

/* Estimator ------------------------------------------------- */
.est-host {
  max-width: 900px; margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  box-shadow: var(--shadow);
  position: relative;
}
.est-host .kicker { display: inline-flex; gap: 0.5rem; color: var(--orange); font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; }
.est-host h2 { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.05; letter-spacing: -0.02em; }
.est-host .sub { color: var(--ink-soft); margin: 0.5rem 0 1.6rem; }

.est-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; margin-bottom: 1rem; }
.est-row.full { grid-template-columns: 1fr; }
@media (max-width: 620px) { .est-row { grid-template-columns: 1fr; } }
.est-field label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0.4rem; }
.est-field input, .est-field select, .est-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.est-field input:focus, .est-field select:focus, .est-field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}
.est-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231e3a8a' stroke-width='2' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.est-err { color: var(--orange-deep); font-size: 0.8rem; font-weight: 600; margin-top: 0.3rem; display: block; min-height: 1em; }
.est-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }

.est-range { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.2rem, 5.5vw, 3.8rem); line-height: 1; color: var(--blue); text-align: center; margin: 1rem 0 0.4rem; letter-spacing: -0.02em; }
.est-summary { text-align: center; color: var(--ink-soft); max-width: 52ch; margin: 0.8rem auto 0; }
.est-disclaimer { text-align: center; color: var(--mute); font-size: 0.84rem; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* Feature grid (about / service detail) -------------------- */
.feature-grid {
  display: grid; gap: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-soft); }
.feature .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; font-size: 1.35rem; margin-bottom: 0.9rem; }
.feature:nth-child(2n) .ico { background: var(--orange-soft); color: var(--orange); }
.feature h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 0.45rem; letter-spacing: -0.01em; }
.feature p { color: var(--ink-soft); margin-bottom: 0.8rem; }
.feature ul { list-style: none; display: grid; gap: 0.4rem; }
.feature ul li { color: var(--ink-soft); font-size: 0.94rem; padding-left: 1.4rem; position: relative; }
.feature ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* Gallery --------------------------------------------------- */
.gallery { column-count: 3; column-gap: 1rem; }
@media (max-width: 860px) { .gallery { column-count: 2; } }
@media (max-width: 520px) { .gallery { column-count: 1; } }
.gallery figure {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gallery figure:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery img { width: 100%; display: block; }
.gallery figcaption { padding: 0.7rem 1rem; font-size: 0.88rem; color: var(--ink-soft); font-weight: 500; }

/* Contact --------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 1.5rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info {
  display: flex; gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.9rem;
  transition: transform 0.15s, box-shadow 0.2s;
}
a.info:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.info .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; font-size: 1.1rem; }
.info .k { font-size: 0.78rem; color: var(--mute); font-weight: 500; }
.info .v { color: var(--ink); font-weight: 600; margin-top: 0.15rem; white-space: pre-line; }

.map-embed { aspect-ratio: 16/9; border-radius: 22px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); background: var(--white); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Discount banner ------------------------------------------ */
.discount-banner {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  padding: 0.7rem 0;
  position: relative;
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.35;
}
.discount-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(700px circle at 18% 50%, rgba(255, 107, 31, 0.18), transparent 55%);
  pointer-events: none;
}
.discount-banner .wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.db-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  padding: 0.3rem 0.7rem;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(255, 107, 31, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}
.db-badge .db-pct { font-size: 1rem; line-height: 1; }
.db-badge .db-off { font-size: 0.7rem; letter-spacing: 0.18em; opacity: 0.95; }
.db-msg {
  margin: 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.db-msg strong { font-weight: 700; color: #fff; }
.db-groups {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  align-items: center;
}
.db-groups li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.db-groups li i { font-size: 0.95rem; color: var(--orange); line-height: 1; }

@media (max-width: 980px) {
  .discount-banner { padding: 0.55rem 0; }
  .discount-banner .wrap { gap: 0.75rem; }
  .db-msg { display: none; }
  .db-groups li { padding: 0.22rem 0.6rem; font-size: 0.76rem; }
}
@media (max-width: 560px) {
  .discount-banner .wrap { gap: 0.55rem; padding-inline: 0.75rem; }
  .db-badge { padding: 0.26rem 0.6rem; }
  .db-badge .db-pct { font-size: 0.92rem; }
  .db-badge .db-off { font-size: 0.62rem; letter-spacing: 0.14em; }
  .db-groups { gap: 0.3rem; justify-content: center; }
  .db-groups li { padding: 0.2rem 0.55rem; font-size: 0.72rem; gap: 0.25rem; }
  .db-groups li i { font-size: 0.82rem; }
}
@media (max-width: 380px) {
  .db-groups li span { display: none; }
  .db-groups li { padding: 0.3rem 0.5rem; }
  .db-groups li i { font-size: 0.95rem; }
  .db-groups li::after { content: attr(data-short); font-size: 0.7rem; font-weight: 600; }
}

/* CTA panel ------------------------------------------------- */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: white;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 31, 0.3), transparent 60%);
  pointer-events: none;
}
.cta .wrap { position: relative; z-index: 2; text-align: center; }
.cta h2 { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 0.8rem; }
.cta h2 .orange { color: var(--orange); }
.cta p { color: rgba(255, 255, 255, 0.85); max-width: 52ch; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta .btn { background: var(--white); color: var(--ink); border-color: var(--white); }
.cta .btn-orange { background: var(--orange); color: white; border-color: var(--orange); }

/* Page hero (interior) ------------------------------------- */
.page-hero {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, var(--white), transparent);
  border-bottom: 1px solid var(--border);
}
.page-hero .pill { margin-bottom: 1rem; }
.page-hero h1 { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.02em; }
.page-hero h1 .blue { color: var(--blue); }
.page-hero h1 .orange { color: var(--orange); }
.page-hero p { color: var(--ink-soft); max-width: 60ch; font-size: 1.08rem; margin-top: 0.7rem; }

/* Footer ---------------------------------------------------- */
.foot { background: var(--ink); color: #cbd5e1; padding: 4rem 0 1.5rem; }
.foot-grid { display: grid; gap: 2rem; grid-template-columns: 1.3fr repeat(3, 1fr); margin-bottom: 2rem; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot h5 { font-family: var(--ff-display); font-weight: 700; font-size: 0.88rem; color: var(--orange); margin-bottom: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }
.foot a, .foot li { color: rgba(255, 255, 255, 0.7); font-size: 0.94rem; transition: color 0.2s; }
.foot a:hover { color: var(--orange); }
.foot ul { list-style: none; display: grid; gap: 0.4rem; }
.foot .brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.foot .brand .mark { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--sky)); display: grid; place-items: center; color: white; font-weight: 700; font-family: var(--ff-display); font-size: 1.1rem; }
.foot .brand .tm { font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; color: white; }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

/* Reveal animations ---------------------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-in > *:nth-child(2) { transition-delay: 0.14s; }
.stagger.is-in > *:nth-child(3) { transition-delay: 0.22s; }
.stagger.is-in > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.is-in > *:nth-child(5) { transition-delay: 0.38s; }
.stagger.is-in > *:nth-child(6) { transition-delay: 0.46s; }
.stagger.is-in > *:nth-child(7) { transition-delay: 0.54s; }
.stagger.is-in > *:nth-child(8) { transition-delay: 0.62s; }

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


/* Dropdown nav ---------------------------------------------- */
.nav-drop { position: relative; display: inline-flex; align-items: center; }
.nav-drop > a { cursor: pointer; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 0.55rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 60;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { display: flex; }
.nav-drop-menu a {
  padding: 0.65rem 0.95rem;
  border-radius: 10px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.93rem;
  white-space: nowrap;
}
.nav-drop-menu a:hover { color: var(--blue); background: var(--blue-soft); }
@media (max-width: 980px) { .nav-drop { display: none; } }

/* Details (FAQ on service pages) ---------------------------- */
details.feature { padding: 1.3rem 1.5rem; }
details.feature summary::marker { display: none; }
details.feature summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
details.feature summary::after { content: '+'; font-family: var(--ff-display); font-weight: 400; font-size: 1.5rem; color: var(--orange); transition: transform 0.3s; }
details.feature[open] summary::after { transform: rotate(45deg); }


/* Phosphor icon centering ----------------- */
.ico > .ph, .si > .ph, .tico > .ph, .info .ico > .ph, .feature .ico > .ph, .svc .ico > .ph,
.step .si > .ph, .trust .tico > .ph {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}
.ph { line-height: 1; vertical-align: middle; }


/* Pill — blue variant (used on hero trust badge) */
.pill.pill-blue { background: var(--blue-soft); color: var(--blue); }
.pill.pill-blue .dot { background: var(--blue); box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.22); }


/* Nav + footer logo image — overrides text-mark styling when <img class="mark"> is used */
.nav-brand img.mark,
.foot .brand img.mark {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: transparent;
  object-fit: cover;
  padding: 0;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.22);
  border: 1px solid var(--border, #e2e8f0);
}

/* ============================================================
   VV TESTIMONIAL CAROUSEL
   ============================================================ */
.vv-carousel{position:relative;margin-top:2rem}
.vv-car-track{
  display:flex;gap:1.5rem;overflow-x:auto;overflow-y:hidden;
  scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
  padding:0.5rem 0.25rem 1.5rem;
  scrollbar-width:none;
  scroll-behavior:smooth;
}
.vv-car-track::-webkit-scrollbar{display:none}
.vv-car-slide{
  flex:0 0 auto;
  scroll-snap-align:start;
  width:min(420px,86vw);
  min-height:auto;
  margin:0;
}
.vv-car-nav{
  position:absolute;top:50%;transform:translateY(-50%);z-index:5;
  width:48px;height:48px;border-radius:50%;border:none;cursor:pointer;
  background:var(--orange,#f17400);color:#fff;
  font-size:1.6rem;font-weight:700;line-height:1;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.18);
  transition:transform .2s,box-shadow .2s,background .2s;
}
.vv-car-nav:hover{transform:translateY(-50%) scale(1.06);box-shadow:0 8px 20px rgba(0,0,0,0.25)}
.vv-car-nav:disabled{opacity:0.35;cursor:not-allowed}
.vv-car-prev{left:-8px}
.vv-car-next{right:-8px}
@media (max-width:600px){
  .vv-car-prev{left:4px}
  .vv-car-next{right:4px}
  .vv-car-nav{width:40px;height:40px;font-size:1.3rem}
}
.vv-car-dots{
  display:flex;gap:8px;justify-content:center;margin-top:1rem;
}
.vv-car-dot{
  width:10px;height:10px;border-radius:50%;border:none;cursor:pointer;
  background:rgba(0,0,0,0.18);padding:0;transition:background .2s,transform .2s;
}
.vv-car-dot.active{background:var(--orange,#f17400);transform:scale(1.25)}
