/* Leo's Electrical Service — Icy Blue + Black · 2026 */

:root {
  --black: #030508;
  --black-soft: #080c12;
  --black-panel: #0d1219;
  --black-border: #1a2330;
  --icy: #7ee8ff;
  --icy-bright: #b8f4ff;
  --icy-dim: #38bdf8;
  --icy-glow: rgba(126, 232, 255, 0.45);
  --icy-soft: rgba(126, 232, 255, 0.12);
  --text: #e8eef5;
  --text-muted: #8fa3b8;
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--icy); text-decoration: none; transition: color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
a:hover { color: var(--icy-bright); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container { width: min(1180px, 92vw); margin-inline: auto; }

.intro-logo,
.brand-logo,
.hero-logo,
.about-logo,
.footer-logo {
  object-fit: contain;
}

/* FX */
.fx-layer {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}
.fx-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(126, 232, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 232, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 75%);
}
.fx-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(3, 5, 8, 0.85) 100%);
}
.fx-scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(126, 232, 255, 0.015) 2px, rgba(126, 232, 255, 0.015) 4px);
  opacity: 0.5;
}

/* Intro */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--black);
  transition: opacity 0.65s var(--ease), visibility 0.65s;
}
.intro--out { opacity: 0; visibility: hidden; pointer-events: none; }

.intro-logo {
  width: min(280px, 55vw);
  filter: drop-shadow(0 0 40px var(--icy-glow)) drop-shadow(0 0 80px rgba(56, 189, 248, 0.25));
  animation: logoPulse 1.4s var(--ease) infinite alternate;
}

.intro-tag {
  position: absolute; bottom: 18%;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--icy-dim);
  margin: 0;
}

.intro-arc {
  position: absolute; width: 120px; height: 200px;
  border: 2px solid transparent;
  border-top-color: var(--icy);
  border-radius: 50%;
  opacity: 0.6;
  filter: drop-shadow(0 0 12px var(--icy-glow));
  animation: arcFlicker 0.8s steps(2) infinite;
}
.intro-arc--l { left: 22%; top: 35%; transform: rotate(-25deg); }
.intro-arc--r { right: 22%; top: 38%; transform: rotate(25deg) scaleX(-1); }

@keyframes logoPulse {
  from { filter: drop-shadow(0 0 30px var(--icy-glow)); }
  to { filter: drop-shadow(0 0 55px var(--icy-glow)) drop-shadow(0 0 100px rgba(126, 232, 255, 0.35)); }
}
@keyframes arcFlicker {
  50% { opacity: 0.2; }
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s;
}
.nav--scrolled {
  background: rgba(3, 5, 8, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--black-border), 0 8px 32px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--text);
}
.brand:hover { color: var(--icy-bright); }

.brand-logo {
  width: 48px; height: 48px;
  filter: drop-shadow(0 0 12px var(--icy-soft));
}

.brand-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}
.brand-text span { display: block; font-size: 0.65rem; color: var(--icy); font-weight: 600; letter-spacing: 0.2em; }

.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
}
.nav-links a:hover { color: var(--icy-bright); }

.nav-cta {
  padding: 0.55rem 1.1rem;
  background: linear-gradient(135deg, var(--icy-dim), var(--icy));
  color: var(--black) !important;
  font-weight: 700 !important;
  border-radius: var(--radius);
  box-shadow: 0 0 24px var(--icy-soft);
}
.nav-cta:hover {
  color: var(--black) !important;
  box-shadow: 0 0 36px var(--icy-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px;
  background: var(--icy);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

/* Hero */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  display: flex; flex-direction: column; justify-content: center;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-bolt {
  position: absolute;
  width: 3px; height: 120px;
  background: linear-gradient(180deg, transparent, var(--icy), transparent);
  opacity: 0.5;
  filter: blur(0.5px);
  animation: boltStrike 4s var(--ease) infinite;
}
.hero-bolt--1 { left: 18%; top: 20%; transform: rotate(12deg); animation-delay: 0s; }
.hero-bolt--2 { right: 22%; top: 35%; transform: rotate(-8deg); animation-delay: 1.8s; height: 90px; }

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-orb--1 {
  width: 420px; height: 420px;
  top: -80px; right: -60px;
  background: radial-gradient(circle, var(--icy) 0%, transparent 70%);
}
.hero-orb--2 {
  width: 300px; height: 300px;
  bottom: 10%; left: -40px;
  background: radial-gradient(circle, var(--icy-dim) 0%, transparent 70%);
  opacity: 0.2;
}

@keyframes boltStrike {
  0%, 88%, 100% { opacity: 0; transform: scaleY(0.3); }
  90%, 94% { opacity: 0.8; transform: scaleY(1); }
}

.hero-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-logo-col { display: flex; justify-content: center; }

.logo-pedestal {
  position: relative;
  width: min(420px, 88vw);
  aspect-ratio: 1;
  display: grid; place-items: center;
}

.logo-ring {
  position: absolute; inset: 8%;
  border: 1px solid rgba(126, 232, 255, 0.25);
  border-radius: 50%;
  animation: ringSpin 18s linear infinite;
}
.logo-ring--2 {
  inset: 2%;
  border-style: dashed;
  border-color: rgba(126, 232, 255, 0.12);
  animation-direction: reverse;
  animation-duration: 24s;
}

.logo-glow {
  position: absolute; inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--icy-soft) 0%, transparent 65%);
  animation: glowBreath 3s var(--ease) infinite alternate;
}

