/* === Köber Energy sales page === */
:root {
  --bg: #050505;
  --bg-2: #0B0B0B;
  --card: #111111;
  --card-2: #0D0D0D;
  --border: #2A2A2A;
  --border-soft: #1E1E1E;
  --border-gold: #5C4A14;
  --gold: #D4A017;
  --gold-bright: #E8B428;
  --gold-dark: #0A0A0A;
  --white: #ffffff;
  --head: #F4F2EC;
  --body: #B8B6AE;
  --mute: #7C7C76;
  --faint: #3A3A38;
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }
hr { border: none; border-top: 1px solid var(--border-soft); margin: 24px 0; }

h1, h2, h3, h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  line-height: 1.15;
}
.gold { color: var(--gold); }
.muted { color: var(--mute); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow .dot { width: 10px; height: 10px; background: var(--gold); display: inline-block; }
.eyebrow.small { font-size: 9.5px; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(5,5,5,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--white);
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
  background: var(--bg);
  line-height: 1;
  padding-bottom: 2px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--white);
}
.logo-text em {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 7px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-style: normal;
  margin-top: 4px;
  white-space: nowrap;
}
.nav-links { list-style: none; display: flex; gap: 28px; margin: 0 auto; padding: 0; }
.nav-links a {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--body);
  padding: 6px 2px;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 4px 0; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s, background .12s, border-color .12s;
}
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-primary {
  background: var(--gold);
  color: var(--gold-dark);
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn svg { width: 18px; height: 18px; }

/* === HERO === */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg .glow {
  position: absolute;
  right: -200px; top: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,160,23,0.18), transparent 60%);
  filter: blur(20px);
}
.hero-bg .stripes {
  position: absolute;
  right: -120px; top: -80px;
  width: 700px; height: 900px;
  opacity: 0.45;
}
.hero-inner { max-width: 1000px; }
.hero-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border-soft);
  max-width: 900px;
}
.hero-stats .stat { min-width: 180px; }
.hero-stats .stat-num { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 22px; color: var(--gold); }
.hero-stats .stat-label { font-size: 12px; color: var(--mute); margin-top: 4px; }
.hero-stats .divider { width: 1px; height: 50px; background: var(--border-soft); }

/* === SECTIONS === */
.section { padding: 90px 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 14px;
  max-width: 900px;
}
.section-sub {
  font-size: 16px;
  color: var(--body);
  max-width: 780px;
  margin: 0 0 48px;
  line-height: 1.6;
}

