/* ============================================================
   ARMAC Plumbing — Design System
   Palette: black / red / white / gray  ·  modern, minimal, high-end
   ============================================================ */

:root {
  --ink:        #0b0c0e;
  --ink-2:      #141619;
  --ink-3:      #1c1f24;
  --ink-4:      #262a30;

  --white:      #ffffff;
  --surface:    #ffffff;
  --surface-2:  #f5f6f8;
  --surface-3:  #eceef1;

  --line:       #e4e7ec;
  --line-2:     #d7dbe1;
  --line-dark:  rgba(255,255,255,.10);

  --muted:      #656c78;
  --muted-2:    #8a929e;
  --muted-dark: #9aa2ae;

  --red:        #e11021;
  --red-600:    #c60d1c;
  --red-700:    #a60b18;
  --red-soft:   rgba(225,16,33,.10);
  --red-glow:   rgba(225,16,33,.35);

  --gold:       #ffb020;

  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  22px;
  --radius-pill: 999px;

  --shadow:     0 10px 30px rgba(10,12,16,.08);
  --shadow-md:  0 16px 40px rgba(10,12,16,.12);
  --shadow-lg:  0 28px 70px rgba(10,12,16,.22);
  --ring:       0 0 0 3px rgba(225,16,33,.35);

  --container:  1180px;
  --gap:        clamp(16px, 3vw, 28px);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------------- reset / base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.1; letter-spacing: -.02em; font-weight: 800; }
