:root {
  --ink: #050000;
  --navy: #0a0000;
  --panel: #140404;
  --line: rgba(255, 26, 26, 0.28);
  --red: #e10600;
  --red-2: #ff2a2a;
  --red-glow: #ff4d4d;
  --gold: #e10600;
  --gold-2: #ff2a2a;
  --live: #ff3b3b;
  --text: #f3f3f3;
  --muted: #b9a4a4;
  --white: #ffffff;
  --danger: #ff6b6b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --max: 1160px;
  --font: "Manrope", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: #000;
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; display: block; }
.energy-bg svg { max-width: none; }
a { color: inherit; }

.wrap {
  width: min(calc(100% - 20px), var(--max));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* Hareketli enerji: canvas (js/energy.js) */
.energy-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
  background: #000;
}
.energy-bg { display: none; }

main,
footer { position: relative; z-index: 1; }

.site-header { z-index: 50; }
.mobile-bar,
.float-wa { z-index: 40; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 0 24px rgba(225, 6, 0, 0.25);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 62px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  min-width: 0;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  object-fit: cover;
  background: #050000;
  box-shadow: 0 0 0 1px var(--red);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}
.brand-text span { font-size: 0.98rem; }
.brand-text b { color: var(--red-2); font-weight: 800; }
.brand-text small {
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 10px;
  right: 10px;
  display: none;
  flex-direction: column;
  background: #0d0000;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  max-height: calc(100dvh - 120px);
  overflow: auto;
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: flex; }
.site-nav a {
  text-decoration: none;
  padding: 14px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}
.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-drop-btn:hover,
.nav-drop.is-current > .nav-drop-btn {
  color: var(--white);
  background: rgba(225, 6, 0, 0.18);
}

.nav-drop { display: flex; flex-direction: column; }
.nav-drop-btn {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 14px;
  border-radius: 12px;
  color: var(--muted);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
}
.nav-drop-btn::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .7;
  flex-shrink: 0;
}
.nav-drop-menu {
  display: none;
  flex-direction: column;
  padding: 0 0 6px 12px;
}
.nav-drop.is-open > .nav-drop-menu { display: flex; }
.nav-drop-menu a { font-size: 1rem; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-cta .btn { display: none; }

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  margin: 0 auto;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 18px;
  min-height: 48px;
  transition: transform 0.15s, filter 0.15s, background 0.15s;
}
.btn-gold {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}
.btn-wa { background: #128c4b; color: white; }
.btn-lg { width: 100%; font-size: 1.02rem; min-height: 52px; }

.live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--live);
}
.live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 10px #ff1a1a;
  animation: pulse 1.8s infinite;
}
.live.is-closed { color: #c9c9c9; }
.live.is-closed i {
  background: #777;
  animation: none;
  box-shadow: none;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(255, 26, 26, 0); }
}