.logo-sparks {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--icy-glow) 0%, transparent 8%),
    radial-gradient(circle at 75% 60%, var(--icy-glow) 0%, transparent 6%);
  opacity: 0.4;
  animation: sparkFlash 2.5s steps(3) infinite;
}

.hero-logo {
  position: relative; z-index: 2;
  width: 92%;
  filter: drop-shadow(0 0 50px var(--icy-glow)) drop-shadow(0 12px 40px rgba(0, 0, 0, 0.6));
}

@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes glowBreath {
  from { opacity: 0.5; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}
@keyframes sparkFlash {
  50% { opacity: 0.15; }
}

.hero-copy { max-width: 34rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--icy-dim);
  margin: 0 0 1rem;
}

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--icy);
  box-shadow: 0 0 12px var(--icy-glow);
  animation: pulse 1.5s var(--ease) infinite;
}
@keyframes pulse {
  50% { transform: scale(1.2); opacity: 0.7; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}
.hero h1 .line { display: block; }
.hero h1 .icy {
  background: linear-gradient(90deg, var(--icy-bright), var(--icy-dim), var(--icy));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 30px var(--icy-soft));
}

.license-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}
.license-badge {
  padding: 0.35rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--icy-bright), var(--icy-dim));
  border-radius: var(--radius);
  box-shadow: 0 0 20px var(--icy-soft);
}
.license-badge--soft {
  color: var(--icy-bright);
  background: transparent;
  border: 1px solid rgba(126, 232, 255, 0.4);
  box-shadow: none;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.price-card {
  padding: 1.75rem;
  background: linear-gradient(160deg, var(--black-panel), var(--black-soft));
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.price-card:hover,
.price-card--featured {
  border-color: rgba(126, 232, 255, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 32px var(--icy-soft);
}
.price-card--featured {
  background: linear-gradient(160deg, #0d1520, var(--black-panel));
}
.price-stock {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--icy);
  margin-bottom: 0.75rem;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--icy-bright);
  margin: 0 0 1rem;
  line-height: 1;
  text-shadow: 0 0 30px var(--icy-soft);
}
.price-currency { font-size: 1.5rem; vertical-align: super; }
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.price-features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--icy);
  font-weight: 700;
}
.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 52rem;
  margin: 0 auto;
  line-height: 1.7;
}

