/* ============================================================
   ELEKTRYK SZUDROWICZ - v4 (ZGODNY Z BRIEFEM)
   Jasna dominująca przestrzeń · Granat primary · Pomarańcz accent
   Manrope + Space Grotesk
   ============================================================ */

:root {
  /* Primary - granat wg briefu #0B1F3A - #1E3A5F */
  --navy-50:  #F0F4FA;
  --navy-100: #D6E1F0;
  --navy-200: #A8BFDB;
  --navy-300: #6D8CB8;
  --navy-400: #3D5F8F;
  --navy-500: #1E3A5F;
  --navy-600: #142E4C;
  --navy-700: #0F2438;
  --navy-800: #0B1F3A;
  --navy-900: #060F1E;

  /* Accent - pomarańcz elektryczny wg briefu #FF6B1A - #FF8A3D */
  --ember-50:  #FFF3EC;
  --ember-100: #FFDCC0;
  --ember-200: #FFB68B;
  --ember-300: #FF8A3D;
  --ember-500: #FF6B1A;
  --ember-600: #E85500;
  --ember-700: #B84200;
  --ember-glow: rgba(255, 107, 26, 0.22);

  /* Dodatkowy yellow signal (z żółtego zakresu briefu) dla badge'y i iskier */
  --signal: #FFB800;

  /* Neutrals - cream/paper jako dominujące tło (zgodnie z "dużo białej/jasnoszarej przestrzeni") */
  --paper:     #FBF8F0;
  --paper-2:   #F5F1E5;
  --bone:      #EFEAD9;
  --graphite:  #2A3441;
  --graphite-soft: #3D4858;
  --mute-100: rgba(42, 52, 65, 0.55);
  --mute-200: rgba(42, 52, 65, 0.72);
  --hair:     rgba(11, 31, 58, 0.08);
  --hair-strong: rgba(11, 31, 58, 0.14);

  /* Success */
  --success: #059669;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-swift: cubic-bezier(0.4, 0, 0.2, 1);

  --shell-max: 1440px;
  --pad-side: clamp(20px, 4vw, 64px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--paper);
  overflow-x: clip;
}

body {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--paper);
  overflow-x: hidden;
  font-feature-settings: 'ss01' 1;
}

/* Scroll progress */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember-500), var(--ember-300));
  width: 0;
  z-index: 99;
  transition: width 0.1s linear;
  box-shadow: 0 0 16px var(--ember-500);
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--navy-800);
  font-weight: 700;
}

.mono {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-feature-settings: 'tnum' 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember-600);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: currentColor;
}
.eyebrow-light { color: var(--ember-300); }

a { color: inherit; text-decoration: none; }

::selection { background: var(--ember-500); color: var(--paper); }

/* ============================================================
   SHELL
   ============================================================ */

.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--pad-side);
  position: relative;
}

/* ============================================================
   NAV
   ============================================================ */

.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 0;
  transition: all 0.3s var(--ease-swift);
}
.topnav.scrolled {
  background: rgba(251, 248, 240, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--hair);
  padding: 14px 0;
}
.topnav-dark {
  position: absolute;
}
.topnav-dark.scrolled {
  background: rgba(11, 31, 58, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-block;
  width: 144px;
  height: 48px;
  background-image: url('/assets/img/logo-dark.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.3s;
}

/* On scrolled nav (white bg) and mobile menu (cream bg): use navy version */
.topnav.scrolled .brand,
.mobnav-head .brand {
  background-image: url('/assets/img/logo-light.png');
}

.brand::after { content: none !important; }
.brand-bolt { display: none !important; }

.mainnav { display: none; gap: 2px; align-items: center; }
@media (min-width: 1024px) { .mainnav { display: flex; } }
.mainnav a {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(251, 248, 240, 0.85);
  transition: color 0.2s;
}
.topnav.scrolled .mainnav a { color: var(--graphite); }
.mainnav a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 2px;
  background: var(--ember-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.mainnav a:hover::after { transform: scaleX(1); }

/* Dropdown menu */
.nav-item-drop { position: relative; }
.nav-item-drop > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-item-drop > a svg { transition: transform 0.25s var(--ease); opacity: 0.7; }
.nav-item-drop:hover > a svg,
.nav-item-drop:focus-within > a svg { transform: rotate(180deg); opacity: 1; }

.nav-drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 24px 48px -16px rgba(11, 31, 58, 0.18), 0 4px 12px rgba(11, 31, 58, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0s linear 0.22s;
  z-index: 100;
  margin-top: 4px;
}

.nav-item-drop:hover .nav-drop,
.nav-item-drop:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.mainnav .nav-drop a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--navy-800);
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mainnav .nav-drop a::after { display: none; }
.mainnav .nav-drop a:hover {
  background: var(--ember-50);
  color: var(--ember-600);
}
.topnav.scrolled .mainnav .nav-drop a { color: var(--navy-800); }

.mainnav a.cta {
  background: var(--ember-500);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.3);
}
.mainnav a.cta::after { display: none; }
.mainnav a.cta:hover {
  background: var(--ember-600);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 107, 26, 0.45);
}

.mobtoggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(251, 248, 240, 0.08);
  border: 1px solid rgba(251, 248, 240, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--paper);
  cursor: pointer;
  transition: all 0.2s;
}
.topnav.scrolled .mobtoggle { background: var(--paper-2); border-color: var(--hair); color: var(--navy-800); }
@media (min-width: 1024px) { .mobtoggle { display: none; } }

/* Mobile nav */
.mobnav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.92);
  backdrop-filter: blur(8px);
  z-index: 59;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease);
}
.mobnav-overlay.open { opacity: 1; visibility: visible; }

