/* =====================================================================
   IS PLUMBING — Ilgiz Shaikov
   Design system + components. Blue-water modern with flame accents.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  /* Brand palette (from logo) */
  --navy-950: #06122a;
  --navy-900: #0a1c3a;
  --navy-800: #0f2a52;
  --navy-700: #143a6b;
  --brand:    #1B4D89;
  --cyan:     #29ABE2;
  --cyan-300: #7fd1f2;
  --cyan-100: #d6f0fc;
  --orange:   #F7941D;
  --orange-300:#fbbf63;
  --flame:    #ED1C24;

  /* Neutrals */
  --ink:      #0b1b33;
  --ink-soft: #3c4a5f;
  --muted:    #6b7a90;
  --line:     #e4ecf5;
  --paper:    #f4f8fd;
  --white:    #ffffff;

  /* Effects */
  --radius:   18px;
  --radius-lg:26px;
  --shadow-sm: 0 2px 10px rgba(11,27,51,.06);
  --shadow:    0 18px 50px -20px rgba(15,42,82,.28);
  --shadow-lg: 0 40px 80px -30px rgba(10,28,58,.45);
  --glow-cyan: 0 0 60px rgba(41,171,226,.45);
  --glow-orange: 0 14px 36px -10px rgba(247,148,29,.6);

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

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

/* ---- Utility bits ---- */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.eyebrow.on-light { color: var(--brand); }
.eyebrow.on-light::before { background: linear-gradient(90deg, var(--orange), transparent); }

.section { padding: clamp(64px, 9vw, 128px) 0; }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); margin: 1rem 0 1rem; }
.section-head p { color: var(--muted); font-size: 1.075rem; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow::before { display: none; }

/* ---- Buttons ---- */
.btn {
  --pad: .9rem 1.5rem;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: var(--pad);
  border-radius: 999px;
  font-weight: 600; font-size: .98rem;
  cursor: pointer; border: 0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--flame));
  color: #fff;
  box-shadow: var(--glow-orange);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -10px rgba(247,148,29,.75); }
.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), var(--brand));
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(41,171,226,.7);
}
.btn-cyan:hover { transform: translateY(-3px); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); background: var(--navy-800); }
.btn-lg { --pad: 1.05rem 1.9rem; font-size: 1.05rem; }

/* =====================================================================
   HEADER
   ===================================================================== */
.topbar {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700));
  color: #cfe3f6;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem 0; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: #fff; }
.topbar .pill { color: var(--orange-300); font-family: 'IBM Plex Mono', monospace; letter-spacing: .04em; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 46px; width: auto; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand .name { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; line-height: 1; color: #fff; }
.brand .tag { font-family: 'IBM Plex Mono', monospace; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--cyan-300); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-weight: 500; font-size: .96rem; color: rgba(255,255,255,.82); position: relative; padding: .3rem 0; }
.nav a::after { content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background: var(--orange); transition: width .3s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: .9rem; }

/* scrolled / solid state (also default on inner pages once scrolled) */
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 8px 30px -16px rgba(10,28,58,.35);
}
.site-header.scrolled .brand .name { color: var(--ink); }
.site-header.scrolled .nav a { color: var(--ink-soft); }
.site-header.scrolled .nav a:hover, .site-header.scrolled .nav a[aria-current="page"] { color: var(--ink); }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.site-header.scrolled .burger span { background: var(--ink); }

