/* =========================================================
   HELION — Photovoltaik & Solarenergie (Demo) · loew.me
   Dark, high-tech, energiegeladen · Shared stylesheet
   ========================================================= */

:root {
  /* base night palette */
  --night: #0B1020;
  --night-2: #0f1630;
  --panel: #131a34;
  --panel-2: #182146;
  --line: rgba(233, 255, 61, .08);
  --line-soft: rgba(255, 255, 255, .09);

  /* text */
  --white: #f4f7ff;
  --text: #c8cee6;
  --muted: #7d86a8;

  /* signal colours */
  --lime: #E9FF3D;
  --yellow: #FFD21E;
  --orange: #FF8A1E;
  --amber: #ffb300;

  /* the active energy accent */
  --accent: var(--lime);
  --accent-ink: #0B1020;

  --grad-sun: linear-gradient(120deg, #E9FF3D 0%, #FFD21E 42%, #FF8A1E 100%);
  --grad-sun-soft: linear-gradient(120deg, rgba(233,255,61,.16), rgba(255,138,30,.16));

  --maxw: 1260px;
  --radius: 20px;
  --radius-lg: 30px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --glow: 0 0 40px -6px rgba(233, 255, 61, .45);
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, .8);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ambient starfield / grid glow behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 80% -5%, rgba(255, 138, 30, .10), transparent 60%),
    radial-gradient(900px 600px at 5% 8%, rgba(233, 255, 61, .07), transparent 55%),
    radial-gradient(1200px 900px at 50% 120%, rgba(24, 33, 70, .55), transparent 60%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}

h1, h2, h3, h4, .display {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 .4em;
}

p { margin: 0 0 1.1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--lime); color: var(--night); }

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

.grad-text {
  background: var(--grad-sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Sora", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--grad-sun);
  border-radius: 3px;
}

.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(46px, 6vw, 82px) 0; position: relative; }

.lead { font-size: clamp(1.08rem, 2vw, 1.32rem); color: var(--text); max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 27px;
  border-radius: 100px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .97rem;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-3px); border-color: rgba(233,255,61,.4); box-shadow: 0 16px 34px -18px rgba(0,0,0,.9); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--accent {
  background: var(--grad-sun);
  color: var(--night);
  border-color: transparent;
  box-shadow: var(--glow);
}
.btn--accent:hover { box-shadow: 0 0 54px -4px rgba(255, 210, 30, .6); transform: translateY(-3px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .06); border-color: rgba(255,255,255,.4); }

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 16, 32, .72);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  color: var(--white);
}
.brand .sun {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-sun);
  box-shadow: 0 0 16px 1px rgba(255, 210, 30, .7);
  position: relative;
  transition: transform .5s var(--ease);
}
.brand:hover .sun { transform: rotate(90deg) scale(1.08); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 9px 15px;
  border-radius: 100px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--muted);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav a:hover { color: var(--white); background: rgba(255, 255, 255, .05); }
.nav a.active { color: var(--white); }
.nav a.active::after {
  content: "";
  display: block;
  width: 20px; height: 3px;
  margin: 3px auto 0;
  border-radius: 3px;
  background: var(--grad-sun);
}
.nav .btn { margin-left: 8px; padding: 11px 21px; }

.hamburger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger span::before { transform: translate(-50%, -8px); }
.hamburger span::after { transform: translate(-50%, 6px); }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.open span::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(140px, 20vw, 210px) 0 clamp(50px, 8vw, 100px);
  overflow: hidden;
}
.hero .sunburst {
  position: absolute;
  z-index: 0;
  width: 62vw; max-width: 760px; aspect-ratio: 1;
  top: -14%; right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 210, 30, .5) 0%, rgba(255, 138, 30, .28) 30%, rgba(233, 255, 61, .06) 55%, transparent 70%);
  filter: blur(10px);
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.08); opacity: 1; }
}
.hero-inner { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.9rem, 7.2vw, 5.6rem);
  line-height: .98;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}
.hero-tagline {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--text);
  max-width: 42ch;
  margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px var(--line-soft);
  aspect-ratio: 4 / 3.4;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 16, 32, .55) 100%);
}
.hero-badge {
  position: absolute;
  z-index: 2;
  left: 18px; bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(11, 16, 32, .7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
}
.hero-badge .big {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--lime);
  line-height: 1;
}
.hero-badge .lbl { font-size: .78rem; color: var(--muted); line-height: 1.2; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px;
  border-radius: 100px;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.03);
  font-size: .85rem;
  color: var(--text);
}
.chip::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-sun); box-shadow: 0 0 8px rgba(255,210,30,.8);
}

/* =========================================================
   TICKER / MARQUEE
   ========================================================= */
