/* ============================================================
   C.D. Gas & Electric Ltd — design system
   Bold & energetic · navy base · flame-orange + electric-blue
   ============================================================ */

:root {
  /* base */
  --navy-950: #05070F;
  --navy-900: #070A14;
  --navy-850: #0A0F1F;
  --navy-800: #0D1326;
  --navy-700: #131B33;
  --navy-600: #1B2545;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* text */
  --text: #EDF1FB;
  --text-dim: #B5C0DC;
  --muted: #8A97B8;
  --muted-2: #5E6B8C;

  /* accents */
  --orange: #FF6A2B;
  --orange-bright: #FF8A3D;
  --orange-soft: #FFB077;
  --blue: #2F7BFF;
  --blue-bright: #4DA3FF;
  --cyan: #41E6FF;

  /* gradients */
  --flame: linear-gradient(135deg, #FF8A3D 0%, #FF5E1E 100%);
  --electric: linear-gradient(135deg, #4DA3FF 0%, #2F6BFF 100%);
  --flame-electric: linear-gradient(100deg, #FF8A3D 0%, #FF5E1E 38%, #2F7BFF 78%, #41E6FF 100%);

  /* effects */
  --glow-orange: 0 0 60px rgba(255, 106, 43, 0.35);
  --glow-blue: 0 0 60px rgba(47, 123, 255, 0.35);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow-card: 0 24px 60px -28px rgba(0, 0, 0, 0.85);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: rgba(255, 106, 43, 0.35); color: #fff; }

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { position: relative; padding-block: clamp(72px, 11vw, 150px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange-soft);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; border-radius: 2px;
  background: var(--flame);
}
.eyebrow.blue { color: var(--blue-bright); }
.eyebrow.blue::before { background: var(--electric); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; }

.section-title {
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  margin-top: 18px;
  text-wrap: balance;
}
.section-lead {
  margin-top: 20px;
  max-width: 56ch;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.grad-text {
  background: var(--flame-electric);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-flame {
  background: var(--flame);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: var(--flame); color: #fff;
  box-shadow: 0 12px 30px -10px rgba(255, 94, 30, 0.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(255, 94, 30, 0.9); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04); color: var(--text);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--blue-bright); box-shadow: var(--glow-blue); }
.btn-blue { background: var(--electric); color: #fff; box-shadow: 0 12px 30px -10px rgba(47, 107, 255, 0.7); }
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(47, 107, 255, 0.9); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.45s var(--ease), backdrop-filter 0.45s, border-color 0.45s, padding 0.45s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(7, 10, 20, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 18px; }
.header.scrolled .header-inner { padding-block: 12px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--navy-700); border: 1px solid var(--line-strong);
  font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.04em;
  position: relative; overflow: hidden;
}
.brand-mark span { position: relative; z-index: 1; }
.brand-mark::before {
  content: ""; position: absolute; inset: 0;
  background: var(--flame-electric); opacity: 0.9;
  -webkit-mask: linear-gradient(#000 0 0); /* keep gradient behind text via blend */
}
.brand-mark b { color: #fff; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em; line-height: 1.1; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.93rem; font-weight: 600; color: var(--text-dim); position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--flame); border-radius: 2px; transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  color: var(--text);
}
.header-phone .ph-ic {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 106, 43, 0.12); border: 1px solid rgba(255, 106, 43, 0.3);
  color: var(--orange-bright);
}
.header-phone .ph-ic svg { width: 17px; height: 17px; }
.header-phone:hover .ph-ic { background: rgba(255, 106, 43, 0.22); }

.burger { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03); }
.burger span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto; border-radius: 2px; transition: 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
/* animated aurora blobs */
.aurora { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; will-change: transform; }
.aurora.a1 { width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(255,94,30,0.85), transparent 65%); top: -22vw; left: -12vw; animation: drift1 22s var(--ease) infinite alternate; }
.aurora.a2 { width: 55vw; height: 55vw; background: radial-gradient(circle, rgba(47,123,255,0.8), transparent 65%); top: -8vw; right: -16vw; animation: drift2 26s var(--ease) infinite alternate; }
.aurora.a3 { width: 48vw; height: 48vw; background: radial-gradient(circle, rgba(65,230,255,0.5), transparent 68%); bottom: -22vw; left: 22vw; animation: drift3 30s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate(14vw, 10vw) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-12vw, 12vw) scale(1.1); } }
@keyframes drift3 { to { transform: translate(10vw, -10vw) scale(1.2); } }

.hero-bg::after { /* vignette + bottom fade to next section */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(110% 80% at 50% 0%, transparent 40%, rgba(7,10,20,0.5) 100%),
    linear-gradient(180deg, transparent 55%, var(--navy-900) 99%);
}
.hero-grid { /* faint engineering grid */
  position: absolute; inset: 0; opacity: 0.4;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask: radial-gradient(80% 60% at 50% 40%, #000, transparent 80%);
          mask: radial-gradient(80% 60% at 50% 40%, #000, transparent 80%);
}

.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-grid-layout { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 48px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 8px 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px); font-size: 0.86rem; font-weight: 600; color: var(--text-dim);
}
.hero-badge .stars { color: var(--orange-bright); letter-spacing: 1px; }
.hero-badge .pill {
  background: var(--flame); color: #fff; font-family: var(--font-display);
  padding: 4px 12px; border-radius: 999px; font-size: 0.78rem; letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  margin-top: 26px; text-wrap: balance;
}
.hero-sub {
  margin-top: 26px; font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  color: var(--text-dim); max-width: 42ch;
}
.hero-sub b { color: var(--text); font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 40px; }
.hero-meta-item { display: flex; align-items: center; gap: 11px; font-size: 0.92rem; color: var(--text-dim); font-weight: 600; }
.hero-meta-item .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); flex-shrink: 0; }
.hero-meta-item .dot.live { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(65,230,255,0.6); } 50% { box-shadow: 0 0 0 8px rgba(65,230,255,0); } }

