/* ============================================================
   AlphaZ Electrical — design system + page styles
   ============================================================ */

:root {
  /* Brand */
  --navy-950: #050d1c;
  --navy-900: #0a1628;
  --navy-800: #11203a;
  --navy-700: #1a2c4a;
  --navy-600: #243b5e;
  --navy-500: #324e76;

  --gold-500: #FFB81C;
  --gold-400: #FFC848;
  --gold-300: #FFD980;
  --gold-600: #E89E00;
  --gold-700: #B97D00;

  --ink: #0a1628;
  --ink-soft: #1f2a3d;
  --muted: #5b6679;
  --muted-2: #8590a4;

  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --bg-card: #ffffff;
  --line: #e6ebf2;
  --line-strong: #d2dae6;

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06), 0 2px 4px rgba(10, 22, 40, 0.04);
  --shadow: 0 6px 20px rgba(10, 22, 40, 0.08), 0 2px 6px rgba(10, 22, 40, 0.04);
  --shadow-lg: 0 24px 48px rgba(10, 22, 40, 0.16), 0 8px 16px rgba(10, 22, 40, 0.06);
  --shadow-gold: 0 12px 32px rgba(255, 184, 28, 0.35);

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --header-h: 76px;
  --topbar-h: 36px;
}

/* Reset-ish */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--gold-600); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); }
p { margin: 0; }

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--gold-500); color: var(--navy-900);
  padding: 8px 12px; border-radius: 6px; font-weight: 700;
  z-index: 1000;
}
.skip-link:focus { top: 8px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.text-gold { color: var(--gold-500); }
.muted { color: var(--muted); font-size: 0.875rem; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm  { padding: 9px 14px; font-size: 0.85rem; }
.btn--lg  { padding: 15px 26px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { background: var(--gold-400); color: var(--navy-900); box-shadow: 0 16px 40px rgba(255, 184, 28, 0.45); }

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.45); }

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost-dark:hover { background: var(--bg-alt); color: var(--ink); border-color: var(--ink); }

.btn--dark {
  background: var(--navy-900);
  color: #fff;
}
.btn--dark:hover { background: var(--navy-800); color: #fff; }

.btn--outline-dark {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn--outline-dark:hover { background: var(--navy-900); color: #fff; }

/* ============================================================
   Top utility bar
   ============================================================ */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex; align-items: center; gap: 14px;
  height: var(--topbar-h);
  flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__link { color: rgba(255,255,255,0.78); }
.topbar__link:hover { color: var(--gold-400); }
.topbar__sep { color: rgba(255,255,255,0.18); }
.topbar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(255,184,28,0.18);
}
@media (max-width: 720px) {
  .topbar { display: none; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand__mark { display: inline-flex; width: 44px; height: 44px; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--navy-900);
}
.brand__tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: var(--gold-600);
  margin-top: 4px;
}
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__tag { color: var(--gold-400); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold-500); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover { color: var(--navy-900); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #fff;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--navy-900); border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav {
    position: fixed;
    top: calc(var(--header-h) + var(--topbar-h));
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    flex-direction: column; align-items: stretch;
    background: rgba(10, 22, 40, 0.97);
    color: #fff;
    gap: 0;
    padding: 24px;
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.3s;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0s;
  }
  .nav a {
    color: #fff;
    padding: 16px 4px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav a:hover { color: var(--gold-400); }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 720px) {
  .nav { top: var(--header-h); }
}
@media (max-width: 480px) {
  .header-cta .btn--sm { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,184,28,0.18), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(36, 80, 160, 0.45), transparent 50%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 120px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.85), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.85), transparent 75%);
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55;
}
.hero__glow--a { width: 480px; height: 480px; left: -120px; top: -120px; background: rgba(255,184,28,0.35); }
.hero__glow--b { width: 560px; height: 560px; right: -160px; bottom: -200px; background: rgba(50, 100, 220, 0.35); }

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero { padding: 64px 0 96px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 184, 28, 0.12);
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,184,28,0.28);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(255,184,28,0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,184,28,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(255,184,28,0.06); }
}

.section .eyebrow {
  background: rgba(255,184,28,0.10);
  color: var(--gold-700);
  border-color: rgba(255,184,28,0.35);
}

.hero__title {
  margin-top: 22px;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
}
.hero__lede {
  margin-top: 20px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  line-height: 1.65;
}
.hero__lede strong { color: var(--gold-400); font-weight: 700; }

.hero__cta {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 14px;
}

.hero__badges {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 10px 18px;
}
.hero__badges li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}
.hero__badges svg { color: var(--gold-400); }

