/* Core Services Electrical & Air — Landing page */

:root {
  --fire: #f37920;
  --fire-deep: #d85d0a;
  --fire-soft: #ffb37a;
  --ice: #3a8fd4;
  --ice-deep: #1a6db0;
  --ice-soft: #8ec3ea;
  --ink: #15192a;
  --ink-2: #232a3f;
  --ink-3: #3a4360;
  --muted: #6b7388;
  --line: #e4e2dc;
  --cream: #f7f4ee;
  --cream-2: #efece4;
  --white: #ffffff;

  --font-display: 'Archivo', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo span small {
  display: block;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 4px;
  font-weight: 500;
  font-size: 14px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-3);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: rgba(0,0,0,.04); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s, background .15s;
}
.nav-cta:hover { background: var(--fire); transform: translateY(-1px); }

/* mobile */
.nav-burger { display: none; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; align-items: center; gap: 8px; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 8% 110%, rgba(243,121,32,.55) 0%, transparent 60%),
    radial-gradient(55% 70% at 95% -10%, rgba(58,143,212,.5) 0%, transparent 60%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 50% 40%, #000 30%, transparent 80%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  padding-top: clamp(56px, 9vw, 112px);
  padding-bottom: clamp(72px, 11vw, 144px);
  align-items: center;
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire-soft);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74,222,128,.18); }
  50% { box-shadow: 0 0 0 8px rgba(74,222,128,.06); }
}
.hero h1 {
  margin: 18px 0 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero h1 .fire {
  background: linear-gradient(180deg, #ffb37a 0%, var(--fire) 60%, var(--fire-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .ice {
  background: linear-gradient(180deg, #b6dafa 0%, var(--ice) 60%, var(--ice-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .amp {
  font-weight: 400;
  font-style: italic;
  opacity: 0.5;
  font-family: 'Archivo', serif;
  margin: 0 8px;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s, background .15s, box-shadow .15s;
}
.btn-fire {
  background: var(--fire);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(243,121,32,.6),
              0 0 0 1px rgba(255,255,255,.08) inset;
}
.btn-fire:hover { background: var(--fire-deep); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-arrow { transition: transform .15s; }
.btn:hover .btn-arrow { transform: translateX(2px); }

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-strip-item .k {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.hero-strip-item .v {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

/* hero visual */
.hero-vis {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-left: auto;
}
.hero-vis-card {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    radial-gradient(80% 70% at 30% 10%, rgba(243,121,32,.45), transparent 60%),
    radial-gradient(80% 70% at 75% 95%, rgba(58,143,212,.55), transparent 60%),
    linear-gradient(135deg, #1b2138 0%, #0e1326 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
  overflow: hidden;
}
.hero-vis-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-vis img.ball {
  position: absolute;
  width: 64%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, -52%); }
  50% { transform: translate(-50%, -48%); }
}
.hero-vis-tag {
  position: absolute;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
}
.hero-vis-tag .ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 16px;
}
.hero-vis-tag.t1 { top: 8%; left: -4%; }
.hero-vis-tag.t1 .ic { background: rgba(243,121,32,.16); color: var(--fire-deep); }
.hero-vis-tag.t2 { top: 44%; right: -8%; }
.hero-vis-tag.t2 .ic { background: rgba(58,143,212,.16); color: var(--ice-deep); }
.hero-vis-tag.t3 { bottom: 8%; left: 6%; }
.hero-vis-tag.t3 .ic { background: rgba(34,197,94,.16); color: #15803d; }

/* ─── SECTION HEADERS ─── */
.sec {
  padding-block: clamp(72px, 10vw, 128px);
}
.sec-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.sec-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sec-eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: currentColor;
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  max-width: 16ch;
  text-wrap: balance;
}
.sec-lede {
  max-width: 38ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

/* ─── SERVICES ─── */
.services {
  background: var(--cream);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1040px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(20,25,42,.18);
  border-color: var(--ink-3);
}
.svc-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.svc-card h3 {
  margin: 12px 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.svc-card p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.svc-card ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--ink-3);
}
.svc-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-top: 1px dashed var(--line);
}
.svc-card li:first-child { border-top: 0; }
.svc-card li::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--fire); flex: none;
}
.svc-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.svc-card .more svg { transition: transform .15s; }
.svc-card:hover .more svg { transform: translateX(3px); }
.svc-card .glyph {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
}
.svc-card.electrical .glyph { background: linear-gradient(135deg, #fff2e3, #ffd8b3); color: var(--fire-deep); }
.svc-card.ac .glyph { background: linear-gradient(135deg, #e6f1fb, #b9d8f0); color: var(--ice-deep); }
.svc-card.commercial .glyph { background: linear-gradient(135deg, #e9e9ef, #cdd0db); color: var(--ink-2); }
.svc-card.compliance .glyph { background: linear-gradient(135deg, #e3f5e8, #b6dec0); color: #15803d; }

.svc-card.electrical li::before { background: var(--fire); }
.svc-card.ac li::before { background: var(--ice); }
.svc-card.commercial li::before { background: var(--ink-3); }
.svc-card.compliance li::before { background: #16a34a; }

.svc-card .stripe {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  opacity: 0;
  transition: opacity .25s;
}
.svc-card:hover .stripe { opacity: 1; }
.svc-card.electrical .stripe { background: linear-gradient(90deg, var(--fire), var(--fire-soft)); }
.svc-card.ac .stripe { background: linear-gradient(90deg, var(--ice), var(--ice-soft)); }
.svc-card.commercial .stripe { background: linear-gradient(90deg, var(--ink-2), var(--ink-3)); }
.svc-card.compliance .stripe { background: linear-gradient(90deg, #15803d, #4ade80); }

/* ─── PROMISE ─── */
.promise {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(58,143,212,.18), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(243,121,32,.18), transparent 60%);
  pointer-events: none;
}
.promise .sec-eyebrow { color: var(--fire-soft); }
.promise-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
@media (max-width: 920px) { .promise-grid { grid-template-columns: 1fr; gap: 40px; } }
.promise h2 { color: #fff; }
.promise .sec-lede { color: rgba(255,255,255,.65); }
.promise-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}
.promise-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.promise-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.promise-list .ic {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  background: rgba(243,121,32,.14);
  color: var(--fire-soft);
  border-radius: 8px;
}
.promise-list h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}
.promise-list p {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

.creds {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 32px;
}
.creds-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 20px;
}
.creds-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire), var(--ice));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.02em;
}
.creds-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.creds-role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}
.creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.creds-grid div .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.creds-grid div .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-top: 4px;
  color: #fff;
}
.creds-phone {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.creds-phone .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
}
.creds-phone .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ─── AREA ─── */
.area {
  background: var(--cream);
}
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 920px) { .area-grid { grid-template-columns: 1fr; } }
.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.area-towns span {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-3);
  transition: all .15s;
}
.area-towns span:hover {
  border-color: var(--fire);
  color: var(--fire-deep);
  background: #fff7ef;
}
.area-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #e8e3d6 0%, #d5cfbe 100%);
  border: 1px solid var(--line);
}
.area-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,25,42,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,25,42,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.area-coast {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background:
    radial-gradient(60% 80% at 100% 50%, rgba(58,143,212,.18), transparent 70%);
}
.area-pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--fire);
  border: 3px solid #fff;
  box-shadow: 0 0 0 8px rgba(243,121,32,.16), 0 4px 12px rgba(0,0,0,.2);
  transform: translate(-50%, -50%);
}
.area-pin.main {
  width: 20px; height: 20px;
  background: var(--ink);
  box-shadow: 0 0 0 12px rgba(243,121,32,.18), 0 0 0 24px rgba(243,121,32,.06), 0 6px 16px rgba(0,0,0,.25);
}
.area-pin-label {
  position: absolute;
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.05em;
  transform: translate(-50%, -150%);
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.area-callout {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.2);
}
.area-callout .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.area-callout .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-top: 4px;
}