.mobnav {
  position: fixed;
  top: 0; right: 0;
  width: 92%; max-width: 420px;
  height: 100vh;
  background: var(--paper);
  border-left: 4px solid var(--ember-500);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  padding: 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobnav.open { transform: translateX(0); }
.mobnav-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair);
}
.mobnav-head .brand { color: var(--navy-800); }
.mobnav-head .mobtoggle { background: var(--paper-2); border-color: var(--hair); color: var(--navy-800); }
.mobnav a {
  display: block;
  padding: 14px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-800);
  border-bottom: 1px solid var(--hair);
  letter-spacing: -0.02em;
}
.mobnav a:hover { color: var(--ember-500); }
.mobnav-section { margin-bottom: 28px; }
.mobnav-section h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ember-600);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease-swift);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ember-500);
  color: var(--paper);
  box-shadow: 0 8px 32px rgba(255, 107, 26, 0.35);
}
.btn-primary:hover {
  background: var(--ember-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 48px rgba(255, 107, 26, 0.5);
}
.btn-primary .btn-ico {
  width: 26px; height: 26px;
  background: var(--paper);
  color: var(--ember-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-swift);
}
.btn-primary:hover .btn-ico { transform: rotate(-45deg); }

.btn-ghost-dark {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(251, 248, 240, 0.3);
  padding: 17px 27px;
}
.btn-ghost-dark:hover {
  border-color: var(--ember-300);
  color: var(--ember-300);
  background: rgba(255, 107, 26, 0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border: 1px solid var(--hair-strong);
  padding: 17px 27px;
}
.btn-ghost:hover {
  background: var(--navy-800);
  color: var(--paper);
  border-color: var(--navy-800);
}

/* ============================================================
   HERO - DARK PREMIUM
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  color: var(--paper);
  display: flex;
  align-items: center;
}

/* Hero glow - subtle lens flare (static, no looping animation) */
.hero-glow {
  position: absolute;
  bottom: -30%; left: 50%;
  width: 120%; height: 100%;
  background: radial-gradient(ellipse 55% 100% at 50% 100%, var(--ember-glow) 0%, transparent 55%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

/* Radial spot behind display */
.hero-spot {
  position: absolute;
  top: 10%; right: -15%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, var(--ember-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

/* Subtle dot grid */
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 184, 0, 0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  opacity: 0.6;
}

/* Circuit SVG - HIDDEN, replaced by power-up effect */
.hero-circuit { display: none; }
.hero-circuit svg { width: 100%; height: 100%; overflow: visible; }
.hero-circuit path {
  stroke: var(--ember-300);
  stroke-width: 1.2;
  fill: none;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: circuit-draw 2.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.hero-circuit path:nth-child(2) { stroke: var(--signal); animation-delay: 0.4s; }
.hero-circuit path:nth-child(3) { animation-delay: 0.8s; }
@keyframes circuit-draw { to { stroke-dashoffset: 0; } }

.hero-circuit circle {
  fill: var(--ember-500);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: circuit-dot 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero-circuit circle:nth-child(2n) { fill: var(--signal); }
.hero-circuit circle:nth-of-type(1) { animation-delay: 1.6s; }
.hero-circuit circle:nth-of-type(2) { animation-delay: 1.7s; }
.hero-circuit circle:nth-of-type(3) { animation-delay: 1.8s; }
.hero-circuit circle:nth-of-type(4) { animation-delay: 1.9s; }
.hero-circuit circle:nth-of-type(5) { animation-delay: 2.0s; }
.hero-circuit circle:nth-of-type(6) { animation-delay: 2.1s; }
.hero-circuit circle:nth-of-type(7) { animation-delay: 2.2s; }
.hero-circuit circle:nth-of-type(8) { animation-delay: 2.3s; }
.hero-circuit circle:nth-of-type(9) { animation-delay: 2.4s; }
.hero-circuit circle:nth-of-type(10) { animation-delay: 2.5s; }
.hero-circuit circle:nth-of-type(11) { animation-delay: 2.6s; }
.hero-circuit circle:nth-of-type(12) { animation-delay: 2.7s; }
.hero-circuit circle:nth-of-type(13) { animation-delay: 2.8s; }
.hero-circuit circle:nth-of-type(14) { animation-delay: 2.9s; }
.hero-circuit circle:nth-of-type(15) { animation-delay: 3.0s; }
@keyframes circuit-dot {
  0% { opacity: 0; transform: scale(0); }
  60% { opacity: 1; transform: scale(1.6); box-shadow: 0 0 8px var(--ember-500); }
  100% { opacity: 0.7; transform: scale(1); }
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.3fr 1fr; gap: 80px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.2);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember-300);
  margin-bottom: 32px;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--ember-500);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--ember-500);
  position: relative;
  animation: eyebrow-pulse 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s 2 forwards;
}
@keyframes eyebrow-pulse {
  0% { box-shadow: 0 0 12px var(--ember-500), 0 0 0 0 rgba(255, 107, 26, 0.55); }
  100% { box-shadow: 0 0 12px var(--ember-500), 0 0 0 24px rgba(255, 107, 26, 0); }
}

.hero-display {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.2rem, 9vw, 8.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 32px;
}
.hero-display .row { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero-display .row > span {
  display: inline-block;
  transform: translateY(110%);
  animation: row-up 1.2s var(--ease) forwards;
}
.hero-display .row:nth-child(1) > span { animation-delay: 0.2s; }
.hero-display .row:nth-child(2) > span { animation-delay: 0.4s; }
@keyframes row-up { to { transform: translateY(0); } }

.hero-display em {
  font-style: normal;
  color: var(--ember-500);
  display: inline-block;
  position: relative;
}
.hero-display em::after {
  content: '';
  position: absolute;
  inset: -0.1em -0.05em;
  background: radial-gradient(ellipse 60% 50% at center, var(--ember-500) 0%, transparent 65%);
  filter: blur(24px);
  z-index: -1;
  opacity: 0.6;
}

.hero-sub {
  max-width: 580px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(251, 248, 240, 0.85);
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-in 1s ease 0.7s forwards;
}
.hero-sub strong { color: var(--ember-300); font-weight: 600; }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center;
  margin-bottom: 64px;
  opacity: 0;
  animation: fade-in 1s ease 0.9s forwards;
}

.hero-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid rgba(251, 248, 240, 0.12);
  opacity: 0;
  animation: fade-in 1s ease 1.1s forwards;
}
@media (min-width: 640px) { .hero-data { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; } }

.hero-data-cell {
  padding: 0 16px;
  border-right: 1px solid rgba(251, 248, 240, 0.12);
  text-align: center;
  min-width: 0;
}
.hero-data-cell:last-child { border-right: 0; }
.hero-data-value {
  display: block;
  width: 100%;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1;
  color: var(--ember-500);
  letter-spacing: -0.02em;
  margin: 0 0 8px 0;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.hero-data-km {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.4em;
  color: rgba(251, 248, 240, 0.7);
  font-weight: 400;
  vertical-align: super;
  margin-left: 2px;
}
.hero-data-label {
  display: block;
  width: 100%;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251, 248, 240, 0.55);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hero aside visual */
.hero-aside {
  position: relative;
  opacity: 0;
  animation: fade-in 1.2s ease 0.4s forwards;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 50%, var(--navy-800) 100%);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(255, 107, 26, 0.12),
    inset 0 1px 0 rgba(255, 107, 26, 0.18);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 70% 20%, rgba(255, 107, 26, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 80% 100% at 20% 100%, rgba(255, 184, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
/* A+C combo: image rendered black until lightning impact, then snaps bright synced with flash peak */
.hero-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0) blur(8px);
  transform: scale(1.03);
  animation: hero-power-on 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}
@keyframes hero-power-on {
  0% { filter: brightness(0) blur(8px); transform: scale(1.03); }
  10% { filter: brightness(2.8) blur(0); transform: scale(1.005); }
  25% { filter: brightness(0.5) blur(0); transform: scale(1.005); }
  40% { filter: brightness(2.2) blur(0); transform: scale(1); }
  55% { filter: brightness(0.85) blur(0); transform: scale(1); }
  100% { filter: brightness(1) blur(0); transform: scale(1); }
}

/* === OPTION B: Aurora mesh gradient layers in hero background === */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-aurora .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0;
  mix-blend-mode: screen;
  animation: aurora-settle 2.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-aurora .blob-1 {
  width: 720px; height: 720px;
  top: -200px; left: -180px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.55), transparent 70%);
  animation-delay: 0.2s;
  --tx: -100px; --ty: -100px;
}
.hero-aurora .blob-2 {
  width: 800px; height: 800px;
  top: 20%; right: -200px;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.85), transparent 70%);
  animation-delay: 0.5s;
  --tx: 100px; --ty: -50px;
}
.hero-aurora .blob-3 {
  width: 600px; height: 600px;
  bottom: -150px; left: 30%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.45), transparent 70%);
  animation-delay: 0.8s;
  --tx: 0; --ty: 80px;
}
.hero-aurora .blob-4 {
  width: 540px; height: 540px;
  bottom: 5%; right: 15%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.4), transparent 70%);
  animation-delay: 1.1s;
  --tx: 50px; --ty: 50px;
}
@keyframes aurora-settle {
  0% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.7); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}