/* hero side card — gas-safe / open now */
.hero-card {
  position: relative; padding: 28px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(27,37,69,0.7), rgba(13,19,38,0.5));
  border: 1px solid var(--line-strong); backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card); overflow: hidden;
}
.hero-card::before { content: ""; position: absolute; inset: 0; background: var(--flame-electric); opacity: 0.07; }
.hero-card-top { display: flex; align-items: center; gap: 14px; position: relative; }
.gs-logo {
  width: 54px; height: 54px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg,#FFC53D,#FF9E1E); color: #1a1300;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 0.62rem; text-align: center; line-height: 1.05;
  box-shadow: 0 8px 22px -8px rgba(255,158,30,0.7);
}
.hero-card h3 { font-size: 1.16rem; }
.hero-card .sub { font-size: 0.84rem; color: var(--muted); font-weight: 600; }
.hero-card-divider { height: 1px; background: var(--line); margin: 22px 0; }
.open-row { display: flex; align-items: center; justify-content: space-between; }
.open-now { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; color: #5BE8A0; }
.open-now .dot { width: 9px; height: 9px; border-radius: 50%; background: #5BE8A0; box-shadow: 0 0 12px #5BE8A0; animation: pulse-g 2s infinite; }
@keyframes pulse-g { 0%,100% { box-shadow: 0 0 0 0 rgba(91,232,160,0.6); } 50% { box-shadow: 0 0 0 7px rgba(91,232,160,0); } }
.open-hours { font-size: 0.84rem; color: var(--text-dim); font-weight: 600; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  font-family: var(--font-display); font-weight: 600;
}
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid var(--line-strong); border-radius: 14px; position: relative; }
.scroll-cue .mouse::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; border-radius: 2px; background: var(--orange-bright); animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  position: relative; z-index: 5;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, var(--navy-850), var(--navy-900));
}
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.trust-item {
  padding: 40px 26px; text-align: center; position: relative;
}
.trust-item + .trust-item::before { content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px; background: var(--line); }
.trust-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1; letter-spacing: -0.03em; }
.trust-num .unit { font-size: 0.5em; color: var(--orange-soft); margin-left: 2px; }
.trust-label { margin-top: 10px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }
.trust-stars { color: var(--orange-bright); font-size: 0.9rem; letter-spacing: 2px; margin-top: 6px; }
.trust-badge-ic { width: 40px; height: 40px; margin: 0 auto 8px; color: var(--cyan); }
.trust-badge-ic svg { width: 100%; height: 100%; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.services-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  position: relative; padding: 32px 30px 34px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s;
  background: radial-gradient(120% 100% at 0% 0%, rgba(255,106,43,0.12), transparent 55%);
}
.service-card::after { /* top accent line */
  content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: var(--flame-electric); transition: width 0.55s var(--ease);
}
.service-card:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: var(--shadow-card); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { width: 100%; }
.service-ic {
  width: 60px; height: 60px; border-radius: 15px; display: grid; place-items: center;
  background: var(--navy-700); border: 1px solid var(--line-strong); color: var(--orange-bright);
  transition: transform 0.5s var(--ease), color 0.4s, background 0.4s;
}
.service-ic svg { width: 30px; height: 30px; }
.service-card:hover .service-ic { transform: translateY(-4px) rotate(-6deg); color: #fff; background: var(--flame); }
.service-card:nth-child(even):hover .service-ic { background: var(--electric); }
.service-card h3 { font-size: 1.28rem; margin-top: 24px; }
.service-card p { margin-top: 12px; color: var(--text-dim); font-size: 0.97rem; }
.service-tag { margin-top: 20px; display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 700; color: var(--orange-soft); font-family: var(--font-display); letter-spacing: 0.03em; }
.service-tag svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.service-card:hover .service-tag svg { transform: translateX(5px); }

/* ============================================================
   WHY US
   ============================================================ */
.why { background: linear-gradient(180deg, var(--navy-900), var(--navy-850)); }
.why-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.why-sticky { position: sticky; top: 110px; }
.why-stat {
  margin-top: 32px; padding: 26px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,106,43,0.1), rgba(47,123,255,0.08));
  border: 1px solid var(--line-strong);
}
.why-stat .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,4.5vw,3.4rem); line-height: 1; }
.why-stat .lbl { margin-top: 10px; color: var(--text-dim); font-weight: 600; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item {
  display: flex; gap: 20px; padding: 26px 28px; border-radius: var(--radius);
  background: var(--navy-800); border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.4s, background 0.4s;
}
.why-item:hover { transform: translateX(8px); border-color: var(--line-strong); background: var(--navy-700); }
.why-num { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--orange-bright); flex-shrink: 0; width: 34px; }
.why-item h3 { font-size: 1.18rem; }
.why-item p { margin-top: 8px; color: var(--text-dim); font-size: 0.97rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--navy-850); overflow: hidden; }
.reviews-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.google-badge {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 24px;
  padding: 12px 22px; border-radius: 999px; background: var(--navy-800); border: 1px solid var(--line-strong);
}
.google-badge .g { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.google-badge .g span:nth-child(1){color:#4285F4}.google-badge .g span:nth-child(2){color:#EA4335}.google-badge .g span:nth-child(3){color:#FBBC05}.google-badge .g span:nth-child(4){color:#4285F4}.google-badge .g span:nth-child(5){color:#34A853}.google-badge .g span:nth-child(6){color:#EA4335}
.google-badge .rate { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.google-badge .stars { color: var(--orange-bright); letter-spacing: 2px; }
.google-badge .count { color: var(--muted); font-size: 0.88rem; font-weight: 600; }

.review-stage { position: relative; max-width: 860px; margin: 56px auto 0; min-height: 340px; }
.review-card {
  position: absolute; inset: 0; opacity: 0; transform: translateY(28px) scale(0.98);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
  padding: clamp(32px, 5vw, 52px); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.review-card.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.review-quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.6; color: var(--orange); opacity: 0.5; }
.review-stars { color: var(--orange-bright); letter-spacing: 3px; font-size: 1.05rem; margin-top: 4px; }
.review-text { font-size: clamp(1.15rem, 2.1vw, 1.55rem); font-family: var(--font-display); font-weight: 500; line-height: 1.38; margin-top: 22px; letter-spacing: -0.01em; text-wrap: pretty; flex: 1; }
.review-author { display: flex; align-items: center; gap: 15px; margin-top: 30px; }
.review-avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff; flex-shrink: 0; }
.review-author .name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.review-author .meta { font-size: 0.84rem; color: var(--muted); font-weight: 600; }
.review-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 38px; }
.review-arrow { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--navy-800); display: grid; place-items: center; color: var(--text); transition: 0.35s var(--ease); }
.review-arrow:hover { background: var(--navy-700); border-color: var(--blue-bright); color: var(--blue-bright); transform: scale(1.08); }
.review-arrow svg { width: 20px; height: 20px; }
.review-dots { display: flex; gap: 10px; }
.review-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--line-strong); transition: 0.4s var(--ease); }
.review-dot.active { width: 30px; background: var(--flame); }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area { background: linear-gradient(180deg, var(--navy-850), var(--navy-900)); }
.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.area-towns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.town-chip {
  padding: 10px 18px; border-radius: 999px; background: var(--navy-800); border: 1px solid var(--line);
  font-weight: 600; font-size: 0.92rem; color: var(--text-dim); transition: 0.35s var(--ease);
}
.town-chip:hover { border-color: var(--orange); color: var(--text); transform: translateY(-2px); }
.town-chip.home { background: var(--flame); color: #fff; border-color: transparent; }

.radar {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(circle at 50% 50%, var(--navy-700), var(--navy-900) 75%);
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-card);
}
.radar-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px solid var(--line); border-radius: 50%; }
.radar-ring.r1 { width: 25%; height: 25%; }
.radar-ring.r2 { width: 50%; height: 50%; }
.radar-ring.r3 { width: 75%; height: 75%; }
.radar-ring.r4 { width: 100%; height: 100%; border-color: transparent; }
.radar-cross { position: absolute; background: var(--line); }
.radar-cross.h { top: 50%; left: 8%; right: 8%; height: 1px; }
.radar-cross.v { left: 50%; top: 8%; bottom: 8%; width: 1px; }
.radar-sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0deg, rgba(65,230,255,0.18) 40deg, transparent 70deg); animation: sweep 6s linear infinite; }
@keyframes sweep { to { transform: rotate(360deg); } }
.radar-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-100%);
  display: flex; flex-direction: column; align-items: center; z-index: 3;
}
.radar-pin .glyph { width: 30px; height: 30px; color: var(--orange-bright); filter: drop-shadow(0 4px 10px rgba(255,94,30,0.7)); }
.radar-pin .pin-label { margin-top: 2px; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; background: var(--navy-900); border: 1px solid var(--orange); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.radar-ping { position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; border-radius: 50%; transform: translate(-50%,-50%); border: 2px solid var(--orange); animation: ping 2.6s ease-out infinite; }
.radar-ping.d2 { animation-delay: 1.3s; }
@keyframes ping { 0% { width: 14px; height: 14px; opacity: 0.9; } 100% { width: 70%; height: 70%; opacity: 0; } }
.radar-town { position: absolute; font-size: 0.72rem; font-weight: 600; color: var(--muted); transform: translate(-50%,-50%); }
.radar-town .d { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); display: inline-block; margin-right: 5px; vertical-align: middle; box-shadow: 0 0 8px var(--blue-bright); }