/* ─── PROCESS ─── */
.process {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
@media (max-width: 760px) { .process-grid { grid-template-columns: 1fr 1fr; } }
.process-step {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: 0; }
@media (max-width: 760px) {
  .process-step:nth-child(2n) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.process-step .n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fire-deep);
}
.process-step h4 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.process-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* ─── REVIEWS ─── */
.reviews {
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars {
  color: var(--fire);
  letter-spacing: 2px;
  font-size: 14px;
}
.review-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
}
.review-name {
  font-size: 14px;
  font-weight: 600;
}
.review-loc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── CTA ─── */
.cta {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 80% at 20% 0%, rgba(243,121,32,.32), transparent 60%),
    radial-gradient(70% 80% at 80% 100%, rgba(58,143,212,.28), transparent 60%);
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 920px) { .cta-inner { grid-template-columns: 1fr; } }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  text-wrap: balance;
}
.cta h2 .underline {
  position: relative;
  white-space: nowrap;
}
.cta h2 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--fire);
  z-index: -1;
  border-radius: 4px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  margin: 0 0 28px;
  max-width: 50ch;
  line-height: 1.55;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-phone-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 32px;
}
.cta-phone-card .row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.cta-phone-card .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire), var(--ice));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
}
.cta-phone-card .name { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.cta-phone-card .role { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; letter-spacing: 0.1em; text-transform: uppercase; }
.cta-phone-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.cta-phone-card .lbl { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 16px; letter-spacing: 0.1em; text-transform: uppercase; }
.cta-phone-card .call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--fire);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: background .15s;
}
.cta-phone-card .call-btn:hover { background: var(--fire-deep); }

/* ─── FOOTER ─── */
.footer {
  background: #0c1020;
  color: rgba(255,255,255,.65);
  padding: 56px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.footer a { display: block; padding: 4px 0; transition: color .15s; }
.footer a:hover { color: var(--fire); }
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.footer-logo img { height: 36px; }
.footer-tag {
  line-height: 1.5;
  max-width: 30ch;
  margin-bottom: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.4);
}

/* tweaks variants */
body.density-cozy { --pad: clamp(16px, 3vw, 40px); }
body.density-cozy .sec { padding-block: clamp(56px, 7vw, 96px); }
