/* ═══════════════════════════════════════════════════════════
   VentusTech Consulting — Stylesheet
   Technische, seriöse Ästhetik: Petrol / Slate + Signal-Akzente
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Base / Light – freundlich & technisch */
  --bg:           #ffffff;
  --bg-2:         #eef5f8;   /* sanftes Band */
  --bg-3:         #e6eef3;   /* Insets / Inputs / Balken */
  --surface:      #ffffff;
  --surface-2:    #f4f9fb;
  --line:         rgba(16, 52, 74, 0.12);
  --line-strong:  rgba(16, 52, 74, 0.20);

  /* Text */
  --text:         #102e40;
  --text-soft:    #4c6678;
  --text-dim:     #6f8da0;

  /* Accents */
  --teal:         #0fa697;   /* Verfügbarkeit / Technik */
  --teal-deep:    #0b877a;
  --cyan:         #2a96c9;
  --alert:        #ef6b3f;   /* Havarie / Signal */
  --alert-deep:   #d8542a;
  --good:         #12a06f;
  --warn:         #d9962a;

  /* Type */
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 48px -24px rgba(16, 52, 74, 0.28);
  --shadow-card: 0 1px 2px rgba(16,52,74,0.05), 0 14px 32px -22px rgba(16,52,74,0.22);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

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

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.22rem; }

p { color: var(--text-soft); }
a { color: inherit; text-decoration: none; }

.mono { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--teal); color: #04141a; padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  --b: var(--teal);
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 13px 22px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #04141a; box-shadow: 0 14px 34px -16px var(--teal); }
.btn-primary:hover { background: #43e2cf; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-alert { background: var(--alert); color: #1b0c05; box-shadow: 0 14px 34px -16px var(--alert); }
.btn-alert:hover { background: #ff8d5e; }
.btn-block { width: 100%; justify-content: center; }

.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%; background: currentColor; position: relative; flex: none;
}
.pulse-dot.small { width: 7px; height: 7px; background: var(--good); color: var(--good); }
.pulse-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%; background: currentColor;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3); opacity: 0; } }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.78); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.94); border-color: var(--line-strong); box-shadow: 0 6px 24px -18px rgba(16,52,74,0.4); }
.nav-wrap { display: flex; align-items: center; gap: 22px; height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--teal); }
.brand-mark { display: grid; place-items: center; }
.brand-rotor { transform-origin: 24px 24px; animation: spin 8s linear infinite; }
.brand-text { display: flex; flex-direction: column; line-height: 1; font-family: var(--font-head); }
.brand-text strong { color: var(--text); font-size: 1.15rem; letter-spacing: -0.01em; }
.brand-text span { color: var(--text-soft); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 22px; list-style: none; }
.main-nav a { color: var(--text-soft); font-size: 0.95rem; position: relative; padding: 4px 0; transition: color .2s; white-space: nowrap; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--teal); transition: width .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-cta { padding: 10px 18px; font-size: 0.9rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 22px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.mobile-nav a { padding: 12px 4px; color: var(--text-soft); border-bottom: 1px solid var(--line); }
.mobile-nav a.btn { margin-top: 12px; border-bottom: 0; color: #1b0c05; justify-content: center; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; padding: clamp(48px, 9vw, 110px) 0 clamp(40px, 6vw, 80px); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 78% 18%, rgba(15,166,151,0.13), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(42,150,201,0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 75%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }

.eyebrow {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px; display: inline-block;
}
.hero h1 { margin-bottom: 22px; }
.hero-lead { font-size: 1.12rem; max-width: 38ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-trust { list-style: none; display: flex; gap: 26px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-trust li { color: var(--text-soft); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.hero-trust .mono { color: var(--teal); }

/* Hero visual */
.hero-visual { display: grid; place-items: center; }
.gauge-card {
  position: relative; width: 100%; max-width: 380px; aspect-ratio: 1/1.02;
  background: linear-gradient(160deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line-strong); border-radius: 24px; box-shadow: var(--shadow);
  display: grid; grid-template-rows: 1fr auto auto; padding: 26px; gap: 8px;
}
.gauge { position: relative; display: grid; place-items: center; }
.gauge svg { width: 200px; height: 200px; transform: rotate(-90deg); }
.gauge-track { fill: none; stroke: var(--line-strong); stroke-width: 12; }
.gauge-fill {
  fill: none; stroke: var(--teal); stroke-width: 12; stroke-linecap: round;
  stroke-dasharray: 528; stroke-dashoffset: 528;
  transition: stroke-dashoffset 1.6s cubic-bezier(.16,1,.3,1);
  filter: drop-shadow(0 0 7px rgba(15,166,151,.45));
}
.gauge-value { position: absolute; text-align: center; }
.gauge-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; }
.gauge-unit { font-family: var(--font-head); font-size: 1.3rem; color: var(--teal); }
.gauge-value small { display: block; color: var(--text-soft); font-size: 0.78rem; margin-top: 2px; }

.turbine { position: absolute; right: 30px; bottom: 84px; width: 86px; height: 120px; }
.turbine-tower {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 5px; height: 78px; background: linear-gradient(var(--text-soft), var(--line-strong)); border-radius: 3px;
}
.turbine-rotor { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 64px; height: 64px; }
.turbine-rotor svg { width: 100%; height: 100%; fill: var(--cyan); }
.rotor-spin { transform-origin: 60px 60px; animation: spin 4s linear infinite; }

.gauge-readout { border-top: 1px solid var(--line); padding-top: 12px; }
.live { color: var(--good); display: inline-flex; align-items: center; gap: 8px; }

/* ── Stats ───────────────────────────────────────────────── */
.stats { border-block: 1px solid var(--line); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.stat { background: var(--bg-2); padding: 34px 22px; text-align: center; }
.stat-num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--teal); letter-spacing: -0.02em; }
.stat-suffix { color: var(--text); font-size: 0.6em; }
.stat p { font-size: 0.86rem; color: var(--text-soft); margin-top: 6px; }

/* ── Section base ────────────────────────────────────────── */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-dark { background: var(--bg-2); border-block: 1px solid var(--line); }
.section-muted { background: linear-gradient(var(--bg-2), var(--bg)); border-top: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; }

/* ── Cards ───────────────────────────────────────────────── */
.cards-feature { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 22px; }
.cards-standard { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px; transition: transform .25s, border-color .25s, background .25s, box-shadow .25s;
  overflow: hidden; box-shadow: var(--shadow-card);
}
.card::before {
  content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--teal); transition: width .35s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); background: var(--surface-2); box-shadow: 0 20px 44px -24px rgba(16,52,74,0.32); }
.card:hover::before { width: 100%; }
.card-index { color: var(--teal); opacity: .8; margin-bottom: 14px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.97rem; margin-bottom: 16px; }
.card-list { list-style: none; display: grid; gap: 9px; }
.card-list li { position: relative; padding-left: 22px; font-size: 0.9rem; color: var(--text-soft); }
.card-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border: 2px solid var(--teal); border-radius: 2px; transform: rotate(45deg); }