.package-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.package-card {
  padding: 1.75rem 1.75rem 1.5rem;
  background: linear-gradient(160deg, #0d1520, var(--black-panel));
  border: 1px solid rgba(126, 232, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px var(--icy-soft);
}
.package-card--alt {
  border-color: var(--black-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.pickup-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--icy-dim);
}
.pickup-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--icy);
}
.package-blurb {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.price-features--inline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.25rem 1rem;
}
.price-features--spaced { margin-top: 1rem; }
.package-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--black-border);
}
.package-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0.35rem 0 0.25rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.package-amps {
  margin: 0;
  font-size: 0.95rem;
  color: var(--icy-dim);
}
.package-price-block {
  text-align: right;
}
.package-price-block .price-amount { margin-bottom: 0.75rem; }
.package-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.package-col-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--icy);
  margin: 0 0 0.75rem;
}
.addon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.addon-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--black-border);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.addon-list li strong {
  font-family: var(--font-display);
  color: var(--icy-bright);
  white-space: nowrap;
}
.package-extra {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-icy {
  background: linear-gradient(135deg, #0ea5e9, var(--icy));
  color: var(--black);
  box-shadow: 0 4px 28px var(--icy-soft), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-icy:hover { box-shadow: 0 8px 40px var(--icy-glow); color: var(--black); }

.btn-ghost {
  background: transparent;
  color: var(--icy-bright);
  border: 1px solid rgba(126, 232, 255, 0.35);
}
.btn-ghost:hover {
  border-color: var(--icy);
  box-shadow: 0 0 24px var(--icy-soft);
  color: var(--icy-bright);
}

.btn-lg { padding: 1rem 1.75rem; font-size: 1.05rem; }

.hero-stats {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--black-border);
}

.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--icy);
  letter-spacing: 0.05em;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--black-border); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--icy), transparent);
  animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse {
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* Strip */
.strip {
  position: relative; z-index: 1;
  border-block: 1px solid var(--black-border);
  background: var(--black-soft);
  overflow: hidden;
}
.strip-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--icy-dim);
}
.strip-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--icy);
  box-shadow: 0 0 8px var(--icy-glow);
}

/* Sections */
.section {
  position: relative; z-index: 1;
  padding: 5rem 0;
}
.section--alt { background: var(--black-soft); }

.section-head { margin-bottom: 2.5rem; max-width: 40rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--icy);
  margin-bottom: 0.5rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-lead { margin: 0; font-size: 1.05rem; }
.section-lead code {
  font-size: 0.85em;
  padding: 0.15em 0.4em;
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  color: var(--icy);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 1.75rem;
  background: linear-gradient(145deg, var(--black-panel), var(--black-soft));
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--icy), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  border-color: rgba(126, 232, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 32px var(--icy-soft);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-icon { font-size: 1.75rem; margin-bottom: 0.75rem; filter: grayscale(0.2); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
}
.service-card p { margin: 0; font-size: 0.95rem; }

/* Work gallery */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.work-card {
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease);
}
.work-card:hover { box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 24px var(--icy-soft); }

.work-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, var(--black-soft) 0%, var(--black-panel) 100%),
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(126, 232, 255, 0.03) 8px, rgba(126, 232, 255, 0.03) 16px);
  overflow: hidden;
}
.work-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.work-media.has-image img { opacity: 1; }
.work-media.has-image .work-placeholder { opacity: 0; }

.work-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--icy-dim);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.work-body { padding: 1.35rem 1.5rem; }
.work-body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--icy-bright);
  margin: 0 0 0.5rem;
  letter-spacing: 0.03em;
}
.work-body p { margin: 0; font-size: 0.92rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-panel {
  position: relative;
  aspect-ratio: 1;
  max-width: 400px;
  margin-inline: auto;
  display: grid; place-items: center;
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-mesh {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, var(--icy-soft) 0%, transparent 45%),
    linear-gradient(rgba(126, 232, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 232, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

.about-logo {
  position: relative; z-index: 1;
  width: 70%;
  filter: drop-shadow(0 0 40px var(--icy-glow));
}

.about-badge {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--icy);
  border-radius: 2px;
  z-index: 2;
}

.about-copy h2 { margin-top: 0; }
.check-list {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
}
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}
.check-list li::before {
  content: "▸";
  position: absolute; left: 0;
  color: var(--icy);
}

.license-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.license-card {
  padding: 1rem 1.1rem;
  background: var(--black);
  border: 1px solid rgba(126, 232, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 0 24px var(--icy-soft);
}
.license-card-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--icy-dim);
  margin-bottom: 0.25rem;
}
.license-card-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--icy-bright);
  letter-spacing: 0.06em;
}

/* CTA band */
.cta-band {
  position: relative; z-index: 1;
  padding: 3.5rem 0;
  background:
    linear-gradient(90deg, rgba(14, 165, 233, 0.15), rgba(126, 232, 255, 0.08)),
    var(--black-soft);
  border-block: 1px solid var(--black-border);
}
.cta-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}
.cta-copy p { margin: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.contact-list {
  list-style: none; padding: 0; margin: 1.5rem 0;
}
.contact-list li { margin-bottom: 1rem; }
.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--icy-dim);
  margin-bottom: 0.2rem;
}
.contact-list a { font-size: 1.1rem; font-weight: 600; color: var(--text); }
.contact-list a:hover { color: var(--icy-bright); }