/* === GRID & CARDS === */
.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); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .15s, transform .15s;
}
.card:hover { border-color: var(--border); transform: translateY(-2px); }
.card h3 { font-size: 17px; margin: 18px 0 10px; color: var(--white); }
.card p { font-size: 14px; line-height: 1.55; color: var(--body); margin: 0; }
.card.featured {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--gold-dark);
}
.card.featured h3 { color: var(--gold-dark); }
.card.featured p { color: rgba(10,10,10,0.78); }
.card .badge {
  position: absolute;
  bottom: 22px; left: 26px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* card-internal chip (icon container) */
.chip {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #1C1C1C;
  border: 1px solid #2E2E2E;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.chip svg { width: 22px; height: 22px; }
.chip-dark { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--gold); }

/* horizontal card */
.card.horiz { flex-direction: row; align-items: center; gap: 18px; padding: 22px 24px; }
.card.horiz .chip { flex: 0 0 auto; }
.card.horiz h3 { margin: 0 0 6px; }

/* === CALLOUT === */
.callout {
  margin-top: 36px;
  padding: 18px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.callout-gold { background: var(--gold); color: var(--gold-dark); }
.callout-gold svg { width: 22px; height: 22px; }
.callout-dark { background: var(--card); border: 1px solid var(--border-gold); color: var(--head); }
.callout-dark svg { width: 22px; height: 22px; color: var(--gold); }

/* === STEPS (3-step row) === */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
}
.step-card .step-num {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.step-card .step-icon {
  position: absolute; top: 22px; right: 22px;
  width: 36px; height: 36px;
  background: #1C1C1C; border: 1px solid #2E2E2E; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.step-card .step-icon svg { width: 18px; height: 18px; }
.step-card h3 { font-size: 17px; margin: 22px 0 8px; }
.step-card p { font-size: 14px; color: var(--body); margin: 0; }
.step-arrow { color: var(--gold); font-size: 26px; text-align: center; }

/* === STAT CARDS (savings section) === */
.stat-grid { gap: 22px; }
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  position: relative;
}
.stat-card .accent-bar {
  position: absolute; left: 0; top: 18px; bottom: 18px; width: 4px;
  background: var(--gold);
  border-radius: 0 4px 4px 0;
}
.big-num { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 30px; color: var(--gold); line-height: 1.05; }
.small-lbl { font-size: 13px; color: var(--body); margin-top: 6px; line-height: 1.4; }

/* savings ramp */
.ramp-panel {
  margin-top: 38px;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.ramp-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-end; flex-wrap: wrap; margin-bottom: 28px; }
.ramp-head h3 { font-size: 19px; margin: 0 0 6px; }
.ramp-head .muted { font-size: 13px; margin: 0; max-width: 520px; }
.ramp-callout { text-align: right; }
.ramp-callout .big-num { font-size: 32px; }
.ramp { padding-top: 8px; }
.ramp .bars {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
  align-items: end;
  height: 200px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
}
.ramp .bar {
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  height: var(--h);
  opacity: calc(0.45 + var(--h) / 200%);
}
.ramp .bars-axis {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.04em;
}

/* === TWO-COL (ownership, why-us) === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.lead { font-size: 16px; line-height: 1.6; color: var(--body); margin: 0 0 24px; }
.checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.checks li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: var(--head);
}
.checks li::before {
  content: "";
  display: inline-block;
  width: 24px; height: 24px; flex: 0 0 auto;
  background: var(--gold);
  border-radius: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

/* timeline */
.timeline {
  position: relative;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 28px 56px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 38px; top: 38px; bottom: 38px;
  width: 1.5px;
  background: var(--border-gold);
}
.tl-item { position: relative; padding-bottom: 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item strong { display: block; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.tl-item p { font-size: 13.5px; color: var(--body); margin: 0; }
.tl-dot {
  position: absolute; left: -32px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--gold);
}
.tl-dot.tl-dot-final { background: var(--gold); border-color: var(--gold); }
.tl-dot.tl-dot-final svg { width: 10px; height: 10px; margin: 4px auto; color: var(--gold-dark); display: block; }

/* === STEPS-4 === */
.steps4 .step-num { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 34px; color: var(--gold); line-height: 1; margin-bottom: 16px; }
.steps4 .card { position: relative; }
.steps4 .card::before {
  content: ""; position: absolute; top: 0; left: 16px; right: 16px; height: 3px;
  background: var(--gold); border-radius: 0 0 2px 2px;
}

/* === DE CE === */
.stats-panel { padding: 28px; }
.stats-panel .big-stat .big-num { font-size: 36px; }
.stats-panel .big-stat .small-lbl { font-size: 13px; margin-top: 4px; }
.reasons { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.reasons li {
  display: flex; gap: 18px; padding: 22px 0;
  border-bottom: 1px solid var(--border-soft);
}
.reasons li:first-child { padding-top: 0; }
.reasons li:last-child { border: 0; }
.reasons h3 { font-size: 16px; margin: 0 0 6px; }
.reasons p { font-size: 14px; color: var(--body); margin: 0; }

/* === REFERINȚE === */
.ref-stats { display: flex; gap: 36px; flex-wrap: wrap; margin-bottom: 32px; }
.ref-stats > div .big-num { font-size: 40px; }
.ref-strip {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.ref-strip span {
  font-family: "Outfit", sans-serif; font-weight: 500;
  font-size: 14px;
  color: var(--head);
  padding: 6px 12px;
  background: #1A1A18;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
}
.ref-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
  transition: border-color .15s;
}
.faq details[open] { border-color: var(--border-gold); }
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--gold);
  margin-left: 12px;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 22px 20px; margin: 0; font-size: 14px; line-height: 1.6; color: var(--body); }

/* === CTA === */
.cta-section { background: var(--bg-2); position: relative; overflow: hidden; }
.cta-section::before {
  content: ""; position: absolute; right: -200px; top: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,160,23,0.16), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.contact-list > div {
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.contact-list .lbl {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mute);
  margin-bottom: 4px;
}
.contact-list a { color: var(--white); }
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form h3 { margin: 0 0 6px; font-size: 20px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label {
  display: flex; flex-direction: column;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  gap: 8px;
}
.contact-form input, .contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .15s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form button { align-self: flex-start; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--mute); margin: 4px 0 0; text-transform: none; letter-spacing: 0; }
.hp { position: absolute; left: -9999px; }

/* === CONSORȚIU === */
.consortium-section {
  padding: 64px 0 72px;
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.consortium-title { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; max-width: 820px; }
.consortium-sub { font-size: 15px; max-width: 760px; margin-bottom: 40px; }

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.logo-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 6px 14px;
}
.logo-cell .logo-img { max-height: 64px; width: auto; height: auto; opacity: 0.95; }
.logo-cell .logo-utv { max-height: 70px; }
.logo-cell .logo-tesla { max-height: 54px; }
.logo-cell-kober { gap: 14px; }
.logo-mark-lg {
  width: 60px; height: 60px;
  border: 2px solid var(--white);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--white);
  background: var(--bg);
  line-height: 1;
  padding-bottom: 3px;
}
.logo-text-lg { display: flex; flex-direction: column; line-height: 1; }
.logo-text-lg strong { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 24px; letter-spacing: 0.08em; color: var(--white); }
.logo-text-lg em { font-family: "Outfit", sans-serif; font-weight: 500; font-size: 10.5px; letter-spacing: 0.22em; color: var(--gold); font-style: normal; margin-top: 6px; white-space: nowrap; }

.logo-sep {
  width: 1px; height: 56px;
  background: var(--border);
}

@media (max-width: 780px) {
  .logo-strip { gap: 20px; padding: 24px 18px; }
  .logo-sep { width: 80%; height: 1px; }
  .logo-cell .logo-img { max-height: 52px; }
  .logo-cell .logo-utv { max-height: 56px; }
  .logo-cell .logo-tesla { max-height: 44px; }
  .logo-mark-lg { width: 50px; height: 50px; font-size: 30px; }
  .logo-text-lg strong { font-size: 20px; }
  .logo-text-lg em { font-size: 10px; }
}

/* === FOOTER === */
.footer { padding: 40px 0 36px; border-top: 1px solid var(--border-soft); background: var(--bg); }
.footer-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.footer-tag { font-size: 13px; color: var(--mute); margin: 0; }
.footer-meta { margin: 0 0 0 auto; font-size: 12px; color: var(--mute); }

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .step-arrow { display: none; }
  .two-col, .cta-grid { grid-template-columns: 1fr; }
  .contact-list { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 80px; }
  .section { padding: 70px 0; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 22px; flex-wrap: wrap; }
  .nav-links {
    display: none;
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    gap: 8px;
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-stats .divider { display: none; }
  .container { padding: 0 22px; }
  .ramp .bars { height: 140px; gap: 6px; }
  .ramp-head { flex-direction: column; align-items: flex-start; }
  .ramp-callout { text-align: left; }
  .contact-form { padding: 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-meta { margin-left: 0; }
}