/* Hero card */
.hero__visual { display: flex; justify-content: center; }
.hero__card {
  position: relative;
  width: 100%; max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,184,28,0.2), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__card-glow {
  position: absolute; inset: 8% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,28,0.5), transparent 65%);
  filter: blur(40px);
}
.hero__mark {
  position: relative; z-index: 1;
  width: 62%; height: auto;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.45));
  animation: floaty 6s ease-in-out infinite;
}
.hero__bolt {
  transform-origin: center;
  animation: zap 2.8s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes zap {
  0%, 92%, 100% { filter: none; }
  94% { filter: drop-shadow(0 0 8px #FFB81C) drop-shadow(0 0 16px #FFB81C); }
  96% { filter: none; }
  98% { filter: drop-shadow(0 0 12px #FFB81C); }
}

.hero__chip {
  position: absolute;
  background: rgba(10, 22, 40, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; flex-direction: column; gap: 2px;
  color: #fff;
  z-index: 2;
  box-shadow: var(--shadow);
  animation: floaty 7s ease-in-out infinite;
}
.hero__chip strong { font-size: 0.92rem; color: var(--gold-400); font-weight: 800; letter-spacing: 0.04em; }
.hero__chip span { font-size: 0.72rem; color: rgba(255,255,255,0.7); }
.hero__chip--1 { top: 14%; left: -4%; animation-delay: -1s; }
.hero__chip--2 { bottom: 18%; right: -4%; animation-delay: -3s; }
.hero__chip--3 { bottom: 6%; left: 20%; animation-delay: -5s; }
.hero__chip--3 strong { letter-spacing: 0.1em; }

@media (max-width: 480px) {
  .hero__chip--1 { left: 0; }
  .hero__chip--2 { right: 0; }
}

/* ============================================================
   Stats
   ============================================================ */
.stats {
  background: var(--navy-950);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 36px 0;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--gold-400);
  letter-spacing: -0.02em;
}
.stat__label {
  margin-top: 4px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 28px 0; }
}

/* ============================================================
   Section base
   ============================================================ */
.section { padding: 96px 0; background: var(--bg); }
.section--alt { background: var(--bg-alt); }

@media (max-width: 720px) { .section { padding: 64px 0; } }

.section__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section__title {
  margin-top: 16px;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.section__lede {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.section__foot {
  margin-top: 36px;
  text-align: center;
  color: var(--muted);
}
.section__foot a { color: var(--gold-700); font-weight: 700; border-bottom: 2px solid rgba(233, 158, 0, 0.4); }
.section__foot a:hover { color: var(--gold-600); border-bottom-color: var(--gold-500); }

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--3 { grid-template-columns: 1fr; } }

/* ============================================================
   Service cards
   ============================================================ */
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,184,28,0.5);
}
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(255,184,28,0.3);
}
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
.service-card > p {
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}
.service-card--featured {
  background: var(--navy-900);
  border-color: var(--navy-800);
  color: #fff;
}
.service-card--featured h3,
.service-card--featured > p { color: #fff; }
.service-card--featured > p { color: rgba(255,255,255,0.7); }
.service-card--featured .check-list li { color: rgba(255,255,255,0.85); }
.service-card--featured .check-list svg { color: var(--gold-400); }
.service-card--featured:hover { border-color: var(--gold-500); }

.service-card__badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.check-list {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1628' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.service-card--featured .check-list li::before { background-color: var(--gold-400); }

/* ============================================================
   Features (Why us)
   ============================================================ */
.feature {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 184, 28, 0.5);
}
.feature__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-900);
  color: var(--gold-400);
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.15rem; font-weight: 700; }
.feature p { margin-top: 8px; color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   About
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
}
.about__copy p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}
.about__creds {
  margin: 32px 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
  padding: 24px;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--line);
}
.about__creds dt {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
}
.about__creds dd {
  margin: 4px 0 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
}
@media (max-width: 600px) { .about__creds { grid-template-columns: 1fr; } }
.about__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.about__card {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: #fff;
  padding: 40px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__card::before {
  content: "";
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, transparent 30%, rgba(255,184,28,0.4) 70%, transparent 90%);
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.5;
}
.about__card-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 28px; }

.cred-stamp {
  position: relative; width: 200px; height: 200px;
}
.cred-stamp__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255,184,28,0.6);
  animation: spin 30s linear infinite;
}
.cred-stamp__ring::before, .cred-stamp__ring::after {
  content: ""; position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-500);
  top: 50%; transform: translateY(-50%);
}
.cred-stamp__ring::before { left: -5px; }
.cred-stamp__ring::after { right: -5px; }
@keyframes spin { to { transform: rotate(360deg); } }

.cred-stamp__core {
  position: absolute; inset: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-400), var(--gold-600));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--navy-900);
  text-align: center;
  box-shadow: inset 0 0 24px rgba(0,0,0,0.15);
}
.cred-stamp__top {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.4rem; letter-spacing: 0.08em;
}
.cred-stamp__num {
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.6rem; letter-spacing: 0.04em;
}
.cred-stamp__bot {
  margin-top: 6px;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.22em;
}