p { margin: 0 0 1em; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.bg-soft { background: var(--surface-2); }
.bg-ink { background: var(--ink); color: var(--white); }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 1000;
  background: var(--red); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { left: 12px; }

/* ---------------- eyebrow / headings ---------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); display: inline-block; }
.bg-ink .eyebrow { color: #ff5b68; }

.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 46px); margin: 14px 0 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.bg-ink .section-head p { color: var(--muted-dark); }

/* ---------------- buttons ---------------- */
.btn {
  --bg: var(--ink); --fg: #fff; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--radius-pill);
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  font-weight: 700; font-size: 15.5px; letter-spacing: .01em;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--red { --bg: var(--red); --fg: #fff; box-shadow: 0 10px 26px var(--red-glow); }
.btn--red:hover { --bg: var(--red-600); box-shadow: 0 16px 34px var(--red-glow); }
.btn--ink { --bg: var(--ink); --fg: #fff; }
.btn--ink:hover { --bg: #000; }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line-2); }
.btn--ghost:hover { --bd: var(--ink); background: var(--ink); color: #fff; }
.btn--ghost-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.28); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); --bd: #fff; }
.btn--white { --bg: #fff; --fg: var(--ink); }
.btn--white:hover { --bg: #f0f1f3; }
.btn--lg { padding: 16px 30px; font-size: 16.5px; }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------------- header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(11,12,14,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand__mark { width: 46px; height: 46px; flex: none; object-fit: contain; }
.brand__name { font-weight: 900; font-size: 19px; letter-spacing: -.02em; line-height: 1; }
.brand__name b { color: var(--red); }
.brand__sub { display: block; font-weight: 600; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-dark); margin-top: 4px; }

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: inline-block; padding: 10px 14px; border-radius: 10px;
  color: #d9dce1; font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: color .15s, background .15s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav a.is-active { color: #fff; }
.nav a.is-active::after { content:""; display:block; height:2px; background: var(--red); border-radius:2px; margin-top:6px; }

.header-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.header-phone { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.05; }
.header-phone small { color: var(--muted-dark); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.header-phone b { color: #fff; font-size: 17px; letter-spacing: .01em; }

.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.08); border: 1px solid var(--line-dark); color: #fff;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* mobile nav panel */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 340px); z-index: 300;
  background: var(--ink-2); color: #fff; transform: translateX(100%);
  transition: transform .32s var(--ease); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; padding: 22px; gap: 6px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { padding: 14px 12px; border-radius: 12px; font-weight: 700; font-size: 18px; color: #eceef1; }
.mobile-nav a:hover { background: rgba(255,255,255,.06); }
.mobile-nav__head { display:flex; align-items:center; justify-content: space-between; margin-bottom: 12px; }
.mobile-nav__close { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.08); border: none; color:#fff; font-size: 22px; }
.mobile-nav .btn { margin-top: 10px; }
.scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 250; opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s; backdrop-filter: blur(2px);
}
.scrim.open { opacity: 1; visibility: visible; }

/* ---------------- hero ---------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 500px at 82% -8%, rgba(225,16,33,.30), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(255,255,255,.05), transparent 55%),
    linear-gradient(180deg, #101215, #0b0c0e 70%);
}
.hero::after {
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: linear-gradient(180deg, #000, transparent 75%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 84px); }
.hero__eyebrow { color:#ff6b76; }
.hero h1 { font-size: clamp(34px, 5.6vw, 62px); font-weight: 900; letter-spacing: -.025em; margin: 16px 0 18px; }
.hero h1 .hl { color: var(--red); }
.hero__sub { font-size: clamp(16px, 1.5vw, 19px); color: #c4c9d0; max-width: 34em; margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; color: #cbd0d7; font-weight: 600; font-size: 14.5px; }
.hero__badge svg { width: 18px; height: 18px; color: var(--red); flex: none; }

/* hero card (rating / trust) */
.hero__card {
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  padding: 26px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero__rating { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); margin-bottom: 18px; }
.hero__score { font-size: 46px; font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.hero__stars { display:flex; gap:2px; color: var(--gold); }
.hero__stars svg { width: 18px; height: 18px; }
.hero__ratingmeta { font-size: 13.5px; color: var(--muted-dark); }
.hero__ratingmeta b { color:#fff; }
.hero__list { display: grid; gap: 12px; }
.hero__list li { display:flex; gap: 11px; align-items:flex-start; font-size: 15px; color:#d7dbe1; }
.hero__list svg { width: 20px; height: 20px; color: var(--red); flex:none; margin-top:1px; }

/* ---------------- marquee trust strip ---------------- */
.trust-strip { background: var(--ink); color:#fff; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.trust-strip__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 30px; padding: 20px 0; }
.trust-item { display:flex; align-items:center; gap:11px; font-weight:700; font-size: 14.5px; letter-spacing:.01em; color:#e7e9ec; }
.trust-item svg { width: 22px; height: 22px; color: var(--red); flex:none; }

/* ---------------- services grid ---------------- */
.grid { display: grid; gap: var(--gap); }
.grid--services { grid-template-columns: repeat(4, 1fr); }
.svc-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px; transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.svc-card::before { content:""; position:absolute; left:0; top:0; height:3px; width:100%; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 54px; height: 54px; border-radius: 13px; display:grid; place-items:center; background: var(--ink); color:#fff; margin-bottom: 16px; }
.svc-icon svg { width: 28px; height: 28px; color: #fff; }
.svc-card h3 { font-size: 18.5px; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 14.6px; margin: 0; }
.svc-card__link { display:inline-flex; align-items:center; gap:6px; margin-top:14px; color: var(--red); font-weight:700; font-size:14px; }
.svc-card__link svg { width:15px; height:15px; transition: transform .18s var(--ease); }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* ---------------- feature / why-us ---------------- */
.feature-split { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.feature-list { display:grid; gap: 18px; margin-top: 8px; }
.feature-list li { display:flex; gap: 15px; align-items:flex-start; }
.feature-list .ic { width: 46px; height:46px; border-radius: 12px; background: var(--red-soft); color: var(--red); display:grid; place-items:center; flex:none; }
.feature-list .ic svg { width: 23px; height:23px; }
.feature-list h4 { font-size: 17px; margin-bottom: 3px; }
.feature-list p { color: var(--muted); margin:0; font-size: 15px; }
.stat-panel { background: var(--ink); color:#fff; border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); box-shadow: var(--shadow-lg); }
.stat-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.stat { }
.stat b { display:block; font-size: clamp(30px, 4vw, 44px); font-weight: 900; letter-spacing:-.03em; color:#fff; }
.stat b .u { color: var(--red); }
.stat span { color: var(--muted-dark); font-size: 14px; font-weight: 600; }
.stat-panel hr { border: none; border-top: 1px solid var(--line-dark); margin: 24px 0; }
.stat-panel .quote { font-size: 16px; color:#d7dbe1; font-style: italic; }
.stat-panel .quote cite { display:block; margin-top:10px; font-style: normal; color: var(--muted-dark); font-size: 13.5px; }

/* ---------------- steps ---------------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); counter-reset: step; }
.step { position:relative; padding: 30px 26px; background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); }
.step__n { counter-increment: step; font-size: 13px; font-weight:800; color: var(--red); letter-spacing:.12em; }
.step__n::before { content: "0" counter(step); }
.step h4 { font-size: 20px; margin: 10px 0 8px; }
.step p { color: var(--muted); margin:0; font-size: 15px; }

/* ---------------- service areas ---------------- */
.areas { display:flex; flex-wrap:wrap; gap: 10px; }
.area-chip {
  display:inline-flex; align-items:center; gap:8px; padding: 10px 16px; border-radius: var(--radius-pill);
  background: var(--surface); border:1px solid var(--line); font-weight:700; font-size: 14.5px; color: var(--ink);
  transition: border-color .18s, background .18s, color .18s;
}
.area-chip svg { width:15px; height:15px; color: var(--red); }
.area-chip:hover { border-color: var(--ink); }
.bg-ink .area-chip { background: rgba(255,255,255,.05); border-color: var(--line-dark); color:#fff; }
.bg-ink .area-chip:hover { background: var(--red); border-color: var(--red); }

/* ---------------- reviews ---------------- */
.reviews-head { display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; gap: 20px; margin-bottom: 26px; }
.rating-badge { display:flex; align-items:center; gap: 14px; }
.rating-badge__score { font-size: 40px; font-weight:900; letter-spacing:-.03em; }
.rating-badge__stars { color: var(--gold); display:flex; gap:2px; }
.rating-badge__stars svg { width:19px; height:19px; }
.rating-badge small { color: var(--muted); font-size: 13.5px; display:block; }

.review-filter { display:flex; flex-wrap:wrap; gap: 8px; margin-bottom: 26px; }
.chip {
  padding: 9px 16px; border-radius: var(--radius-pill); border:1.5px solid var(--line-2);
  background: var(--surface); font-weight:700; font-size: 14px; color: var(--ink);
  display:inline-flex; align-items:center; gap:6px; transition: all .16s var(--ease);
}
.chip .star { color: var(--gold); }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color:#fff; border-color: var(--ink); }
.chip.is-active .star { color: var(--gold); }
.chip__count { font-size: 12px; opacity:.6; }

.reviews-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.review-card {
  background: var(--surface); border:1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display:flex; flex-direction:column; gap: 12px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-2); }
.review-card__top { display:flex; align-items:center; justify-content:space-between; gap: 10px; }
.review-stars { color: var(--gold); display:flex; gap:1px; }
.review-stars svg { width:17px; height:17px; }
.review-stars .off { color: var(--surface-3); }
.review-badge { font-size: 11.5px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color: var(--red); background: var(--red-soft); padding: 4px 9px; border-radius: 6px; }
.review-card p { color: #33383f; font-size: 15px; margin: 0; }
.review-card__by { display:flex; align-items:center; gap: 12px; margin-top: auto; padding-top: 6px; }
.avatar { width: 40px; height:40px; border-radius: 50%; background: var(--ink); color:#fff; display:grid; place-items:center; font-weight:800; font-size: 15px; flex:none; }
.review-card__by b { font-size: 14.5px; display:block; }
.review-card__by span { font-size: 12.5px; color: var(--muted); }
.reviews-empty { grid-column: 1/-1; text-align:center; color: var(--muted); padding: 30px; }

.reviews-cta { text-align:center; margin-top: clamp(28px,4vw,44px); }

/* ---------------- FAQ ---------------- */
.faq { max-width: 820px; margin-inline:auto; display:grid; gap: 12px; }
.faq-item { border:1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow:hidden; }
.faq-q { width:100%; text-align:left; background:none; border:none; padding: 20px 22px; font-size: 17px; font-weight:800; color: var(--ink); display:flex; justify-content:space-between; gap:16px; align-items:center; }
.faq-q .pm { width:26px; height:26px; border-radius:50%; background: var(--surface-2); display:grid; place-items:center; flex:none; transition: background .2s, transform .25s var(--ease); color: var(--red); font-size: 18px; }
.faq-item.open .faq-q .pm { background: var(--red); color:#fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a__in { padding: 0 22px 20px; color: var(--muted); font-size: 15.5px; }

/* ---------------- CTA band ---------------- */
.cta-band { position:relative; overflow:hidden; background: linear-gradient(120deg, var(--red-700), var(--red)); color:#fff; border-radius: var(--radius-lg); padding: clamp(34px,5vw,60px); }
.cta-band::after { content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px; border-radius:50%; background: rgba(255,255,255,.10); }
.cta-band__inner { position:relative; z-index:2; display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap: 24px; }
.cta-band h2 { font-size: clamp(24px,3.4vw,38px); }
.cta-band p { margin:8px 0 0; color: rgba(255,255,255,.9); font-size: 1.05rem; }
.cta-band__btns { display:flex; flex-wrap:wrap; gap: 12px; }

/* ---------------- contact ---------------- */
.contact-split { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,52px); }
.contact-info { display:grid; gap: 18px; align-content:start; }
.contact-row { display:flex; gap: 15px; align-items:flex-start; }
.contact-row .ic { width: 48px; height:48px; border-radius: 12px; background: var(--ink); color:#fff; display:grid; place-items:center; flex:none; }
.contact-row .ic svg { width:23px; height:23px; }
.contact-row h4 { font-size: 15px; margin-bottom: 3px; }
.contact-row a, .contact-row p { color: var(--muted); font-size: 15.5px; margin:0; }
.contact-row a:hover { color: var(--red); }

.form-card { background: var(--surface); border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,3.5vw,36px); box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display:block; font-weight:700; font-size: 13.5px; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border:1.5px solid var(--line-2); border-radius: 11px;
  font-size: 15.5px; font-family: inherit; color: var(--ink); background: var(--surface); transition: border-color .16s, box-shadow .16s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--red); box-shadow: 0 0 0 4px var(--red-soft); }
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 12.5px; color: var(--muted-2); margin: 6px 0 0; }
.form-success { display:none; text-align:center; padding: 20px; }
.form-success.show { display:block; }
.form-success .ok { width: 64px; height:64px; border-radius:50%; background: var(--red-soft); color: var(--red); display:grid; place-items:center; margin: 0 auto 14px; }
.form-success .ok svg { width: 34px; height:34px; }

/* ---------------- footer ---------------- */
.site-footer { background: var(--ink); color: #c3c8cf; padding-top: clamp(48px,6vw,72px); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.site-footer h5 { color:#fff; font-size: 13px; letter-spacing:.14em; text-transform:uppercase; margin: 0 0 16px; font-weight:800; }
.site-footer a { color:#c3c8cf; font-size: 15px; transition: color .15s; }
.site-footer a:hover { color: #fff; }
.footer-links { display:grid; gap: 11px; }
.footer-about p { font-size: 14.5px; color: var(--muted-dark); margin: 14px 0 0; max-width: 34ch; }
.footer-brand { display:flex; align-items:center; gap: 12px; }
.footer-badges { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.footer-badge { font-size:11.5px; font-weight:700; color:#e7e9ec; border:1px solid var(--line-dark); padding:6px 11px; border-radius: var(--radius-pill); }
.footer-contact li { display:flex; gap:10px; align-items:flex-start; margin-bottom: 12px; font-size: 14.5px; }
.footer-contact svg { width:18px; height:18px; color: var(--red); flex:none; margin-top:2px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 22px 0; display:flex; flex-wrap:wrap; gap: 12px 22px; align-items:center; justify-content:space-between; }
.footer-bottom p { margin:0; font-size: 13.5px; color: var(--muted-dark); }
.footer-bottom nav { display:flex; gap: 18px; flex-wrap:wrap; }
.footer-bottom nav a { font-size: 13.5px; color: var(--muted-dark); }
.admin-link { display:inline-flex; align-items:center; gap:7px; color: var(--muted-dark) !important; font-size: 13px; }
.admin-link svg { width:14px; height:14px; }
.admin-link:hover { color:#fff !important; }

/* ---------------- floating "Text Us" widget ---------------- */
.tw-launcher {
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  display:inline-flex; align-items:center; gap:10px; padding: 14px 20px 14px 16px;
  background: var(--red); color:#fff; border:none; border-radius: var(--radius-pill);
  font-weight:800; font-size: 15.5px; box-shadow: 0 14px 34px var(--red-glow);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.tw-launcher:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 44px var(--red-glow); }
.tw-launcher svg { width: 22px; height:22px; }
.tw-launcher .pulse { position:absolute; right:14px; top:10px; width:10px; height:10px; background:#fff; border-radius:50%; box-shadow:0 0 0 0 rgba(255,255,255,.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.6);} 70%{box-shadow:0 0 0 12px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }

.tw-panel {
  position: fixed; right: 22px; bottom: 22px; z-index: 401; width: min(92vw, 372px);
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; transform: translateY(24px) scale(.96); opacity:0; visibility:hidden; transform-origin: bottom right;
  transition: transform .26s var(--ease), opacity .22s, visibility .22s; border:1px solid var(--line);
}
.tw-panel.open { transform: translateY(0) scale(1); opacity:1; visibility:visible; }
.tw-head { background: var(--ink); color:#fff; padding: 18px 20px; display:flex; align-items:center; gap: 13px; }
.tw-head .dot { width: 10px; height:10px; border-radius:50%; background: #33d16b; box-shadow: 0 0 0 4px rgba(51,209,107,.18); flex:none; }
.tw-head b { font-size: 16px; display:block; }
.tw-head small { color: var(--muted-dark); font-size: 12.5px; }
.tw-head .tw-close { margin-left:auto; background: rgba(255,255,255,.1); border:none; color:#fff; width: 34px; height:34px; border-radius: 9px; font-size: 19px; }
.tw-body { padding: 18px 20px; }
.tw-intro { background: var(--surface-2); border-radius: 12px; border-top-left-radius: 3px; padding: 13px 15px; font-size: 14.3px; color: #3a3f47; margin-bottom: 16px; }
.tw-body .field { margin-bottom: 12px; }
.tw-body .field input, .tw-body .field textarea { padding: 11px 13px; font-size: 15px; }
.tw-body textarea { min-height: 84px; }
.tw-foot { font-size: 11.5px; color: var(--muted-2); text-align:center; margin-top: 4px; }
.tw-success { text-align:center; padding: 14px 6px 6px; }
.tw-success .ok { width: 56px; height:56px; border-radius:50%; background: rgba(51,209,107,.14); color:#1eb257; display:grid; place-items:center; margin: 0 auto 12px; }
.tw-success .ok svg { width:30px; height:30px; }
.tw-success h4 { font-size: 18px; margin-bottom:6px; }
.tw-success p { color: var(--muted); font-size: 14px; margin:0; }

/* ---------------- modal (review funnel + generic) ---------------- */
.modal-scrim { position: fixed; inset:0; background: rgba(8,9,11,.62); z-index: 500; display:grid; place-items:center; padding: 20px; opacity:0; visibility:hidden; transition: opacity .24s, visibility .24s; backdrop-filter: blur(3px); }
.modal-scrim.open { opacity:1; visibility:visible; }
.modal {
  width: min(96vw, 460px); background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(.97); transition: transform .26s var(--ease); overflow:hidden; max-height: 92vh; overflow-y:auto;
}
.modal-scrim.open .modal { transform: none; }
.modal__head { padding: 26px 26px 0; text-align:center; }
.modal__head .eyebrow { justify-content:center; }
.modal__head h3 { font-size: 24px; margin: 12px 0 8px; }
.modal__head p { color: var(--muted); font-size: 15px; margin:0; }
.modal__body { padding: 22px 26px 26px; }
.modal__close { position:absolute; top:14px; right:14px; background: var(--surface-2); border:none; width:38px; height:38px; border-radius:10px; font-size:20px; color: var(--ink); }
.modal { position:relative; }

.star-pick { display:flex; justify-content:center; gap: 8px; margin: 18px 0 6px; }
.star-pick button { background:none; border:none; padding: 4px; color: var(--surface-3); transition: transform .12s var(--ease), color .12s; }
.star-pick button svg { width: 42px; height:42px; }
.star-pick button:hover { transform: scale(1.14); }
.star-pick button.lit { color: var(--gold); }
.star-hint { text-align:center; color: var(--muted); font-size: 13.5px; min-height: 20px; margin-bottom: 4px; }

/* ---------------- reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; }
  * { scroll-behavior: auto !important; }
}

/* ---------------- page hero (inner pages) ---------------- */
.page-hero { background: linear-gradient(180deg, #101215, #0b0c0e); color:#fff; position:relative; overflow:hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(700px 340px at 88% -20%, rgba(225,16,33,.28), transparent 60%); }
.page-hero__inner { position:relative; z-index:2; padding: clamp(48px,7vw,88px) 0 clamp(40px,5vw,60px); max-width: 760px; }
.page-hero h1 { font-size: clamp(30px,5vw,52px); font-weight:900; margin: 14px 0 14px; }
.page-hero p { color:#c4c9d0; font-size: 1.1rem; margin:0; }
.breadcrumb { display:flex; gap: 8px; align-items:center; font-size: 13.5px; color: var(--muted-dark); margin-bottom: 6px; }
.breadcrumb a:hover { color:#fff; }
.breadcrumb svg { width: 14px; height:14px; opacity:.6; }

/* ---------------- detailed service blocks ---------------- */
.svc-detail { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,54px); align-items:center; }
.svc-detail:nth-child(even) .svc-detail__media { order: -1; }
.svc-detail__media { background: var(--ink); border-radius: var(--radius-lg); min-height: 260px; display:grid; place-items:center; color:#fff; position:relative; overflow:hidden; box-shadow: var(--shadow-md); }
.svc-detail__media::after { content:""; position:absolute; inset:0; background: radial-gradient(400px 260px at 70% 10%, rgba(225,16,33,.35), transparent 62%); }
.svc-detail__media svg { width: 88px; height:88px; position:relative; z-index:2; color:#fff; opacity:.92; }
.svc-detail h3 { font-size: clamp(22px,3vw,30px); margin-bottom: 12px; }
.svc-detail p { color: var(--muted); }
.svc-detail ul.checks { display:grid; gap:9px; margin-top:14px; }
.svc-detail ul.checks li { display:flex; gap:10px; align-items:flex-start; font-size: 15px; color: var(--ink); }
.svc-detail ul.checks svg { width:20px; height:20px; color: var(--red); flex:none; margin-top:1px; }

/* ---------------- about values ---------------- */
.values { display:grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.value { background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.value .ic { width: 52px; height:52px; border-radius: 13px; background: var(--red-soft); color: var(--red); display:grid; place-items:center; margin-bottom: 14px; }
.value .ic svg { width: 26px; height:26px; }
.value h3 { font-size: 18px; margin-bottom: 7px; }
.value p { color: var(--muted); font-size: 15px; margin:0; }

.prose { max-width: 760px; }
.prose p { color: #3a4048; font-size: 16.5px; }
.prose h2 { font-size: clamp(24px,3.2vw,34px); margin: 28px 0 12px; }

/* ---------------- responsive ---------------- */
@media (max-width: 1020px) {
  .grid--services { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; }
  .feature-split { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail:nth-child(even) .svc-detail__media { order: 0; }
  .values { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .nav, .header-cta .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta { margin-left: auto; }
  .steps { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid--services, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .tw-launcher span.label { display:none; }
  .tw-launcher { padding: 15px; }
  .header-cta .btn span.label { display: none; }
}

/* ---------------- admin console ---------------- */
.admin-body { background: var(--surface-2); min-height: 100vh; }
.admin-topbar { background: var(--ink); color:#fff; border-bottom: 1px solid var(--line-dark); }
.admin-topbar__in { display:flex; align-items:center; gap: 16px; height: 64px; }
.admin-topbar .tag { margin-left: 8px; font-size: 11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:#fff; background: var(--red); padding: 4px 10px; border-radius: var(--radius-pill); }
.admin-topbar .spacer { margin-left:auto; }
.admin-topbar a.view-site { color:#c3c8cf; font-weight:700; font-size:14px; }
.admin-topbar a.view-site:hover { color:#fff; }

.login-wrap { min-height: calc(100vh - 64px); display:grid; place-items:center; padding: 24px; }
.login-card { width: min(96vw, 420px); background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 34px; }
.login-card h1 { font-size: 24px; margin-bottom: 6px; }
.login-card p.sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.login-demo { margin-top: 18px; background: var(--surface-2); border:1px dashed var(--line-2); border-radius: 12px; padding: 14px 16px; font-size: 13.5px; color: var(--muted); }
.login-demo b { color: var(--ink); }
.login-error { display:none; background: var(--red-soft); color: var(--red-700); border-radius: 10px; padding: 11px 14px; font-size: 13.5px; font-weight:600; margin-bottom: 14px; }
.login-error.show { display:block; }

.admin-shell { display:grid; grid-template-columns: 232px 1fr; gap: 26px; padding: 26px 0; align-items:start; }
.admin-side { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 12px; position:sticky; top: 90px; }
.admin-side button {
  width:100%; text-align:left; background:none; border:none; padding: 12px 14px; border-radius: 10px;
  font-weight:700; font-size: 14.5px; color: var(--ink); display:flex; align-items:center; gap: 11px; transition: background .15s, color .15s;
}
.admin-side button svg { width: 18px; height:18px; color: var(--muted); }
.admin-side button:hover { background: var(--surface-2); }
.admin-side button.is-active { background: var(--ink); color:#fff; }
.admin-side button.is-active svg { color:#fff; }
.admin-side .badge { margin-left:auto; background: var(--red); color:#fff; font-size:11px; font-weight:800; border-radius: var(--radius-pill); padding: 2px 8px; }

.admin-main { display:grid; gap: 18px; }
.panel { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: clamp(20px,3vw,28px); }
.panel__head { display:flex; align-items:center; justify-content:space-between; gap: 14px; margin-bottom: 18px; flex-wrap:wrap; }
.panel__head h2 { font-size: 20px; }
.panel__head p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.admin-tabpane { display:none; }
.admin-tabpane.active { display:block; }

.save-bar { position: sticky; bottom: 0; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border-top:1px solid var(--line); padding: 14px 0; display:flex; align-items:center; gap: 14px; margin-top: 6px; }
.save-bar .msg { color: #1eb257; font-weight:700; font-size: 14px; opacity:0; transition: opacity .2s; display:flex; align-items:center; gap:7px; }
.save-bar .msg.show { opacity:1; }
.save-bar .msg svg { width:18px; height:18px; }

.editor-list { display:grid; gap: 14px; }
.editor-item { border:1px solid var(--line); border-radius: 12px; padding: 16px; background: var(--surface-2); }
.editor-item__top { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom: 12px; }
.editor-item__top b { font-size: 14px; color: var(--muted); }
.icon-btn { background:#fff; border:1px solid var(--line-2); width:34px; height:34px; border-radius: 9px; display:grid; place-items:center; color: var(--muted); transition: all .15s; }
.icon-btn:hover { color: var(--red); border-color: var(--red); }
.icon-btn svg { width:16px; height:16px; }
.add-btn { display:inline-flex; align-items:center; gap:8px; }

.subs-table { width:100%; border-collapse: collapse; font-size: 14px; }
.subs-table th { text-align:left; font-size: 11.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--muted-2); padding: 10px 12px; border-bottom: 1px solid var(--line); }
.subs-table td { padding: 13px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.subs-table tr:hover td { background: var(--surface-2); }
.pill { display:inline-block; font-size: 11.5px; font-weight:800; padding: 3px 10px; border-radius: var(--radius-pill); }
.pill--text { background: rgba(51,120,225,.12); color:#2f6fd6; }
.pill--contact { background: var(--red-soft); color: var(--red-700); }
.pill--feedback { background: rgba(255,176,32,.16); color:#b9791a; }
.subs-empty { text-align:center; color: var(--muted); padding: 34px; }
.stars-mini { color: var(--gold); letter-spacing:1px; }

@media (max-width: 820px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { position:static; display:flex; flex-wrap:wrap; }
  .admin-side button { width:auto; }
  .admin-side .badge { margin-left: 6px; }
}