/* =====================================================================
   HERO (with WebGL canvas)
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: -88px;       /* slide under the transparent header */
  padding-top: 88px;
  display: flex; align-items: center;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(41,171,226,.22), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(247,148,29,.14), transparent 55%),
    linear-gradient(160deg, #07142b 0%, #0c2748 48%, #0f3460 100%);
  color: #fff;
  overflow: hidden;
}
/* CSS-only hero ambiance (no WebGL) */
.hero-fx { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-fx .orb { position: absolute; border-radius: 50%; filter: blur(50px); }
.hero-fx .orb-cyan { width: 460px; height: 460px; right: -40px; top: 8%; background: radial-gradient(circle at 32% 30%, rgba(41,171,226,.55), transparent 68%); }
.hero-fx .orb-warm { width: 320px; height: 320px; right: 26%; bottom: -60px; background: radial-gradient(circle at 50% 50%, rgba(247,148,29,.28), transparent 70%); }
.hero-fx .hbub {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(255,255,255,.6), rgba(127,209,242,.16) 55%, rgba(41,171,226,.06) 75%, transparent 78%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 24px rgba(255,255,255,.18);
  animation: heroBob var(--d, 9s) ease-in-out infinite;
}
@keyframes heroBob {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-26px) translateX(8px); }
}
.hero::after { /* subtle vignette + grain feel */
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(120% 80% at 50% 0%, transparent 55%, rgba(4,11,26,.55));
  pointer-events: none;
}
.hero .container { position: relative; z-index: 3; padding-block: 6rem; max-width: 1080px; }
.hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 3.2rem; align-items: center; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  margin: 1.4rem 0 1.3rem;
}
.hero h1 .accent { background: linear-gradient(120deg, var(--cyan-300), var(--orange-300)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.18rem; color: #c4d6ec; max-width: 33ch; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem; }

.trust-row { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.trust-row .stat .n { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 2rem; color: #fff; line-height: 1; }
.trust-row .stat .n .suffix { color: var(--orange); }
.trust-row .stat .l { font-size: .82rem; color: #9fb6d2; margin-top: .35rem; }

/* floating glass card on hero right (over canvas) */
.hero-card {
  justify-self: end;
  width: min(100%, 380px);
  background: rgba(12,30,56,.55);
  border: 1px solid rgba(127,209,242,.28);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}
.hero-card .hc-title { display:flex; align-items:center; gap:.6rem; font-family:'IBM Plex Mono'; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color: var(--cyan-300); margin-bottom: 1rem; }
.hero-card .dot { width: 9px; height: 9px; border-radius: 50%; background: #43e08a; box-shadow: 0 0 0 4px rgba(67,224,138,.22); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(67,224,138,0); } }
.hc-list { list-style: none; display: grid; gap: .85rem; }
.hc-list li { display: flex; align-items: center; gap: .75rem; font-size: .95rem; color: #dbe7f6; }
.hc-list .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(41,171,226,.16); color: var(--cyan-300); flex: none; }
.hc-list svg { width: 18px; height: 18px; }

.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; color: #9fb6d2; font-family:'IBM Plex Mono'; font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; display:flex; flex-direction:column; align-items:center; gap:.5rem; }
.scroll-hint .mouse { width: 22px; height: 36px; border: 2px solid rgba(159,182,210,.6); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content:""; position:absolute; left:50%; top:7px; width:3px; height:7px; background:#9fb6d2; border-radius:2px; transform:translateX(-50%); animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:1; top:7px} 70%{opacity:0; top:16px} 100%{opacity:0} }

/* inner-page hero strip (shorter, same dark treatment) */
.hero-strip {
  position: relative; margin-top: -88px; padding: 160px 0 80px;
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(41,171,226,.22), transparent 60%),
    linear-gradient(160deg, #07142b, #0c2748 60%, #0f3460);
  color: #fff; overflow: hidden;
}
.hero-strip::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 26px 26px; opacity:.5; }
.hero-strip .container { position: relative; }
.hero-strip h1 { color:#fff; font-size: clamp(2.4rem, 5.2vw, 3.8rem); margin: 1rem 0 .8rem; }
.hero-strip p { color:#c4d6ec; max-width: 56ch; font-size: 1.08rem; }
.crumbs { font-family:'IBM Plex Mono'; font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color: var(--cyan-300); }

/* =====================================================================
   SERVICES (tilt cards)
   ===================================================================== */
.grid { display: grid; gap: 1.4rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.tilt { perspective: 1000px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .35s var(--ease), border-color .3s;
  transform-style: preserve-3d;
  will-change: transform;
  height: 100%;
}
.tilt .card:hover { box-shadow: var(--shadow); border-color: rgba(41,171,226,.4); }
.card .layer { transform: translateZ(40px); }

.svc-ic {
  width: 62px; height: 62px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(41,171,226,.16), rgba(27,77,137,.14));
  color: var(--brand);
  margin-bottom: 1.3rem;
  transition: transform .3s var(--ease);
}
.svc-ic svg { width: 30px; height: 30px; }
.tilt .card:hover .svc-ic { transform: translateZ(60px) scale(1.06); }
.card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: .96rem; }
.card .more { display:inline-flex; align-items:center; gap:.4rem; margin-top:1.1rem; color: var(--brand); font-weight:600; font-size:.9rem; }
.card .more svg { width:16px; height:16px; transition: transform .3s; }
.card:hover .more svg { transform: translateX(4px); }

/* accent corner on hover */
.card::before {
  content:""; position:absolute; inset:0; border-radius: inherit;
  background: linear-gradient(135deg, transparent 70%, rgba(247,148,29,.12));
  opacity: 0; transition: opacity .4s; pointer-events:none;
}
.card { position: relative; }
.tilt .card:hover::before { opacity: 1; }

/* detailed service block (services.html) */
.svc-detail { display:grid; grid-template-columns: 64px 1fr; gap:1.4rem; padding:2.2rem; background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.svc-detail .num { font-family:'Bricolage Grotesque'; font-weight:800; font-size:1.6rem; color: var(--cyan); }
.svc-detail h3 { font-size:1.45rem; margin-bottom:.5rem; }
.svc-detail ul { list-style:none; display:grid; grid-template-columns: 1fr 1fr; gap:.5rem .9rem; margin-top:1rem; }
.svc-detail li { display:flex; align-items:center; gap:.5rem; color: var(--ink-soft); font-size:.92rem; }
.svc-detail li svg { width:16px; height:16px; color: var(--cyan); flex:none; }

/* =====================================================================
   WHY US / FEATURES
   ===================================================================== */
.why { background: linear-gradient(180deg, var(--paper), #eaf3fb); }
.feature { display:flex; gap:1rem; }
.feature .fi { width:48px; height:48px; border-radius:14px; flex:none; display:grid; place-items:center; background:#fff; border:1px solid var(--line); color: var(--orange); box-shadow: var(--shadow-sm); }
.feature .fi svg { width:24px; height:24px; }
.feature h4 { font-size:1.12rem; margin-bottom:.3rem; }
.feature p { color: var(--muted); font-size:.94rem; }

/* stat band */
.statband { background: linear-gradient(120deg, var(--navy-900), var(--brand)); color:#fff; border-radius: var(--radius-lg); padding: clamp(2rem,5vw,3.2rem); position:relative; overflow:hidden; }
.statband::before { content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px; border-radius:50%; background: radial-gradient(circle, rgba(41,171,226,.4), transparent 70%); }
.statband .grid { position:relative; }
.statband .stat .n { font-family:'Bricolage Grotesque'; font-weight:800; font-size: clamp(2.4rem,5vw,3.4rem); line-height:1; }
.statband .stat .n .suffix { color: var(--orange); }
.statband .stat .l { color:#bcd2ec; margin-top:.5rem; font-size:.95rem; }

/* =====================================================================
   PROJECTS (real permit portfolio)
   ===================================================================== */
.proj-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; height:100%; display:flex; flex-direction:column; }
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.proj-top { padding:1.4rem 1.5rem; background: linear-gradient(135deg, var(--navy-800), var(--brand)); color:#fff; display:flex; justify-content:space-between; align-items:flex-start; gap:1rem; }
.proj-top .cat { font-family:'IBM Plex Mono'; font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color: var(--cyan-300); }
.proj-top .val { font-family:'Bricolage Grotesque'; font-weight:800; font-size:1.25rem; }
.proj-body { padding:1.4rem 1.5rem; flex:1; }
.proj-body p { color: var(--ink-soft); font-size:.96rem; }
.proj-meta { display:flex; align-items:center; gap:.5rem; margin-top:1rem; font-size:.85rem; color: var(--muted); }
.proj-meta .pin svg { width:15px; height:15px; color: var(--cyan); }
.badge { display:inline-flex; align-items:center; gap:.35rem; font-size:.72rem; font-weight:600; padding:.25rem .6rem; border-radius:999px; }
.badge.done { background: rgba(67,200,120,.14); color:#1a8f4e; }
.badge.issued { background: rgba(41,171,226,.14); color: var(--brand); }

/* =====================================================================
   PROCESS
   ===================================================================== */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap:1.4rem; counter-reset: step; }
.step { position:relative; padding-top:3.9rem; }
.step .sn { position:absolute; top:0; left:0; width:46px; height:46px; border-radius:14px; display:grid; place-items:center; font-family:'Bricolage Grotesque'; font-weight:800; color:#fff; background: linear-gradient(135deg, var(--orange), var(--flame)); box-shadow: var(--glow-orange); }
.step h4 { font-size:1.15rem; margin-bottom:.4rem; }
.step p { color: var(--muted); font-size:.93rem; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quote { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding:2rem; box-shadow: var(--shadow-sm); height:100%; }
.quote .stars { color: var(--orange); letter-spacing:.1em; margin-bottom:1rem; }
.quote blockquote { font-size:1.05rem; color: var(--ink); margin-bottom:1.3rem; }
.quote .who { display:flex; align-items:center; gap:.8rem; }
.quote .av { width:42px; height:42px; border-radius:50%; background: linear-gradient(135deg, var(--cyan), var(--brand)); color:#fff; display:grid; place-items:center; font-weight:700; }
.quote .who .nm { font-weight:600; font-size:.95rem; }
.quote .who .pl { font-size:.82rem; color: var(--muted); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { position:relative; overflow:hidden; background: linear-gradient(120deg, #0a1c3a, var(--brand) 70%, var(--cyan)); color:#fff; }
.cta-band::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 24px 24px; }
.cta-inner { position:relative; display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; padding: clamp(2.4rem,5vw,3.6rem) 0; }
.cta-inner h2 { color:#fff; font-size: clamp(1.9rem,4vw,2.8rem); max-width:18ch; }
.cta-inner p { color:#cfe0f3; margin-top:.6rem; }
.cta-phone { font-family:'Bricolage Grotesque'; font-weight:800; font-size: clamp(1.8rem,3vw,2.4rem); display:inline-flex; align-items:center; gap:.7rem; }
.cta-phone svg { width:30px; height:30px; color: var(--orange); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap:2.2rem; align-items:start; }
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow); }
.field { margin-bottom:1.1rem; }
.field label { display:block; font-size:.85rem; font-weight:600; color: var(--ink-soft); margin-bottom:.4rem; }
.field input, .field select, .field textarea {
  width:100%; padding:.85rem 1rem; border:1.5px solid var(--line); border-radius:12px;
  font-family:inherit; font-size:.96rem; color: var(--ink); background:#fbfdff; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(41,171,226,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field.row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.field.row > div { margin:0; }

.info-card { background: linear-gradient(160deg, var(--navy-900), var(--brand)); color:#fff; border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.2rem); box-shadow: var(--shadow); }
.info-card h3 { color:#fff; margin-bottom:1.3rem; }
.info-row { display:flex; gap:.9rem; padding:1rem 0; border-bottom:1px solid rgba(255,255,255,.1); }
.info-row:last-of-type { border-bottom:0; }
.info-row .ic { width:42px; height:42px; border-radius:12px; flex:none; display:grid; place-items:center; background: rgba(41,171,226,.18); color: var(--cyan-300); }
.info-row .ic svg { width:20px; height:20px; }
.info-row .k { font-size:.78rem; color:#9fb6d2; text-transform:uppercase; letter-spacing:.1em; }
.info-row .v { font-weight:600; font-size:1.02rem; }
.info-row a.v:hover { color: var(--orange-300); }
.emergency-box { margin-top:1.4rem; padding:1.1rem 1.2rem; border-radius:14px; background: linear-gradient(135deg, rgba(237,28,36,.22), rgba(247,148,29,.18)); border:1px solid rgba(247,148,29,.4); display:flex; align-items:center; gap:.8rem; }
.emergency-box svg { width:26px; height:26px; color: var(--orange); flex:none; }
.emergency-box strong { display:block; }
.emergency-box span { font-size:.86rem; color:#cfe0f3; }

.map-placeholder {
  margin-top:2rem; height: 320px; border-radius: var(--radius-lg); overflow:hidden; position:relative;
  background:
    linear-gradient(135deg, rgba(41,171,226,.12), rgba(27,77,137,.16)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(27,77,137,.08) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(27,77,137,.08) 38px 39px),
    #eaf3fb;
  border:1px solid var(--line); display:grid; place-items:center; text-align:center;
}
.map-placeholder .pin { width:54px; height:54px; border-radius:50% 50% 50% 0; transform: rotate(-45deg); background: linear-gradient(135deg, var(--orange), var(--flame)); box-shadow: var(--glow-orange); position:relative; }
.map-placeholder .pin::after { content:""; position:absolute; inset:16px; background:#fff; border-radius:50%; transform: rotate(45deg); }
.map-placeholder .lbl { position:absolute; bottom:18px; font-family:'IBM Plex Mono'; font-size:.78rem; color: var(--brand); background: rgba(255,255,255,.8); padding:.4rem .8rem; border-radius:999px; }

/* about extras */
.area-tags { display:flex; flex-wrap:wrap; gap:.6rem; }
.area-tags span { font-size:.86rem; padding:.45rem .9rem; border-radius:999px; background:#fff; border:1px solid var(--line); color: var(--ink-soft); box-shadow: var(--shadow-sm); }
.area-tags span:hover { border-color: var(--cyan); color: var(--brand); }
.values li { display:flex; gap:.8rem; margin-bottom:1.1rem; }
.values .ck { width:26px; height:26px; border-radius:8px; flex:none; display:grid; place-items:center; background: rgba(67,200,120,.15); color:#1a8f4e; }
.values .ck svg { width:16px; height:16px; }
.badges { display:flex; gap:1rem; flex-wrap:wrap; }
.lic-badge { display:flex; align-items:center; gap:.7rem; padding:1rem 1.3rem; background:#fff; border:1px solid var(--line); border-radius:16px; box-shadow: var(--shadow-sm); }
.lic-badge .ic { width:40px; height:40px; border-radius:10px; display:grid; place-items:center; background: rgba(41,171,226,.14); color: var(--brand); }
.lic-badge .ic svg { width:22px; height:22px; }
.lic-badge .t { font-weight:700; font-size:.95rem; }
.lic-badge .s { font-size:.78rem; color: var(--muted); }

.img-stack { position:relative; }
.img-stack .frame { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background:
  radial-gradient(600px 300px at 70% 10%, rgba(41,171,226,.3), transparent 60%),
  linear-gradient(160deg, var(--navy-900), var(--brand)); display:grid; place-items:center; }
.img-stack .frame .logo-xl { width: 46%; opacity:.92; }
.img-stack .float-badge { position:absolute; bottom:-22px; left:-22px; background:#fff; border-radius:16px; padding:1rem 1.2rem; box-shadow: var(--shadow); display:flex; align-items:center; gap:.7rem; }
.img-stack .float-badge .big { font-family:'Bricolage Grotesque'; font-weight:800; font-size:1.8rem; color: var(--brand); }
.img-stack .float-badge .sm { font-size:.8rem; color: var(--muted); max-width:9ch; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--navy-950); color:#9fb6d2; padding: clamp(3rem,6vw,4.5rem) 0 0; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:2rem; padding-bottom:3rem; }
.site-footer .brand .name { color:#fff; }
.site-footer p { font-size:.92rem; margin-top:1rem; max-width: 32ch; }
.footer-col h5 { color:#fff; font-family:'Bricolage Grotesque'; font-size:1rem; margin-bottom:1rem; }
.footer-col ul { list-style:none; display:grid; gap:.6rem; }
.footer-col a { font-size:.92rem; }
.footer-col a:hover { color: var(--orange-300); }
.footer-contact div { display:flex; gap:.6rem; margin-bottom:.8rem; font-size:.92rem; }
.footer-contact svg { width:18px; height:18px; color: var(--cyan); flex:none; margin-top:2px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:1.5rem 0; display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.84rem; }
.footer-bottom a:hover { color:#fff; }

/* =====================================================================
   BLOG
   ===================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease); height: 100%;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post .thumb {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  display: grid; place-items: center; color: #fff;
}
.post .thumb svg { width: 56px; height: 56px; opacity: .92; position: relative; z-index: 1; }
.post .thumb::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px); background-size: 18px 18px; }
.thumb.g1 { background: linear-gradient(135deg, #0f2a52, #29abe2); }
.thumb.g2 { background: linear-gradient(135deg, #143a6b, #1B4D89); }
.thumb.g3 { background: linear-gradient(135deg, #b6480f, #F7941D); }
.thumb.g4 { background: linear-gradient(135deg, #0a1c3a, #1f8fd0); }
.thumb.g5 { background: linear-gradient(135deg, #7a1d10, #ED1C24); }
.thumb.g6 { background: linear-gradient(135deg, #0f3460, #37c0ee); }
.post .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post .cat { font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); }
.post h3 { font-size: 1.2rem; margin: .6rem 0 .6rem; }
.post p { color: var(--muted); font-size: .94rem; flex: 1; }
.post .post-meta { display: flex; align-items: center; gap: .6rem; margin-top: 1.1rem; font-size: .82rem; color: var(--muted); }
.post .more { color: var(--brand); font-weight: 600; }
.post.featured { grid-column: span 2; }
.post.featured .thumb { aspect-ratio: 21/9; }
.post.featured h3 { font-size: 1.7rem; }

/* tips / recommendations from Ilgiz */
.tips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.tip {
  display: flex; gap: 1rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--cyan);
}
.tip .ti { width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center; background: linear-gradient(135deg, rgba(247,148,29,.16), rgba(237,28,36,.12)); color: var(--orange); }
.tip .ti svg { width: 22px; height: 22px; }
.tip h4 { font-size: 1.05rem; margin-bottom: .3rem; }
.tip p { color: var(--muted); font-size: .9rem; }
.tip.warn { border-left-color: var(--flame); }
.tip.warn .ti { color: var(--flame); }

.pro-quote {
  background: linear-gradient(135deg, var(--navy-900), var(--brand));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem,4vw,3rem);
  display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: center;
}
.pro-quote .av { width: 64px; height: 64px; border-radius: 50%; background: rgba(41,171,226,.2); display: grid; place-items: center; }
.pro-quote .av img { width: 38px; }
.pro-quote blockquote { font-family: 'Bricolage Grotesque'; font-size: clamp(1.2rem,2.4vw,1.7rem); line-height: 1.3; font-weight: 600; }
.pro-quote .by { margin-top: .8rem; color: var(--cyan-300); font-size: .9rem; }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.08s; }
.reveal.d2 { transition-delay:.16s; }
.reveal.d3 { transition-delay:.24s; }
.reveal.d4 { transition-delay:.32s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { justify-self: start; margin-top: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .post.featured { grid-column: span 2; }
}
@media (max-width: 760px) {
  .nav, .header-cta .btn-quote { display: none; }
  .burger { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; gap: 1.2rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-900); padding: 1.6rem 20px; border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav.open a { color:#fff; }
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail ul { grid-template-columns: 1fr; }
  .field.row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .trust-row { gap: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .post.featured { grid-column: span 1; }
  .tips { grid-template-columns: 1fr; }
  .pro-quote { grid-template-columns: 1fr; text-align: center; }
  .pro-quote .av { margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity:1; transform:none; }
}

/* ===================== FUSE-INSPIRED ADDITIONS ===================== */

/* ===== Reviews rating badge ===== */
.rating-line { display:flex; gap:1rem; align-items:center; flex-wrap:wrap; justify-content:center; margin-top:1rem; }
.rating-badge { display:inline-flex; align-items:center; gap:.5rem; padding:.5rem .9rem; border:1px solid var(--line); border-radius:999px; background:var(--white); box-shadow:var(--shadow-sm); text-decoration:none; color:var(--ink); transition:box-shadow .2s var(--ease), transform .2s var(--ease); }
.rating-badge:hover { box-shadow:var(--shadow); transform:translateY(-1px); }
.rating-badge .rb-stars { color:var(--orange); letter-spacing:1px; }
.rating-badge .rb-score { font-weight:800; }
.rating-badge .rb-meta { color:var(--muted); font-size:.92rem; }
.rating-fb { color:var(--brand); font-weight:600; text-decoration:none; }
.rating-fb:hover { text-decoration:underline; }

/* ===== Areas served ===== */
.area-list { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:.6rem; }
.area-list li { background:var(--white); border:1px solid var(--line); border-radius:12px; padding:.7rem 1rem; font-weight:600; color:var(--ink); box-shadow:var(--shadow-sm); }
.area-list li::before { content:"📍 "; }

/* ===== Mass Save band ===== */
.masssave { background:linear-gradient(160deg,var(--navy-800),var(--brand)); color:#fff; padding:2.4rem 0; }
.masssave-inner { display:flex; align-items:center; gap:1.4rem; flex-wrap:wrap; }
.masssave .ms-ic { flex:0 0 auto; width:48px; height:48px; color:var(--cyan); }
.masssave .ms-ic svg { width:48px; height:48px; }
.masssave h3 { color:#fff; margin:0 0 .3rem; }
.masssave p { color:#cfe0f3; margin:0; max-width:60ch; }
.masssave .btn { margin-left:auto; }

/* ===== FAQ ===== */
.faq { max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:.7rem; }
.faq details { background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:0 1.2rem; box-shadow:var(--shadow-sm); }
.faq summary { cursor:pointer; font-weight:700; color:var(--ink); padding:1.1rem 0; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:1.4rem; color:var(--cyan); font-weight:400; line-height:1; }
.faq details[open] summary::after { content:"–"; }
.faq details p { margin:0 0 1.1rem; color:var(--ink-soft); line-height:1.6; }

/* ===== Mobile sticky CTA ===== */
.mobile-cta { position:fixed; left:0; right:0; bottom:0; z-index:60; display:none; gap:.6rem; padding:.6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); background:rgba(255,255,255,.96); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); border-top:1px solid var(--line); box-shadow:0 -8px 24px -12px rgba(10,28,58,.4); transform:translateY(120%); }
.mobile-cta .btn { flex:1; justify-content:center; }
@media (max-width:760px) {
  .mobile-cta { display:flex; }
  body { padding-bottom:72px; }
  .masssave .btn { margin-left:0; }
}

/* ===================== SERVICE ARCHITECTURE / FINDABILITY ===================== */

/* ===== Emergency nav link (red, prominent) ===== */
.nav a.nav-emergency { color:var(--flame); font-weight:700; display:inline-flex; align-items:center; gap:.35rem; }
.nav a.nav-emergency svg { width:16px; height:16px; }
.nav a.nav-emergency::after { content:""; }
.nav a.nav-emergency:hover { color:#c4151c; }

/* ===== Quick-access chips ("What do you need?") ===== */
.quick-access { background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.qa-inner { padding:1.4rem 0; }
.qa-head { font-family:'IBM Plex Mono',monospace; font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin:0 0 .9rem; }
.qa-row { display:flex; flex-wrap:wrap; gap:.6rem; }
.qa-chip { display:inline-flex; align-items:center; gap:.5rem; padding:.6rem 1rem; border:1px solid var(--line); border-radius:999px; background:var(--white); color:var(--ink); font-weight:600; text-decoration:none; box-shadow:var(--shadow-sm); transition:transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease); }
.qa-chip svg { width:18px; height:18px; color:var(--cyan); }
.qa-chip:hover { transform:translateY(-2px); box-shadow:var(--shadow); border-color:var(--cyan-300); }
.qa-chip.qa-emergency { background:var(--flame); border-color:var(--flame); color:#fff; }
.qa-chip.qa-emergency svg { color:#fff; }
.qa-chip.qa-emergency:hover { background:#c4151c; border-color:#c4151c; }

/* ===== Services hub card grid ===== */
.svc-hub { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.svc-hub-card { display:flex; flex-direction:column; align-items:flex-start; gap:.7rem; padding:1.6rem; background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); text-decoration:none; color:var(--ink); transition:transform .2s var(--ease), box-shadow .2s var(--ease); }
.svc-hub-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.svc-hub-card .svc-ic { margin:0; }
.svc-hub-card h3 { margin:0; font-size:1.25rem; }
.svc-hub-card p { margin:0; color:var(--ink-soft); flex:1; }
.svc-hub-card .more { margin-top:.4rem; color:var(--brand); font-weight:700; display:inline-flex; align-items:center; gap:.35rem; }
.svc-hub-card .more svg { width:18px; height:18px; }
.svc-hub-card.is-emergency { background:linear-gradient(160deg,#7a0f14,var(--flame)); border:0; color:#fff; }
.svc-hub-card.is-emergency h3, .svc-hub-card.is-emergency .more { color:#fff; }
.svc-hub-card.is-emergency p { color:#ffd9da; }
.svc-hub-card.is-emergency .svc-ic { background:rgba(255,255,255,.16); color:#fff; }

/* ===== Related services (interlinking) ===== */
.related-services { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; }
.rel-card { display:flex; align-items:center; gap:.8rem; padding:1rem 1.2rem; background:var(--white); border:1px solid var(--line); border-radius:var(--radius); text-decoration:none; color:var(--ink); font-weight:600; box-shadow:var(--shadow-sm); transition:transform .18s var(--ease), box-shadow .18s var(--ease); }
.rel-card:hover { transform:translateY(-2px); box-shadow:var(--shadow); }
.rel-card .svc-ic { width:40px; height:40px; margin:0; flex:0 0 auto; }
.rel-card .svc-ic svg { width:20px; height:20px; }

/* ===== Emergency page scenario blocks ===== */
.hero-strip.emergency { background:linear-gradient(160deg,var(--navy-950),#5a0a0e); }
.hero-strip.emergency .crumbs, .hero-strip.emergency h1 .accent { color:var(--orange-300); }
.emg-call-bar { display:flex; flex-wrap:wrap; align-items:center; gap:1rem; padding:1.2rem 1.4rem; background:var(--flame); color:#fff; border-radius:var(--radius-lg); box-shadow:var(--glow-orange); }
.emg-call-bar strong { font-size:1.15rem; }
.emg-call-bar .btn { margin-left:auto; }
.emg-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.4rem; }
.emg-card { padding:1.5rem; background:var(--white); border:1px solid var(--line); border-left:4px solid var(--flame); border-radius:var(--radius); box-shadow:var(--shadow-sm); }
.emg-card h3 { margin:0 0 .6rem; display:flex; align-items:center; gap:.5rem; }
.emg-card h3 svg { width:22px; height:22px; color:var(--flame); }
.emg-card ol { margin:.4rem 0 0; padding-left:1.1rem; color:var(--ink-soft); line-height:1.6; }
.emg-card ol li { margin-bottom:.3rem; }

@media (max-width:900px) {
  .svc-hub { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px) {
  .svc-hub { grid-template-columns:1fr; }
  .emg-grid { grid-template-columns:1fr; }
  .emg-call-bar .btn { margin-left:0; width:100%; justify-content:center; }
}

/* ===================== BLOG ARTICLE (prose) ===================== */
.article-body { max-width:760px; margin:0 auto; }
.article-meta { display:flex; flex-wrap:wrap; align-items:center; gap:.6rem; color:var(--muted); font-size:.92rem; margin-bottom:1.4rem; }
.article-meta .cat { color:var(--brand); font-weight:700; }
.article-byline { display:flex; align-items:center; gap:.7rem; padding:1rem 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); margin:0 0 2rem; }
.article-byline .av { width:42px; height:42px; border-radius:50%; background:linear-gradient(160deg,var(--cyan),var(--brand)); display:grid; place-items:center; color:#fff; font-weight:800; flex:0 0 auto; }
.article-byline .who { font-weight:700; color:var(--ink); }
.article-byline .role { color:var(--muted); font-size:.9rem; }
.article-body h2 { font-size:clamp(1.4rem,2.6vw,1.9rem); margin:2.2rem 0 .8rem; color:var(--ink); }
.article-body h3 { font-size:1.2rem; margin:1.6rem 0 .6rem; color:var(--ink); }
.article-body p { color:var(--ink-soft); line-height:1.75; margin:0 0 1.1rem; }
.article-body ul, .article-body ol { color:var(--ink-soft); line-height:1.7; margin:0 0 1.2rem; padding-left:1.3rem; }
.article-body li { margin-bottom:.5rem; }
.article-body a { color:var(--brand); font-weight:600; }
.article-body strong { color:var(--ink); }
.callout { display:flex; gap:.9rem; padding:1.1rem 1.3rem; background:var(--cyan-100); border-left:4px solid var(--cyan); border-radius:12px; margin:1.6rem 0; }
.callout.warn { background:#fff1e6; border-left-color:var(--orange); }
.callout svg { width:24px; height:24px; color:var(--brand); flex:0 0 auto; }
.callout.warn svg { color:var(--orange); }
.callout p { margin:0; color:var(--ink-soft); }
.article-cta { margin-top:2.2rem; padding:1.4rem 1.6rem; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); display:flex; flex-wrap:wrap; align-items:center; gap:1rem; }
.article-cta p { margin:0; font-weight:600; color:var(--ink); }
.article-cta .btn { margin-left:auto; }
@media (max-width:600px) { .article-cta .btn { margin-left:0; width:100%; justify-content:center; } }