.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.75rem;
  background: var(--black-panel);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
}
.contact-form label span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--icy-dim);
  box-shadow: 0 0 0 3px var(--icy-soft);
}
.form-note { margin: 0; font-size: 0.8rem; opacity: 0.7; }

.form-toast {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) translateY(1.5rem);
  z-index: 9999;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  max-width: min(420px, 92vw);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.form-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.form-toast--success {
  background: var(--black-panel);
  border: 1px solid var(--icy-dim);
  color: var(--icy-bright);
}
.form-toast--error {
  background: var(--black-panel);
  border: 1px solid #f87171;
  color: #fca5a5;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--black-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(0.4) contrast(1.1) brightness(0.85);
}

/* Footer */
.footer {
  position: relative; z-index: 1;
  padding: 2.5rem 0;
  border-top: 1px solid var(--black-border);
  background: var(--black);
}
.footer-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}
.footer-meta { max-width: 28rem; }
.footer-logo {
  width: 56px;
  filter: drop-shadow(0 0 16px var(--icy-soft));
}
.footer p { margin: 0 0 0.25rem; font-size: 0.9rem; }
.footer-license {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--icy) !important;
}
.footer-address { color: var(--text-muted); font-size: 0.85rem !important; }

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* In stock — green live indicator (separate from price) */
.stock-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.5);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4ade80;
  vertical-align: middle;
}
.stock-live--sm {
  padding: 0.3rem 0.65rem;
  font-size: 0.62rem;
}
.stock-live--package {
  display: flex;
  width: fit-content;
  margin-bottom: 0.5rem;
}
.stock-live__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e, 0 0 14px rgba(34, 197, 94, 0.7);
  animation: stock-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes stock-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.88); }
}
.price-meta {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.hero-stock-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin: 0.75rem 0 1rem;
}
.hero-price-line {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}
.hero-price-amt {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--icy-bright);
  text-shadow: 0 0 24px var(--icy-soft);
  margin-left: 0.35rem;
}
.strip-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--icy-bright);
  letter-spacing: 0.04em;
}
.section-tag--row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

/* Language picker */
.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  padding: max(1.25rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right))
    max(1.25rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
}
.lang-modal[hidden] { display: none !important; }
.lang-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.92);
  backdrop-filter: blur(8px);
}
.lang-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--black-panel);
  border: 1px solid rgba(126, 232, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 40px var(--icy-soft);
}
.lang-modal__logo {
  width: min(120px, 40vw);
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 24px var(--icy-glow));
}
.lang-modal__panel h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--icy-bright);
  margin: 0 0 0.35rem;
  letter-spacing: 0.06em;
}
.lang-modal__sub {
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.lang-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lang-pending { overflow: hidden; }
.lang-pending .intro { display: none; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-switch__btn {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.6rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lang-switch__btn.is-active,
.lang-switch__btn:hover {
  color: var(--icy-bright);
  border-color: rgba(126, 232, 255, 0.45);
  background: var(--icy-soft);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-stage { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .license-badges { justify-content: center; }
  .hero-actions, .hero-stats { justify-content: center; }
  .license-panel { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .package-columns { grid-template-columns: 1fr; }
  .package-price-block { text-align: left; width: 100%; }
  .hero-logo-col { order: -1; }
  .logo-pedestal { width: min(320px, 75vw); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  .btn {
    min-height: 48px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .hero h1 .line { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-lead { font-size: 0.95rem; }
  .hero-stock-row { justify-content: center; }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .strip-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }
  .strip-inner::-webkit-scrollbar { display: none; }
  .package-head { flex-direction: column; }
  .package-price-block {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .package-price-block .price-amount { margin-bottom: 0; }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-grid { grid-template-columns: 1fr; }
  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .map-wrap iframe { min-height: 220px; }
  .lang-switch {
    justify-content: center;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--black-border);
  }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: rgba(3, 5, 8, 0.97);
    border-bottom: 1px solid var(--black-border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s, visibility 0.3s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--black-border);
  }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
  .hero-scroll { display: none; }
  .license-badges { gap: 0.4rem; }
  .license-badge { font-size: 0.58rem; padding: 0.3rem 0.55rem; }
  .intro-logo { width: min(200px, 55vw); }
}

@media (max-width: 380px) {
  .brand-text { font-size: 0.75rem; }
  .hero-price-amt { font-size: 1.5rem; }
}