/* A+C combo: LED grid cascades on lightning hit */
.hero-led-grid span:nth-child(1) { animation-delay: 1.42s; }
.hero-led-grid span:nth-child(2) { animation-delay: 1.50s; }
.hero-led-grid span:nth-child(3) { animation-delay: 1.58s; }
.hero-led-grid span:nth-child(4) { animation-delay: 1.66s; }
.hero-led-grid span:nth-child(5) { animation-delay: 1.74s; }
.hero-led-grid span:nth-child(6) { animation-delay: 1.82s; }
.hero-led-grid span:nth-child(7) { animation-delay: 1.46s; }
.hero-led-grid span:nth-child(8) { animation-delay: 1.54s; }
.hero-led-grid span:nth-child(9) { animation-delay: 1.62s; }
.hero-led-grid span:nth-child(10) { animation-delay: 1.70s; }
.hero-led-grid span:nth-child(11) { animation-delay: 1.78s; }
.hero-led-grid span:nth-child(12) { animation-delay: 1.86s; }
.hero-power-badge { animation-delay: 2s !important; }

/* === OPTION G: Aurora mesh with drift + pulse breathing === */
.hero-aurora { display: block !important; }
.hero-aurora .blob {
  will-change: transform, opacity;
}
.hero-aurora .blob-1 {
  animation: aurora-settle 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards,
             aurora-pulse-1 7s ease-in-out 3s infinite;
}
.hero-aurora .blob-2 {
  animation: aurora-settle 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards,
             aurora-pulse-2 9s ease-in-out 3s infinite;
}
.hero-aurora .blob-3 {
  animation: aurora-settle 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards,
             aurora-pulse-3 8s ease-in-out 3s infinite;
}
.hero-aurora .blob-4 {
  animation: aurora-settle 2.4s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards,
             aurora-pulse-4 11s ease-in-out 3s infinite;
}
@keyframes aurora-pulse-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.65; }
  50% { transform: translate(80px, 60px) scale(1.15); opacity: 1; }
}
@keyframes aurora-pulse-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate(-70px, 50px) scale(1.18); opacity: 0.95; }
}
@keyframes aurora-pulse-3 {
  0%, 100% { transform: translate(0, 0) scale(0.95); opacity: 0.6; }
  50% { transform: translate(50px, -70px) scale(1.2); opacity: 1; }
}
@keyframes aurora-pulse-4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-60px, -50px) scale(1.22); opacity: 0.9; }
}

/* Hide simple distant storm flashes - replaced by multi-strike */
.hero-storm { display: none; }