.marquee {
  background: linear-gradient(90deg, var(--night-2), var(--panel), var(--night-2));
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.marquee__track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 34s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  color: var(--white);
}
.marquee__item::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad-sun);
  box-shadow: 0 0 10px rgba(255, 210, 30, .8);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SECTION HEADERS + GRID
   ========================================================= */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(2rem, 5vw, 3.6rem); max-width: 18ch; }
.section-head p { max-width: 36ch; margin: 0; color: var(--text); }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, var(--panel), var(--night-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 3px;
  background: var(--grad-sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 255, 61, .22);
  box-shadow: var(--shadow);
}
.card:hover::before { transform: scaleX(1); }
.card__ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad-sun-soft);
  border: 1px solid var(--line-soft);
  margin-bottom: 20px;
}
.card__ico svg { width: 26px; height: 26px; stroke: var(--lime); fill: none; stroke-width: 1.7; }
.card__num {
  font-family: "Sora", sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: .1em;
}
.card h3 { font-size: 1.4rem; margin-top: 4px; }
.card p { color: var(--text); margin-bottom: 0; }

.card--accent {
  background: var(--grad-sun);
  border-color: transparent;
}
.card--accent .card__num,
.card--accent h3 { color: var(--night); }
.card--accent p { color: rgba(11, 16, 32, .8); }
.card--accent .btn { background: var(--night); color: var(--white); border-color: var(--night); box-shadow: none; }
.card--accent .btn:hover { background: #060912; }

/* =========================================================
   ENERGY TICKER / COUNTERS
   ========================================================= */
.stats {
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(255, 138, 30, .14), transparent 60%),
    linear-gradient(180deg, var(--panel-2), var(--night-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(38px, 6vw, 68px);
  position: relative;
  overflow: hidden;
}
.stats .grid-4 { gap: 18px; }
.stat { position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute; left: -9px; top: 8px; bottom: 8px;
  width: 1px; background: var(--line-soft);
}
.stat__num {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 6.4vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad-sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat__num .suffix { -webkit-text-fill-color: var(--white); color: var(--white); font-size: .5em; }
.stat__label { color: var(--muted); font-size: .96rem; margin-top: 10px; }

/* =========================================================
   PROCESS / STEPS
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--night-2));
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: rgba(233,255,61,.22); }
.step__n {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  background: var(--grad-sun);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.2rem; }
.step p { color: var(--text); margin-bottom: 0; font-size: .96rem; }

/* =========================================================
   SPLIT / FEATURE
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow), 0 0 0 1px var(--line-soft);
  position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--rev .split__media { order: 2; }

.checklist { list-style: none; padding: 0; margin: 22px 0 0; }
.checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--text);
}
.checklist li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px; height: 22px; margin-top: 3px;
  border-radius: 7px;
  background: var(--grad-sun);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* =========================================================
   PROJECT GALLERY
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 250px;
  grid-column: span 4;
  border: 1px solid var(--line-soft);
}
.tile.tall { grid-row: span 2; }
.tile.wide { grid-column: span 8; }
.tile.half { grid-column: span 6; }
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .8s var(--ease);
}
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 16, 32, .92), rgba(11,16,32,.15) 55%, transparent);
}
.tile:hover img { transform: scale(1.07); }
.tile__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px 24px;
  color: var(--white);
}
.tile__cap .tag {
  font-family: "Sora", sans-serif;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
}
.tile__cap h3 { font-size: 1.28rem; margin: 6px 0 8px; }
.tile__yield {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: .9rem;
  color: var(--night);
  background: var(--grad-sun);
  padding: 5px 12px; border-radius: 100px;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta {
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(233, 255, 61, .16), transparent 60%),
    radial-gradient(700px 400px at 90% 110%, rgba(255, 138, 30, .18), transparent 60%),
    linear-gradient(180deg, var(--panel-2), var(--night-2));
  border: 1px solid var(--line-soft);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 88px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta h2 { font-size: clamp(2rem, 5.5vw, 4rem); }
.cta p { color: var(--text); max-width: 48ch; margin: 0 auto 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   TEAM
   ========================================================= */
.person {
  background: linear-gradient(180deg, var(--panel), var(--night-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.person:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(233,255,61,.22); }
.person__avatar {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--night);
  background: var(--grad-sun);
  margin-bottom: 20px;
}
.person h3 { font-size: 1.3rem; margin: 0; }
.person .role { color: var(--lime); font-weight: 600; font-size: .92rem; }
.person p { color: var(--text); margin: 12px 0 0; font-size: .95rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; }
.form-wrap {
  background: linear-gradient(180deg, var(--panel), var(--night-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
}
.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 600; font-size: .9rem; font-family: "Sora", sans-serif; color: var(--white); }
.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(11, 16, 32, .6);
  color: var(--white);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--lime); outline: none; box-shadow: 0 0 0 3px rgba(233, 255, 61, .14); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .84rem; color: var(--muted); }
.form-status { font-family: "Sora", sans-serif; font-weight: 600; }

.info-block {
  background: linear-gradient(180deg, var(--panel), var(--night-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.info-block h3 { font-size: 1.15rem; }
.info-row { display: flex; gap: 12px; padding: 8px 0; color: var(--text); }
.info-row strong { color: var(--white); min-width: 74px; display: inline-block; }
.info-row a:hover { color: var(--lime); }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 250px;
  position: relative;
  background:
    radial-gradient(400px 200px at 50% 40%, rgba(255, 138, 30, .16), transparent 65%),
    repeating-linear-gradient(0deg, var(--line-soft) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, var(--line-soft) 0 1px, transparent 1px 46px),
    var(--night-2);
  border: 1px solid var(--line-soft);
  display: grid; place-items: center;
}
.map__pin {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-sun); color: var(--night);
  padding: 12px 20px; border-radius: 100px;
  font-family: "Sora", sans-serif; font-weight: 600;
  box-shadow: var(--glow);
}
.map__pin::before { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--night); }

/* =========================================================
   PAGE HERO (subpages)
   ========================================================= */
.page-hero {
  padding: clamp(140px, 18vw, 200px) 0 clamp(28px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.page-hero .sunburst {
  position: absolute; z-index: 0;
  width: 50vw; max-width: 600px; aspect-ratio: 1;
  top: -20%; right: -8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 210, 30, .38) 0%, rgba(255, 138, 30, .2) 35%, transparent 68%);
  filter: blur(10px);
  animation: pulse 9s ease-in-out infinite;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 7vw, 5.2rem); }
.page-hero .lead { max-width: 54ch; }
.breadcrumb { font-size: .86rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--lime); }

/* =========================================================
   SERVICE DETAIL
   ========================================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(40px, 6vw, 78px) 0;
  border-top: 1px solid var(--line-soft);
}
.service-detail:first-of-type { border-top: none; }
.service-detail--rev .service-detail__text { order: 2; }
.service-detail__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow), 0 0 0 1px var(--line-soft);
}
.service-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__media.block {
  display: grid; place-items: center;
  aspect-ratio: 5/4;
  background:
    radial-gradient(400px 300px at 60% 30%, rgba(255, 138, 30, .25), transparent 60%),
    linear-gradient(160deg, var(--panel-2), var(--night-2));
  border: 1px solid var(--line-soft);
}
.service-detail__media.block .big {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  background: var(--grad-sun);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.service-detail h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
.service-price {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin: 6px 0 18px;
  font-family: "Sora", sans-serif; color: var(--white);
}
.service-price b { color: var(--lime); font-size: 1.35rem; }
.service-price span { color: var(--muted); font-size: .9rem; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag-pill {
  font-size: .84rem;
  padding: 7px 15px;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  color: var(--text);
  background: rgba(255, 255, 255, .03);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: linear-gradient(180deg, var(--night-2), #070b16);
  color: var(--text);
  padding: clamp(56px, 8vw, 92px) 0 30px;
  margin-top: clamp(40px, 6vw, 80px);
  border-top: 1px solid var(--line-soft);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand .brand { color: var(--white); font-size: 1.6rem; }
.footer-brand p { color: var(--muted); max-width: 32ch; margin-top: 16px; }
.footer-col h4 {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; color: var(--text); padding: 5px 0; margin: 0; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px;
  font-size: .84rem;
  color: var(--muted);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { aspect-ratio: 16 / 10; margin-top: 10px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stat + .stat::before { display: none; }
}

@media (max-width: 820px) {
  .hamburger { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 350px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    background: rgba(11, 16, 32, .96);
    backdrop-filter: blur(18px);
    border-left: 1px solid var(--line-soft);
    padding: 100px 24px 40px;
    transform: translateX(105%);
    transition: transform .4s var(--ease);
    z-index: 90;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 14px 16px; font-size: 1.1rem; border-radius: 14px; }
  .nav a.active { background: rgba(255, 255, 255, .05); }
  .nav a.active::after { display: none; }
  .nav .btn { margin: 12px 0 0; justify-content: center; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split, .service-detail { grid-template-columns: 1fr; }
  .split--rev .split__media,
  .service-detail--rev .service-detail__text { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile.wide, .tile.half { grid-column: span 2; }
  .tile.tall { grid-row: span 1; }
  .form .row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .tile, .tile.wide, .tile.half { grid-column: span 1; }
}

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