.about__quick {
  width: 100%;
  display: grid; gap: 8px;
}
.about__quick li {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
}
.about__quick li span { color: rgba(255,255,255,0.6); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.about__quick li strong { color: var(--gold-400); font-weight: 700; }

/* ============================================================
   Steps / Process
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: stepc;
}
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; }
.step p { margin-top: 8px; color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   Service area
   ============================================================ */
.area {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .area { grid-template-columns: 1fr; gap: 40px; } }
.area__copy p { margin-top: 16px; color: var(--ink-soft); line-height: 1.7; }
.area__cols {
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.area__cols h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 480px) { .area__cols { grid-template-columns: 1fr; } }

.dot-list { display: grid; gap: 8px; }
.dot-list li {
  position: relative; padding-left: 22px;
  font-size: 0.95rem; color: var(--ink-soft);
}
.dot-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(255,184,28,0.18);
}

.area__map {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.area__map-svg { width: 100%; height: auto; }
.area__legend {
  margin-top: 16px; display: flex; gap: 24px; flex-wrap: wrap;
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
}
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; vertical-align: middle; margin-right: 6px; }
.dot--gold { background: var(--gold-500); box-shadow: 0 0 0 3px rgba(255,184,28,0.18); }
.dot--small { width: 6px; height: 6px; }

.area__pulse {
  transform-origin: 225px 170px;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { r: 8; opacity: 1; }
  100% { r: 28; opacity: 0; }
}

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background:
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.4), transparent 50%),
    linear-gradient(135deg, var(--gold-400), var(--gold-500) 50%, var(--gold-600));
  color: var(--navy-900);
}
.cta-banner__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  padding: 56px 0; gap: 32px;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.cta-banner p {
  margin-top: 8px;
  color: rgba(10, 22, 40, 0.78);
  font-size: 1.05rem;
  max-width: 520px;
}
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   Contact
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}
@media (max-width: 920px) { .contact { grid-template-columns: 1fr; gap: 40px; } }
.contact__copy p { margin-top: 16px; color: var(--ink-soft); }
.contact__copy p a { color: var(--gold-700); font-weight: 700; }

.contact__info {
  margin-top: 32px;
  display: grid; gap: 20px;
}
.contact__info li {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact__ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
}
.contact__info strong { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.contact__info a, .contact__info span:not(.muted):not(.contact__ico) { display: block; font-weight: 700; color: var(--ink); margin-top: 2px; }
.contact__info .contact__ico svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact__info a:hover { color: var(--gold-600); }

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid; gap: 16px;
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--ink-soft); letter-spacing: 0.02em;
}
.field label span { color: var(--gold-600); }
.field input, .field select, .field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(255,184,28,0.18);
}
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field--check { flex-direction: row; }
.check {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: var(--ink-soft);
  cursor: pointer;
}
.check input { width: 18px; height: 18px; accent-color: var(--gold-500); }

.form-note {
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-note.is-success { color: #1a7f4a; }
.form-note.is-error { color: #b3261e; }
.form-fineprint {
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
}
@media (max-width: 920px) { .footer__inner { grid-template-columns: 1fr; gap: 40px; } }

.footer__about { margin-top: 16px; max-width: 380px; line-height: 1.65; }
.footer__cred {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-400);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) { .footer__cols { grid-template-columns: repeat(2, 1fr); } }
.footer__cols h4 {
  color: #fff; font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.footer__cols ul { display: grid; gap: 8px; }
.footer__cols a, .footer__cols li {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
}
.footer__cols a:hover { color: var(--gold-400); }

.footer__bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer__small { font-style: italic; }

/* ============================================================
   Floating call button (mobile)
   ============================================================ */
.fab {
  position: fixed; right: 18px; bottom: 18px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-500); color: var(--navy-900);
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold), 0 0 0 6px rgba(255,184,28,0.18);
  z-index: 50;
  animation: pulse-ring 2.4s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: var(--shadow-gold), 0 0 0 6px rgba(255,184,28,0.2); }
  50% { box-shadow: var(--shadow-gold), 0 0 0 12px rgba(255,184,28,0.04); }
}
@media (max-width: 720px) { .fab { display: flex; } }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal-children > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-children.is-revealed > * { opacity: 1; transform: none; }
.reveal-children.is-revealed > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-children.is-revealed > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-children.is-revealed > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-children.is-revealed > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-children.is-revealed > *:nth-child(6) { transition-delay: 0.4s; }

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

/* Selection */
::selection { background: var(--gold-500); color: var(--navy-900); }