/* === H: Animated circuit pulses (SVG with animateMotion) - LEFT side === */
.hero-pulses {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: pulses-fade-in 1.4s ease-out 3.2s forwards;
  mask-image: linear-gradient(180deg, transparent 0, transparent 110px, black 200px, black 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, transparent 110px, black 200px, black 100%);
}
@keyframes pulses-fade-in {
  to { opacity: 1; }
}
.hero-pulses svg {
  width: 100%; height: 100%;
  overflow: visible;
}

.hero-lightning {
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.hero-lightning svg {
  width: 100%; height: 100%;
  overflow: visible;
}
.hero-lightning path {
  fill: none;
  stroke: #FFF4D8;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: miter;
  filter: drop-shadow(0 0 6px #FF6B1A) drop-shadow(0 0 14px rgba(255, 184, 0, 0.85));
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  opacity: 0;
  animation:
    lightning-draw 0.55s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.9s forwards,
    lightning-fade 2.6s cubic-bezier(0.4, 0, 0.6, 1) 1.45s forwards;
}
.hero-lightning path.branch {
  stroke-width: 1.5;
  animation-duration: 0.4s, 2.6s;
  animation-delay: 1.15s, 1.55s;
}
@keyframes lightning-draw {
  0% { stroke-dashoffset: 1800; opacity: 0; }
  10% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes lightning-fade {
  0% { opacity: 1; }
  10% { opacity: 0.4; }
  20% { opacity: 1; }
  35% { opacity: 0.5; }
  50% { opacity: 0.85; }
  100% { opacity: 0; }
}

/* Strike flash overlay */
.hero-strike-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 75% at 65% 45%, rgba(255, 240, 200, 0.95) 0%, rgba(255, 184, 0, 0.55) 25%, rgba(255, 107, 26, 0.3) 50%, transparent 75%);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: strike-flash 1.4s ease-out 1.4s forwards;
}
@keyframes strike-flash {
  0% { opacity: 0; }
  5% { opacity: 1; }
  15% { opacity: 0.3; }
  22% { opacity: 0.85; }
  35% { opacity: 0.2; }
  100% { opacity: 0; }
}

/* After lightning settles, residual orange glow stays */
.hero-residual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(255, 107, 26, 0.18) 0%, transparent 60%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  animation: residual-in 1.6s ease-out 3.2s forwards;
}
@keyframes residual-in {
  to { opacity: 1; }
}

/* === Continuous storm: distant lightning flashes (ambient) === */
.hero-storm {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-storm-flash {
  position: absolute;
  background: radial-gradient(ellipse 60% 40% at center, rgba(255, 235, 180, 0.55), rgba(255, 184, 0, 0.2) 35%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(40px);
}
.hero-storm-flash-1 {
  top: 5%; left: 12%;
  width: 480px; height: 320px;
  animation: storm-flash 5s ease-out 2.8s infinite;
}
.hero-storm-flash-2 {
  top: 35%; right: 10%;
  width: 420px; height: 280px;
  animation: storm-flash 7s ease-out 4.5s infinite;
}
.hero-storm-flash-3 {
  bottom: 12%; left: 35%;
  width: 360px; height: 240px;
  animation: storm-flash 9s ease-out 6.5s infinite;
}
@keyframes storm-flash {
  0%, 22% { opacity: 0; }
  24% { opacity: 0.85; }
  26% { opacity: 0.15; }
  28% { opacity: 0.7; }
  30% { opacity: 0.3; }
  32% { opacity: 0.55; }
  34% { opacity: 0; }
  100% { opacity: 0; }
}

/* === Falling sparks (welding-style, top to bottom) === */
.hero-spark {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--ember-300);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--ember-500), 0 0 14px rgba(255, 107, 26, 0.7);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  top: -10px;
}
.hero-spark-1 { left: 18%; animation: spark-fall 7s linear 4.5s infinite; }
.hero-spark-2 { left: 32%; animation: spark-fall 9s linear 6s infinite; width: 2px; height: 2px; }
.hero-spark-3 { left: 47%; animation: spark-fall 8s linear 7.5s infinite; }
.hero-spark-4 { left: 64%; animation: spark-fall 10s linear 5s infinite; width: 2px; height: 2px; }
.hero-spark-5 { left: 78%; animation: spark-fall 11s linear 8.5s infinite; }
.hero-spark-6 { left: 88%; animation: spark-fall 8.5s linear 10s infinite; width: 2px; height: 2px; }
.hero-spark-7 { left: 8%; animation: spark-fall 12s linear 11.5s infinite; }
.hero-spark-8 { left: 55%; animation: spark-fall 9.5s linear 13s infinite; width: 2.5px; height: 2.5px; }

@keyframes spark-fall {
  0% { top: -10px; opacity: 0; transform: translateX(0); }
  6% { opacity: 1; }
  35% { transform: translateX(20px); }
  60% { transform: translateX(-14px); }
  85% { opacity: 0.5; transform: translateX(10px); }
  100% { top: 110%; opacity: 0; transform: translateX(-6px); }
}