.top-bar {
  background: #0a0000;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 8px 10px;
  color: var(--red-2);
}
.sunday-banner {
  background: rgba(225, 6, 0, 0.14);
  border: 1px solid rgba(225, 6, 0, 0.4);
  color: #ffb4b4;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  margin: 12px 0 0;
}
table.hours td.is-closed { color: var(--danger); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 28px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.hero h1 {
  font-size: clamp(1.65rem, 8vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 10px 0 12px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red-2);
  text-shadow: 0 0 18px rgba(225, 6, 0, 0.45);
}
.lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 12px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-meta strong { color: var(--white); }

.hero-card {
  background: rgba(16, 0, 0, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.hero-card h2 { margin: 0 0 8px; font-size: 1.1rem; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 14px;
}
.stat {
  background: rgba(225, 6, 0, 0.08);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
}
.stat b {
  display: block;
  font-size: 0.88rem;
  color: var(--red-2);
  letter-spacing: -0.03em;
}
.stat span { font-size: 0.72rem; color: var(--muted); }

section { padding: 36px 0; }
.section-kicker {
  color: var(--red-2);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
h2 {
  font-size: clamp(1.45rem, 6vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 8px 0 12px;
}
.muted { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}
.card {
  background: rgba(16, 0, 0, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(225, 6, 0, 0.16);
  color: var(--red-2);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.chip {
  border: 1px solid var(--line);
  background: rgba(225, 6, 0, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 700;
}
a.chip { text-decoration: none; color: inherit; }
a.chip:hover { border-color: var(--red-2); color: var(--white); }

.steps { display: grid; gap: 14px; margin-top: 8px; }
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
}
.num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.faq-item { border-bottom: 1px solid var(--line); scroll-margin-top: 96px; }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--white);
  font: inherit;
  font-weight: 700;
  padding: 16px 0;
  min-height: 48px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item button::after { content: "+"; color: var(--red-2); font-size: 1.3rem; }
.faq-item.is-open button::after { content: "–"; }
.faq-item .answer { display: none; color: var(--muted); padding: 0 0 16px; }
.faq-item.is-open .answer { display: block; }

.work-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  text-decoration: none;
}
.work-preview img {
  width: 100%;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0a0000;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.work-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0a0000;
  color: inherit;
  text-decoration: none;
}
.work-item img,
.work-item video {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: #000;
}
.work-item.wide {
  grid-column: span 2;
}
.work-item.wide img {
  aspect-ratio: 16 / 8;
}
.work-item.work-video {
  grid-column: span 2;
  background: #000;
}
.work-item.work-video video {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: #000;
}
.work-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 12px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  font-size: 0.8rem;
  font-weight: 700;
}

.inline-shot {
  margin: 16px 0 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0000;
}
.inline-shot img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}
.inline-shot figcaption {
  margin: 0;
  padding: 10px 12px 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.88);
  display: grid;
  place-items: center;
  padding: 16px;
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(100%, 920px);
  max-height: min(82vh, 920px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.lightbox p {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: #fff;
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}
.why-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  background: rgba(16, 0, 0, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.why-item .tick {
  color: var(--red-2);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
}
.why-item h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}
.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.cta-band {
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.22), transparent 70%), var(--panel);
  border-block: 1px solid var(--line);
  padding: 28px 0;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

form { display: grid; gap: 12px; }
label { font-size: 0.85rem; font-weight: 700; color: var(--muted); }
input, textarea, select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0a0000;
  color: var(--white);
  padding: 14px;
  font: inherit;
  font-size: 16px;
  min-height: 48px;
}
textarea { min-height: 96px; }
.hp { position: absolute; left: -9999px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.info-box {
  background: rgba(16, 0, 0, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}
.info-box h3 { margin: 0 0 6px; }

.page-hero { padding: 24px 0 10px; }
.page-hero h1 {
  font-size: clamp(1.55rem, 7vw, 2.15rem);
  letter-spacing: -0.04em;
  margin: 8px 0;
}
.breadcrumbs { color: var(--muted); font-size: 0.86rem; }
.breadcrumbs a { color: var(--red-2); text-decoration: none; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 110px;
  color: var(--muted);
  font-size: 0.92rem;
  background: rgba(0, 0, 0, 0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
footer a { text-decoration: none; }
footer a:hover { color: var(--red-2); }
footer ul { list-style: none; padding: 0; margin: 8px 0 0; }
footer li { margin: 6px 0; }
.tiny { font-size: 0.8rem; }

.mobile-bar {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: #000;
  border-top: 1px solid var(--line);
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
  box-shadow: none;
  transition: transform 0.22s ease, visibility 0.22s;
}
.mobile-bar[data-hide-until-scroll]:not(.is-visible) {
  transform: translateY(calc(100% + 12px));
  visibility: hidden;
  pointer-events: none;
}
.mobile-bar .btn { flex: 1; min-height: 50px; font-size: 1rem; }

.float-wa { display: none; }

.map-frame {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 12px;
}

table.hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
table.hours td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
table.hours td:last-child { text-align: right; color: var(--red-2); font-weight: 700; }

.prose p { color: var(--muted); }
.prose h2 { margin-top: 24px; }

.tool-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}
.tool-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(16, 0, 0, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.tool-card h3 {
  margin: 6px 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.tool-card p { margin: 0; color: var(--muted); }
.tool-go {
  display: inline-block;
  margin-top: 14px;
  color: var(--red-2);
  font-weight: 800;
}
.tool-card:hover { border-color: var(--red-2); }

.panel-promo { padding-top: 8px; }
.panel-promo-box {
  background:
    linear-gradient(160deg, rgba(225, 6, 0, 0.2), transparent 42%),
    rgba(16, 0, 0, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 18px 20px;
  box-shadow: var(--shadow);
}
.panel-promo-box h2 { margin: 6px 0 10px; }
.panel-promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}
.panel-promo-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.panel-promo-ico {
  display: inline-block;
  color: var(--red-2);
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.panel-promo-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}
.panel-promo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.panel-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.panel-promo-note {
  margin: 12px 0 0;
  color: var(--muted);
}

.review-summary {
  color: var(--white);
  font-weight: 800;
  margin: 8px 0 10px;
}
.review-summary strong { color: #fbbc04; font-size: 1.35rem; }
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}
@media (min-width: 800px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.review-card {
  background: rgba(16, 0, 0, 0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.review-stars {
  margin: 0 0 10px;
  color: #fbbc04;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}
.review-text {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
}
.review-meta {
  margin: 12px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}
.review-meta span {
  color: var(--red-2);
  margin-left: 6px;
}
.review-empty {
  margin-top: 18px;
  background: rgba(16, 0, 0, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.review-empty p { margin: 0; color: var(--muted); }
.review-grid:empty,
.review-grid[hidden] {
  display: none;
}
.review-grid:empty,
.review-grid[hidden] {
  display: none;
}
.review-embed {
  width: 100%;
  min-height: 520px;
  height: 560px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: #0a0000;
}
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.calc-layout { display: grid; gap: 22px; }
.calc-rates h2 { font-size: 1.35rem; }
.calc-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  cursor: pointer;
}
.calc-check input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: var(--red);
}
.calc-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}
.calc-cat {
  border: 1px solid var(--line);
  background: rgba(225, 6, 0, 0.08);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}
.calc-cat.is-on {
  background: var(--red);
  border-color: var(--red);
}
.calc-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.calc-device {
  text-align: left;
  background: rgba(16, 0, 0, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  color: var(--white);
  font: inherit;
  cursor: pointer;
  min-height: 64px;
}
.calc-device strong { display: block; font-size: 0.92rem; }
.calc-device span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}
.calc-device:hover { border-color: var(--red-2); }
.calc-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.calc-side-head h2 { margin: 0; }
.calc-side-head .btn { min-height: 40px; padding: 8px 12px; font-size: 0.82rem; }
.calc-row {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  margin: 10px 0;
  background: rgba(225, 6, 0, 0.06);
}
.calc-row header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.calc-row h3 { margin: 0; font-size: 0.98rem; }
.calc-del {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(225, 6, 0, 0.2);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}
.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.calc-fields label {
  display: grid;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc-fields input { min-height: 44px; padding: 10px; }
.calc-row-kwh {
  margin: 8px 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red-2);
}
.calc-totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.calc-stat {
  background: rgba(225, 6, 0, 0.08);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}
.calc-stat b {
  display: block;
  font-size: 1.05rem;
  color: var(--red-2);
  letter-spacing: -0.03em;
}
.calc-stat span { font-size: 0.72rem; color: var(--muted); font-weight: 700; }
.calc-stat.is-main {
  background: rgba(225, 6, 0, 0.18);
  grid-column: 1 / -1;
}
.calc-stat.is-main b { font-size: 1.35rem; color: #fff; }
.calc-break {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 8px;
}
.calc-break h3 { margin: 0 0 8px; font-size: 1rem; }
.calc-break ul { list-style: none; padding: 0; margin: 0 0 10px; }
.calc-break li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}
.calc-break li b { color: var(--white); }
.calc-break li.is-sum { color: var(--white); font-weight: 800; border-bottom: 0; }
.calc-note { font-size: 0.82rem; margin-top: 12px; }
#calc-custom .btn { width: 100%; }
.top-bar.is-closed { color: #c9c9c9; }

@media (max-width: 400px) {
  .brand-text small { display: none; }
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .wrap { width: min(calc(100% - 32px), var(--max)); }
  .header-inner { min-height: 74px; gap: 16px; }
  .brand img { width: 48px; height: 48px; }
  .brand-text span { font-size: 1.08rem; }
  .nav-toggle { display: none; }
  .header-cta .btn { display: inline-flex; min-height: 44px; width: auto; }
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
    max-height: none;
    overflow: visible;
    gap: 2px;
    align-items: center;
  }
  .site-nav a,
  .nav-drop-btn { padding: 8px 10px; font-size: 0.82rem; border-radius: 999px; }
  .nav-drop { position: relative; }
  .nav-drop-btn { width: auto; justify-content: center; }
  .nav-drop-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    min-width: 168px;
    padding: 6px;
    background: #0d0000;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    z-index: 60;
  }
  .nav-drop-menu a { font-size: 0.86rem; padding: 10px 12px; }
  @media (hover: hover) {
    .nav-drop:hover > .nav-drop-menu,
    .nav-drop:focus-within > .nav-drop-menu { display: flex; }
  }
  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
  .hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn-lg,
  .cta-inner .btn { width: auto; }
  .hero-card { padding: 24px; border-radius: 24px; }
  .stat b { font-size: 1.2rem; }
  section { padding: 64px 0; }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .card { padding: 22px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .work-preview img { height: 110px; }
  .work-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .inline-shot img { max-height: 340px; }
  .split { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .calc-layout { grid-template-columns: 1.05fr 0.95fr; align-items: start; gap: 28px; }
  .calc-side { position: sticky; top: 92px; }
  .calc-pick { grid-template-columns: 1fr 1fr 1fr; }
  .tool-cards { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .panel-promo-box { padding: 28px 28px 24px; }
  .panel-promo-grid { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
  .review-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .mobile-bar { display: none; }
  .float-wa {
    display: grid;
    place-items: center;
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 41;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-decoration: none;
  }
  .float-wa svg { width: 28px; height: 28px; }
  footer { padding: 40px 0 48px; }
  .page-hero { padding: 48px 0 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .live i { animation: none; }
}