/* ============================================================
   MEET DAMIAN
   ============================================================ */
.meet { background: var(--navy-900); }
.meet-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.meet-portrait {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-850));
  border: 1px solid var(--line-strong); display: grid; place-items: center;
}
.meet-portrait::before { content: ""; position: absolute; inset: 0; background: var(--flame-electric); opacity: 0.12; }
.meet-monogram {
  position: relative; font-family: var(--font-display); font-weight: 700; font-size: clamp(6rem, 16vw, 11rem);
  line-height: 1; letter-spacing: -0.05em;
  background: var(--flame-electric); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.meet-portrait .floating-tag {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  padding: 16px 20px; border-radius: 14px; backdrop-filter: blur(14px);
  background: rgba(7,10,20,0.6); border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.meet-portrait .floating-tag .role { font-family: var(--font-display); font-weight: 700; }
.meet-portrait .floating-tag .role small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.76rem; color: var(--muted); }
.meet-portrait .gs-chip { font-size: 0.72rem; font-weight: 700; font-family: var(--font-display); color: #1a1300; background: linear-gradient(135deg,#FFC53D,#FF9E1E); padding: 6px 11px; border-radius: 8px; }
.meet-quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem,2.6vw,1.9rem); line-height: 1.32; margin-top: 26px; text-wrap: pretty; }
.meet-sign { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.meet-sign .nm { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.meet-points { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.meet-point { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text-dim); font-size: 0.96rem; }
.meet-point .tick { width: 26px; height: 26px; border-radius: 50%; background: rgba(91,232,160,0.14); color: #5BE8A0; display: grid; place-items: center; flex-shrink: 0; }
.meet-point .tick svg { width: 14px; height: 14px; }

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact { position: relative; background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); overflow: hidden; }
.contact::before { content: ""; position: absolute; top: -30%; right: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(255,94,30,0.16), transparent 65%); filter: blur(40px); }
.contact::after { content: ""; position: absolute; bottom: -30%; left: -10%; width: 45vw; height: 45vw; background: radial-gradient(circle, rgba(47,123,255,0.16), transparent 65%); filter: blur(40px); }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: start; }
.contact-info-list { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; }
.contact-row {
  display: flex; align-items: center; gap: 18px; padding: 20px 22px; border-radius: var(--radius);
  background: rgba(255,255,255,0.025); border: 1px solid var(--line); transition: 0.4s var(--ease);
}
.contact-row:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.05); }
.contact-row .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: var(--navy-700); border: 1px solid var(--line-strong); color: var(--orange-bright); }
.contact-row .ic svg { width: 21px; height: 21px; }
.contact-row .lbl { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-row .val { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; margin-top: 2px; }
.contact-row.phone .ic { background: var(--flame); color: #fff; border-color: transparent; }
.contact-row.phone .val { font-size: 1.32rem; }

/* form */
.quote-form {
  padding: clamp(28px, 4vw, 40px); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.quote-form h3 { font-size: 1.5rem; }
.quote-form .fsub { color: var(--text-dim); margin-top: 8px; font-size: 0.95rem; }
.field { margin-top: 20px; position: relative; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; color: var(--text-dim); margin-bottom: 8px; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; font: inherit; font-size: 1rem;
  background: var(--navy-950); border: 1px solid var(--line-strong); color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.field textarea { resize: vertical; min-height: 104px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%238A97B8' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,106,43,0.15); background: var(--navy-900); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #FF5A5A; box-shadow: 0 0 0 4px rgba(255,90,90,0.12); }
.field .err { color: #FF8A8A; font-size: 0.8rem; margin-top: 6px; font-weight: 600; display: none; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form .btn { width: 100%; margin-top: 26px; padding-block: 17px; }
.form-note { text-align: center; margin-top: 16px; font-size: 0.82rem; color: var(--muted); }

.form-success {
  position: absolute; inset: 0; z-index: 5; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 40px; background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  opacity: 0; visibility: hidden; transform: scale(0.98); transition: 0.5s var(--ease);
}
.form-success.show { opacity: 1; visibility: visible; transform: scale(1); }
.form-success .check { width: 80px; height: 80px; border-radius: 50%; background: rgba(91,232,160,0.14); color: #5BE8A0; display: grid; place-items: center; margin-bottom: 22px; animation: pop 0.5s var(--ease); }
.form-success .check svg { width: 40px; height: 40px; }
@keyframes pop { 0% { transform: scale(0); } 70% { transform: scale(1.12); } 100% { transform: scale(1); } }
.form-success h3 { font-size: 1.6rem; }
.form-success p { color: var(--text-dim); margin-top: 12px; max-width: 34ch; }
.form-success .again { margin-top: 22px; color: var(--orange-bright); font-weight: 700; font-family: var(--font-display); }

/* footer bottom */
.footer-bottom { border-top: 1px solid var(--line); margin-top: clamp(60px,8vw,90px); padding-top: 40px; padding-bottom: 30px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-links a { font-size: 0.9rem; color: var(--text-dim); font-weight: 600; transition: color 0.25s; }
.footer-links a:hover { color: var(--orange-bright); }
.footer-legal { width: 100%; margin-top: 24px; font-size: 0.82rem; color: var(--muted-2); }

/* ============================================================
   STICKY MOBILE CALL
   ============================================================ */
.sticky-call {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  display: none; align-items: center; justify-content: center; gap: 10px;
  padding: 17px; border-radius: 16px; background: var(--flame); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem;
  box-shadow: 0 16px 40px -12px rgba(255,94,30,0.8); transform: translateY(140%); transition: transform 0.5s var(--ease);
}
.sticky-call.show { transform: translateY(0); }
.sticky-call svg { width: 21px; height: 21px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.4s; }
.reveal-scale { opacity: 0; transform: translateY(40px) scale(0.96); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid-layout { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-layout, .area-layout, .meet-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-sticky { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(4)::before, .trust-item:nth-child(1)::before { display: none; }
  .meet-portrait { max-width: 420px; }
}

@media (max-width: 720px) {
  .nav-links, .header-phone { display: none; }
  .burger { display: block; }
  .header-cta .btn-ghost { display: none; }
  .sticky-call { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item::before { display: none !important; }
  .trust-item { border: 1px solid var(--line); border-radius: 12px; margin: 6px; padding: 26px 16px; }
  .trust-grid { padding: 10px; gap: 4px; }
  .meet-points, .form-row { grid-template-columns: 1fr; }
  .review-controls { gap: 16px; }
  body { font-size: 16px; }

  /* mobile menu */
  .nav.mobile-open { display: flex; }
}

/* mobile slide menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(5,7,15,0.96); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mm-phone { margin-top: 30px; }