.card-feature { background: linear-gradient(165deg, #ffffff, #fff4ef); border-color: rgba(239,107,63,0.42); grid-row: span 1; }
.card-feature::before { background: var(--alert); }
.card-feature .card-index { color: var(--alert); }
.card-feature .card-list li::before { border-color: var(--alert); }
.card-badge {
  position: absolute; top: 24px; right: 22px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--alert-deep); border: 1px solid rgba(239,107,63,0.5); background: rgba(239,107,63,0.06); padding: 4px 10px; border-radius: 100px;
}
.card-link { display: inline-block; margin-top: 18px; color: var(--alert); font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; transition: gap .2s; }
.card-link:hover { color: #ff9b73; }

/* ── Timeline ────────────────────────────────────────────── */
.timeline { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.tl-step {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px 26px; transition: transform .25s, border-color .25s; box-shadow: var(--shadow-card);
}
.tl-step:hover { transform: translateY(-4px); border-color: var(--teal); }
.tl-node {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(15,166,151,0.10); color: var(--teal-deep); border: 1px solid rgba(15,166,151,0.30);
  font-size: 0.95rem; margin-bottom: 16px;
}
.tl-step h3 { margin-bottom: 10px; }
.tl-step p { font-size: 0.92rem; }

.havarie-cta {
  margin-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(239,107,63,0.12), rgba(216,84,42,0.05));
  border: 1px solid rgba(239,107,63,0.34); border-radius: var(--radius); padding: 28px 30px;
}
.havarie-cta h3 { color: var(--text); margin-bottom: 6px; }
.havarie-cta p { font-size: 0.95rem; }

/* ── Split sections ──────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split.reverse .split-copy { order: 2; }
.split-copy h2 { margin-bottom: 18px; }
.split-copy > p { margin-bottom: 16px; }

.check-list { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.check-list li { position: relative; padding-left: 30px; color: var(--text-soft); }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--teal);
  font-weight: 700; width: 20px; height: 20px; display: grid; place-items: center;
  background: rgba(15,166,151,0.12); border-radius: 6px; font-size: 0.8rem;
}

/* Metric panel */
.metric-panel { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.metric-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; color: var(--text-soft); }
.bars { display: grid; gap: 20px; }
.bar-row {
  display: grid; grid-template-columns: 1fr auto;
  grid-template-areas: "label label" "bar val";
  column-gap: 14px; row-gap: 8px; align-items: center;
}
.bar-label { grid-area: label; font-size: 0.85rem; color: var(--text-soft); }
.bar { grid-area: bar; height: 12px; background: var(--bg-3); border-radius: 100px; overflow: hidden; position: relative; }
.bar-fill { display: block; height: 100%; width: 0; border-radius: 100px; background: var(--teal); transition: width 1.4s cubic-bezier(.16,1,.3,1); }
.bar-fill.warn { background: var(--warn); }
.bar-fill.good { background: linear-gradient(90deg, var(--teal-deep), var(--teal)); }
.bar-val { grid-area: val; color: var(--text); justify-self: end; min-width: 3.2em; text-align: right; }
.metric-note { color: var(--text-soft); opacity: .7; margin-top: 18px; font-size: 0.72rem; }

/* Value grid (Über uns) */
.value-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value-grid li {
  display: flex; flex-direction: column; gap: 4px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px 18px; font-size: 0.88rem; color: var(--text-soft); transition: border-color .25s, transform .25s;
}
.value-grid li:hover { border-color: var(--teal); transform: translateY(-3px); }
.value-grid .mono { color: var(--teal); }
.value-grid strong { color: var(--text); font-family: var(--font-head); font-size: 1rem; }

/* ── Team ────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.team-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 30px 26px; transition: transform .25s, border-color .25s, box-shadow .25s; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.team-card:hover { transform: translateY(-4px); border-color: var(--teal); }
.team-top { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.avatar {
  flex: none; width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: #04141a;
  background: linear-gradient(150deg, var(--teal), var(--cyan));
  box-shadow: 0 10px 26px -12px var(--teal);
}
.team-id h3 { margin-bottom: 2px; }
.team-role { color: var(--teal); }
.team-bio { font-size: 0.95rem; margin-bottom: 18px; }
.team-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.team-tags li {
  font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-soft);
  border: 1px solid var(--line-strong); border-radius: 100px; padding: 5px 12px;
}
.team-link {
  display: inline-flex; align-items: center; gap: 9px; margin-top: auto; align-self: flex-start;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 100px; padding: 9px 16px; transition: border-color .2s, color .2s, background .2s;
}
.team-link svg { color: #45b6e0; }
.team-link:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(42,150,201,0.08); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-list { list-style: none; display: grid; gap: 18px; margin-top: 26px; }
.contact-list li { display: flex; flex-direction: column; gap: 3px; }
.contact-list .mono { color: var(--teal); }
.contact-list a:hover { color: var(--teal); }

.contact-form { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 30px; display: grid; gap: 16px; box-shadow: var(--shadow); }
.field { display: grid; gap: 6px; }
.field label { font-size: 0.82rem; color: var(--text-soft); font-family: var(--font-mono); letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text);
  padding: 12px 14px; font-family: var(--font-body); font-size: 0.95rem; transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,166,151,0.16);
}
.form-hint { font-size: 0.85rem; min-height: 1.2em; text-align: center; }
.form-hint.ok { color: var(--good); }
.form-hint.err { color: var(--alert); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer-brand .brand-text strong { color: var(--text); }
.footer-tag { margin-top: 14px; font-size: 0.9rem; max-width: 32ch; }
.site-footer h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-soft); margin-bottom: 16px; }
.site-footer nav a { display: block; color: var(--text-soft); font-size: 0.92rem; padding: 5px 0; transition: color .2s; }
.site-footer nav a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 22px 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--text-soft);
}
.footer-bottom .mono { opacity: .65; font-size: 0.72rem; }
.footer-bottom a { color: var(--teal-deep); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

.bwe-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; color: var(--teal-deep);
  background: rgba(15,166,151,0.08); border: 1px solid rgba(15,166,151,0.28);
  padding: 7px 13px; border-radius: 100px;
}
.bwe-rotor { transform-origin: 12px 12px; animation: spin 9s linear infinite; }

/* ── Legal / Impressum ───────────────────────────────────── */
.legal { padding-top: clamp(40px, 6vw, 70px); }
.legal-inner { max-width: 760px; }
.legal h1 { margin: 8px 0 28px; }
.legal-block { padding: 20px 0; border-bottom: 1px solid var(--line); }
.legal-block:first-of-type { border-top: 1px solid var(--line); }
.legal-block h2 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.legal-block p { color: var(--text-soft); }
.legal-block a { color: var(--teal-deep); font-weight: 600; }
.legal-block a:hover { text-decoration: underline; }
.legal .bwe-badge { margin-top: 0; margin-bottom: 12px; }
.todo { color: var(--alert-deep); font-family: var(--font-mono); font-size: 0.85em; }
.legal-note {
  margin-top: 26px; padding: 14px 18px; font-size: 0.85rem; color: var(--text-soft);
  background: rgba(217,150,42,0.08); border: 1px solid rgba(217,150,42,0.3); border-radius: var(--radius-sm);
}
.legal-back { margin-top: 30px; }

/* ── Reveal animation ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .gauge-card { max-width: 340px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-copy { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-feature { grid-template-columns: 1fr; }
  .cards-standard { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .mobile-nav.open { display: flex; }
}

@media (max-width: 680px) {
  .cards { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .havarie-cta { flex-direction: column; align-items: flex-start; }
}