/* LED status grid that powers on cascade */
.hero-led-grid {
  position: absolute;
  top: 16px; right: 16px;
  display: grid;
  grid-template-columns: repeat(6, 6px);
  gap: 4px;
  z-index: 6;
  pointer-events: none;
}
.hero-led-grid span {
  width: 6px; height: 6px;
  background: rgba(255, 107, 26, 0.15);
  border-radius: 1px;
  opacity: 0;
  animation: led-on 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero-led-grid span:nth-child(1) { animation-delay: 0.5s; }
.hero-led-grid span:nth-child(2) { animation-delay: 0.62s; }
.hero-led-grid span:nth-child(3) { animation-delay: 0.74s; }
.hero-led-grid span:nth-child(4) { animation-delay: 0.86s; }
.hero-led-grid span:nth-child(5) { animation-delay: 0.98s; }
.hero-led-grid span:nth-child(6) { animation-delay: 1.10s; }
.hero-led-grid span:nth-child(7) { animation-delay: 0.55s; }
.hero-led-grid span:nth-child(8) { animation-delay: 0.67s; }
.hero-led-grid span:nth-child(9) { animation-delay: 0.79s; }
.hero-led-grid span:nth-child(10) { animation-delay: 0.91s; }
.hero-led-grid span:nth-child(11) { animation-delay: 1.03s; }
.hero-led-grid span:nth-child(12) { animation-delay: 1.15s; }
@keyframes led-on {
  0% { opacity: 0; background: rgba(255, 107, 26, 0.15); box-shadow: none; }
  60% { opacity: 1; background: var(--ember-500); box-shadow: 0 0 8px var(--ember-500); }
  100% { opacity: 0.85; background: var(--ember-400); box-shadow: 0 0 4px rgba(255,107,26,0.5); }
}

/* Power status badge - "ZASILANIE OK" type indicator */
.hero-power-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember-300);
  z-index: 6;
  opacity: 0;
  animation: badge-on 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s forwards;
}
.hero-power-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--ember-500);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ember-500);
}
@keyframes badge-on {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.15) 0%, rgba(11, 31, 58, 0.55) 70%, rgba(11, 31, 58, 0.88) 100%),
    linear-gradient(45deg, rgba(255, 107, 26, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-visual-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  z-index: 2;
}

.hero-visual-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(11, 31, 58, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember-300);
  align-self: flex-start;
}
.hero-visual-tag-dot {
  width: 6px; height: 6px;
  background: var(--ember-500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--ember-500);
}

.hero-visual-ph-mid {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
.hero-visual-ph-mid svg {
  width: 88px; height: 88px;
  color: var(--ember-500);
  opacity: 0.7;
  filter: drop-shadow(0 0 32px rgba(255, 107, 26, 0.5));
}
.hero-visual-ph-mid span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251, 248, 240, 0.55);
  text-align: center;
}

.hero-visual-caption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(251, 248, 240, 0.5);
  align-self: flex-end;
}

/* Floating card over visual (cream) */
.hero-visual-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  padding: 20px 22px;
  background: var(--paper);
  color: var(--navy-800);
  border-radius: 18px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  transform: rotate(-2deg);
  border: 1px solid var(--bone);
}
.hero-visual-card-icon {
  width: 44px; height: 44px;
  background: var(--ember-500);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(255, 107, 26, 0.3);
}
.hero-visual-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.15;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.hero-visual-card p {
  font-size: 12px;
  color: var(--mute-100);
  line-height: 1.3;
  margin: 0;
}

/* Mini secondary image - floating lower right */
.hero-visual-mini {
  position: absolute;
  top: -32px;
  right: -20px;
  width: 140px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5);
  border: 2px solid var(--paper);
  z-index: 4;
  transform: rotate(3deg);
  transition: transform 0.4s var(--ease);
}
@media (min-width: 768px) { .hero-visual-mini { width: 180px; top: -40px; right: -30px; } }
.hero-visual-mini:hover { transform: rotate(0deg) scale(1.04); }
.hero-visual-mini img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual-mini::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0) 40%, rgba(11,31,58,0.8) 100%);
}
.hero-visual-mini-caption {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  color: var(--paper);
  z-index: 2;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.hero-visual-mini-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember-300);
  margin-bottom: 3px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 248, 240, 0.5);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fade-in 1s ease 1.5s forwards;
}
@media (min-width: 768px) { .hero-scroll { display: flex; } }
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, var(--ember-300) 100%);
  opacity: 0.7;
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -1px;
  right: -1px;
  height: 8px;
  background: var(--ember-500);
  box-shadow: 0 0 8px var(--ember-500);
  animation: scroll-drop 2.4s cubic-bezier(0.65, 0, 0.35, 1) 2.6s infinite;
}
@keyframes scroll-drop {
  0% { top: -8px; opacity: 0; }
  10% { opacity: 1; }
  60% { top: 40px; opacity: 0.4; }
  70%, 100% { top: 40px; opacity: 0; }
}

/* ============================================================
   SECTIONS - BRIGHT
   ============================================================ */

.sec {
  position: relative;
  padding: 120px 0;
  background: var(--paper);
  color: var(--graphite);
}
@media (max-width: 767px) { .sec { padding: 80px 0; } }

.sec-alt { background: var(--paper-2); }

.sec-dark {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--paper);
}
.sec-dark h1, .sec-dark h2, .sec-dark h3, .sec-dark h4 { color: var(--paper); }

.sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 72px;
  align-items: end;
}
@media (min-width: 1024px) {
  .sec-head { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}

.sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--navy-800);
  max-width: 16ch;
}
.sec-dark .sec-title { color: var(--paper); }
.sec-title em {
  font-style: normal;
  color: var(--ember-500);
  position: relative;
}

.sec-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--mute-200);
  max-width: 54ch;
}
.sec-dark .sec-lead { color: rgba(251, 248, 240, 0.75); }

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .services { grid-template-columns: repeat(3, 1fr); } }

.svc {
  position: relative;
  padding: 40px 36px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  color: inherit;
  box-shadow: 0 1px 2px rgba(11, 31, 58, 0.03);
}
.svc::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ember-500), transparent);
  transform: translateX(-50%);
  transition: width 0.5s var(--ease);
}
.svc:hover {
  border-color: rgba(255, 107, 26, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(11, 31, 58, 0.15);
}
.svc:hover::before { width: 80%; }
.svc-featured {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-color: rgba(255, 107, 26, 0.2);
}
.svc-featured::before { width: 40%; background: var(--ember-500); opacity: 0.5; }

.svc-icon {
  width: 56px; height: 56px;
  background: var(--ember-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember-600);
  margin-bottom: 28px;
  transition: all 0.3s;
}
.svc:hover .svc-icon {
  background: var(--ember-500);
  color: var(--paper);
  transform: rotate(-4deg) scale(1.08);
  box-shadow: 0 12px 24px rgba(255, 107, 26, 0.3);
}

.svc-num {
  position: absolute;
  top: 36px; right: 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--mute-100);
  letter-spacing: 0.1em;
}

.svc h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-800);
  margin-bottom: 14px;
}

.svc p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mute-200);
  flex-grow: 1;
  margin-bottom: 24px;
}

.svc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}
.svc-foot-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ember-600);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.svc-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  transition: all 0.3s var(--ease);
}
.svc:hover .svc-arrow {
  background: var(--ember-500);
  border-color: var(--ember-500);
  color: var(--paper);
  transform: rotate(-45deg);
}

.svc-badge {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--ember-50);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember-600);
  margin-left: 10px;
  vertical-align: middle;
  font-weight: 600;
}

/* ============================================================
   MANIFESTO - BRIGHT ALT
   ============================================================ */

.manifesto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) { .manifesto { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .manifesto { grid-template-columns: repeat(3, 1fr); } }

.man {
  position: relative;
  padding: 44px 36px;
  background: var(--paper);
  transition: background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 290px;
}
.man:hover {
  background: var(--navy-800);
}
.man:hover .man-idx { color: var(--ember-300); }
.man:hover .man-title,
.man:hover .man-title em { color: var(--paper); }
.man:hover .man-title em { color: var(--ember-500); }
.man:hover .man-body { color: rgba(251, 248, 240, 0.8); }
.man:hover .man-icon {
  background: var(--ember-500);
  color: var(--paper);
}

.man-icon {
  width: 40px; height: 40px;
  background: var(--ember-50);
  color: var(--ember-600);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.man-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--mute-100);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.man-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy-800);
  margin-bottom: 16px;
  transition: color 0.3s;
}
.man-title em {
  font-style: normal;
  color: var(--ember-500);
  transition: color 0.3s;
}

.man-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mute-200);
  margin-top: auto;
  transition: color 0.3s;
}

/* ============================================================
   PROCESS - BRIGHT
   ============================================================ */

.proc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.proc-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--hair);
  align-items: flex-start;
  position: relative;
}
@media (min-width: 1024px) {
  .proc-step { grid-template-columns: 140px 1fr 1.4fr; gap: 56px; padding: 56px 0; }
}
.proc-step:first-child { border-top: 1px solid var(--hair); }

.proc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--ember-500);
  text-stroke: 2px var(--ember-500);
  letter-spacing: -0.03em;
  transition: all 0.3s;
}
.proc-step:hover .proc-num {
  color: var(--ember-500);
}

.proc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy-800);
}

.proc-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mute-200);
  max-width: 48ch;
}

/* ============================================================
   PORTFOLIO - BENTO
   ============================================================ */

.port {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .port {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 16px;
  }
  .port-1 { grid-column: span 7; grid-row: span 2; }
  .port-2 { grid-column: span 5; }
  .port-3 { grid-column: span 5; }
  .port-4 { grid-column: span 4; }
  .port-5 { grid-column: span 4; }
  .port-6 { grid-column: span 4; }
}

.port-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border-radius: 20px;
  min-height: 260px;
  transition: all 0.4s var(--ease);
}
@media (min-width: 768px) { .port-card { min-height: unset; } }
.port-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(11, 31, 58, 0.3);
}
.port-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s var(--ease);
}
.port-card:hover .port-card-img {
  transform: scale(1.06);
}
.port-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,31,58,0.15) 0%, rgba(11,31,58,0.6) 70%, rgba(11,31,58,0.92) 100%);
  pointer-events: none;
  z-index: 1;
}

.port-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  z-index: 1;
}
.port-card-tag {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(11, 31, 58, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember-300);
  align-self: flex-start;
}
.port-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 6px;
}
.port-card-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(251, 248, 240, 0.6);
  letter-spacing: 0.08em;
}

/* ============================================================
   AREA
   ============================================================ */

.area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .area { grid-template-columns: 1.1fr 1fr; gap: 80px; } }

.area-map {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
  border: 1px solid var(--hair);
  border-radius: 28px;
  overflow: hidden;
  padding: 24px;
  box-shadow: 0 16px 32px -12px rgba(11, 31, 58, 0.08);
}
.area-map svg { width: 100%; height: 100%; }

.area-cities { display: flex; flex-direction: column; }
.area-city {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  padding: 22px 0;
  align-items: center;
  border-bottom: 1px solid var(--hair);
  color: var(--navy-800);
  transition: all 0.3s var(--ease);
  position: relative;
}
.area-city::before {
  content: '';
  position: absolute;
  left: -24px; top: 50%;
  width: 0; height: 2px;
  background: var(--ember-500);
  transform: translateY(-50%);
  transition: width 0.3s var(--ease);
}
.area-city:hover { padding-left: 16px; }
.area-city:hover::before { width: 20px; }
.area-city:hover .area-city-name { color: var(--ember-500); }

.area-city-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--mute-100);
  letter-spacing: 0.1em;
}
.area-city-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy-800);
  transition: color 0.3s;
}
.area-city-dist {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ember-600);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.test {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .test { grid-template-columns: repeat(3, 1fr); } }

.test-card {
  padding: 40px 32px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  box-shadow: 0 1px 2px rgba(11, 31, 58, 0.03);
}
.test-card:hover {
  border-color: rgba(255, 107, 26, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(11, 31, 58, 0.1);
}

.test-stars {
  display: flex; gap: 2px;
  color: var(--ember-500);
  margin-bottom: 20px;
}
.test-stars svg { width: 16px; height: 16px; fill: currentColor; }

.test-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--navy-700);
  margin-bottom: 28px;
  flex-grow: 1;
}

.test-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}
.test-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-800);
}
.test-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ember-600);
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--hair);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--hair-strong); }
.faq-item.open {
  border-color: rgba(255, 107, 26, 0.35);
  box-shadow: 0 16px 32px -12px rgba(255, 107, 26, 0.12);
  background: linear-gradient(180deg, var(--ember-50) 0%, var(--paper) 40%);
}

.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--navy-800);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--ember-500); }

.faq-q-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.faq-q-plus {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
  position: relative;
  flex: 0 0 auto;
  transition: all 0.3s var(--ease-swift);
}
.faq-q-plus::before,
.faq-q-plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease-swift);
}
.faq-q-plus::before { top: 50%; left: 12px; right: 12px; height: 1.5px; margin-top: -0.75px; }
.faq-q-plus::after { left: 50%; top: 12px; bottom: 12px; width: 1.5px; margin-left: -0.75px; }
.faq-item.open .faq-q-plus {
  background: var(--ember-500);
  border-color: var(--ember-500);
  color: var(--paper);
}
.faq-item.open .faq-q-plus::after { transform: scaleY(0); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner {
  padding: 0 28px 28px;
  max-width: 70ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mute-200);
}
.faq-a-inner strong { color: var(--ember-600); font-weight: 600; }
.faq-a-inner a { color: var(--ember-600); border-bottom: 1px solid rgba(232, 85, 0, 0.4); }
.faq-a-inner ul { margin-top: 12px; padding-left: 20px; }
.faq-a-inner li { margin-bottom: 8px; }

/* ============================================================
   CTA
   ============================================================ */

.cta {
  position: relative;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--paper);
  padding: 120px 0;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 26, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 184, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) { .cta-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin-bottom: 40px;
}
.cta-title em { font-style: normal; color: var(--ember-500); }

.cta-contact {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 40px;
}
.cta-contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(251, 248, 240, 0.1);
  align-items: baseline;
}
.cta-contact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251, 248, 240, 0.5);
}
.cta-contact-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--paper);
  line-height: 1.25;
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  margin: -8px 0;
}
.cta-contact-value-accent { color: var(--ember-300); }

/* Form */
.form {
  background: var(--paper);
  color: var(--navy-800);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
}
.form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.025em;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.form-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ember-600);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute-100);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--navy-800);
  transition: all 0.2s;
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--ember-500);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 559px) { .form-row { grid-template-columns: 1fr; } }

.form-consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 24px 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--mute-200);
}
.form-consent input { margin-top: 4px; accent-color: var(--ember-500); }
.form-consent a { color: var(--ember-600); border-bottom: 1px solid var(--ember-500); }

.form-submit {
  width: 100%;
  background: var(--ember-500);
  color: var(--paper);
  border: 0;
  border-radius: 100px;
  padding: 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease-swift);
  box-shadow: 0 12px 28px rgba(255, 107, 26, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--ember-600);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 107, 26, 0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */

.foot {
  background: var(--navy-900);
  color: var(--paper);
  padding: 100px 0 36px;
  position: relative;
  z-index: 2;
}

.foot-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 64px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(251, 248, 240, 0.2);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251, 248, 240, 0.1);
}
@media (min-width: 768px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; } }

.foot-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ember-300);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 4px; }
.foot-col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 0;
  font-size: 14.5px;
  color: rgba(251, 248, 240, 0.75);
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--ember-300); }

.foot-brand-block p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(251, 248, 240, 0.7);
  margin: 16px 0;
  max-width: 44ch;
}
.foot-brand-contact {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: rgba(251, 248, 240, 0.85);
  line-height: 1.9;
  letter-spacing: 0.03em;
}
.foot-brand-contact strong { color: var(--ember-300); font-weight: 500; }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(251, 248, 240, 0.5);
}
.foot-bottom a { color: var(--ember-300); }

/* ============================================================
   FLOATING PHONE
   ============================================================ */

.float-phone {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--ember-500);
  color: var(--paper);
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(255, 107, 26, 0.5);
  transition: transform 0.25s var(--ease-swift);
}
.float-phone:hover { transform: scale(1.05); }
@media (min-width: 1024px) { .float-phone { display: none; } }

/* ============================================================
   REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal[data-d="4"] { transition-delay: 0.4s; }
.reveal[data-d="5"] { transition-delay: 0.5s; }
.reveal[data-d="6"] { transition-delay: 0.6s; }

/* Skip */
.skip {
  position: absolute;
  top: -40px; left: 8px;
  background: var(--ember-500);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  z-index: 100;
}
.skip:focus { top: 8px; }

*:focus-visible {
  outline: 2px solid var(--ember-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Breadcrumb */
.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 120px 0 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute-100);
  align-items: center;
}
.crumb a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 6px;
  margin: -4px -6px;
}
.crumb a:hover { color: var(--ember-500); }
.crumb-sep { opacity: 0.4; }
.crumb-cur { color: var(--ember-500); }

/* ============================================================
   SUBPAGE COMPONENTS
   ============================================================ */

/* Subpage hero - smaller, still premium */
.subhero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--paper);
  padding: 140px 0 80px;
  overflow: hidden;
}
@media (min-width: 768px) { .subhero { padding: 180px 0 100px; } }

.subhero-glow {
  position: absolute;
  top: 10%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--ember-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.subhero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 184, 0, 0.14) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent);
  opacity: 0.5;
}

.subhero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
@media (min-width: 1024px) { .subhero-inner { grid-template-columns: 1.4fr 1fr; gap: 64px; } }

.subhero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin: 24px 0 24px;
}
.subhero-title em { font-style: normal; color: var(--ember-500); }

.subhero-sub {
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(251, 248, 240, 0.85);
  max-width: 56ch;
  margin-bottom: 36px;
}
.subhero-sub strong { color: var(--ember-300); font-weight: 600; }

.subhero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center;
}

.subhero-quick {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 28px;
  background: rgba(251, 248, 240, 0.04);
  border: 1px solid rgba(251, 248, 240, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.subhero-quick-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(251, 248, 240, 0.08);
}
.subhero-quick-row:last-child { padding-bottom: 0; border-bottom: 0; }
.subhero-quick-icon {
  width: 36px; height: 36px;
  background: rgba(255, 107, 26, 0.15);
  color: var(--ember-300);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.subhero-quick-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251, 248, 240, 0.55);
  margin-bottom: 2px;
}
.subhero-quick-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--paper);
}

/* Crumb on dark subhero */
.crumb-dark {
  color: rgba(251, 248, 240, 0.55);
  padding: 0 0 12px;
}
.crumb-dark a { color: rgba(251, 248, 240, 0.7); }
.crumb-dark a:hover { color: var(--ember-300); }
.crumb-dark .crumb-cur { color: var(--ember-300); }

/* ============================================================
   PROSE (article-like content)
   ============================================================ */

.prose {
  max-width: 68ch;
  color: var(--graphite-soft);
  font-size: 16.5px;
  line-height: 1.75;
}
.prose > * + * { margin-top: 1.1rem; }
.prose h2 {
  margin-top: 3rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy-800);
}
.prose h3 {
  margin-top: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--navy-800);
}
.prose p { color: var(--graphite-soft); }
.prose strong { color: var(--navy-800); font-weight: 600; }
.prose a { color: var(--ember-600); border-bottom: 1px solid rgba(232, 85, 0, 0.35); }
.prose a:hover { border-bottom-color: var(--ember-500); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--ember-500);
  padding: 12px 20px;
  background: var(--ember-50);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--navy-800);
  margin: 1.5rem 0;
}

/* ============================================================
   SCOPE LIST (co wchodzi w zakres usługi)
   ============================================================ */

.scope-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) { .scope-list { grid-template-columns: repeat(2, 1fr); } }

.scope-list li {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 12px;
  transition: all 0.25s var(--ease-swift);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--graphite);
  align-items: flex-start;
}
.scope-list li:hover {
  border-color: var(--ember-300);
  transform: translateX(4px);
}
.scope-check {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  background: var(--ember-500);
  color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.scope-check svg { width: 12px; height: 12px; }

/* ============================================================
   WHEN LIST (kiedy warto)
   ============================================================ */

.when-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .when-list { grid-template-columns: repeat(2, 1fr); } }

.when-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 16px;
  border-left: 3px solid var(--ember-500);
  transition: all 0.25s;
}
.when-item:hover { border-color: var(--ember-300); border-left-color: var(--ember-500); }
.when-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  background: var(--ember-50);
  color: var(--ember-600);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.when-text { font-size: 14.5px; line-height: 1.6; color: var(--mute-200); }
.when-text strong { display: block; color: var(--navy-800); font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 4px; letter-spacing: -0.01em; }

/* ============================================================
   PRICE TABLE
   ============================================================ */

.price-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(11, 31, 58, 0.03);
}
.price-card:hover {
  border-color: rgba(255, 107, 26, 0.3);
  box-shadow: 0 20px 40px -12px rgba(11, 31, 58, 0.08);
}

.price-card-head {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--hair);
}
.price-card-ico {
  width: 44px; height: 44px;
  background: var(--ember-50);
  color: var(--ember-600);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.price-card-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--navy-800);
  letter-spacing: -0.02em;
}

.price-list {
  display: flex; flex-direction: column;
  gap: 2px;
  list-style: none;
  padding: 0;
}
.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--hair);
  align-items: baseline;
}
.price-list li:last-child { border-bottom: 0; }
.price-name { color: var(--graphite); font-size: 14.5px; line-height: 1.4; }
.price-value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 15px;
  color: var(--ember-600);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.price-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  font-size: 13px;
  color: var(--mute-100);
  line-height: 1.55;
}
.price-note strong { color: var(--navy-800); }

/* ============================================================
   SERVICE DETAIL LAYOUT
   ============================================================ */

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) {
  .svc-detail-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
}
.svc-detail-visual {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-800);
}
.svc-detail-visual img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ============================================================
   CITIES BENTO (obszar hub)
   ============================================================ */

.cities-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .cities-bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .cities-bento { grid-template-columns: repeat(4, 1fr); } }

.city-card {
  position: relative;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 20px;
  transition: all 0.3s var(--ease);
  color: inherit;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.city-card:hover {
  border-color: var(--ember-300);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -12px rgba(11, 31, 58, 0.12);
}
.city-card-base {
  background: var(--navy-800);
  color: var(--paper);
  border-color: transparent;
}
.city-card-base h3 { color: var(--paper); }
.city-card-base .city-card-dist { color: var(--ember-300); }

.city-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.city-card-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mute-100);
}
.city-card-base .city-card-idx { color: rgba(251, 248, 240, 0.5); }

.city-card-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember-600);
  padding: 4px 8px;
  background: var(--ember-50);
  border-radius: 100px;
  font-weight: 600;
}
.city-card-base .city-card-badge {
  background: rgba(255, 107, 26, 0.2);
  color: var(--ember-300);
}
.city-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.025em;
  color: var(--navy-800);
  line-height: 1.1;
  margin-bottom: 8px;
}
.city-card-dist {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ember-600);
  letter-spacing: 0.05em;
}

/* Emergency callout (pogotowie red variant) */
.emergency-callout {
  background: linear-gradient(135deg, var(--ember-500) 0%, #E54D0E 100%);
  color: var(--paper);
  padding: 48px;
  border-radius: 24px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) { .emergency-callout { grid-template-columns: 2fr 1fr; padding: 56px; } }
.emergency-callout h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.emergency-callout p {
  color: rgba(251, 248, 240, 0.9);
  font-size: 15px;
  line-height: 1.5;
}
.emergency-callout-btn {
  background: var(--navy-900);
  color: var(--paper);
  padding: 20px 32px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transition: all 0.25s var(--ease-swift);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.emergency-callout-btn:hover {
  background: var(--paper);
  color: var(--navy-900);
  transform: translateY(-2px);
}

/* ============================================================
   STANDALONE CTA SECTION (for most subpages)
   - reuses .cta but lighter variant may come
   ============================================================ */

