/* ============================================================
   B2TM — GreenHash Hellas · Shared styles
   Themes: corporate (default) · light · tech
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root, [data-theme="corporate"] {
  --bg: #0A1C26;
  --bg-2: #0D2230;
  --surface: #102B3A;
  --surface-2: #16374A;
  --text: #ECF4F4;
  --muted: #9FB7BF;
  --line: rgba(236, 244, 244, 0.13);
  --accent: #2EC27E;
  --accent-soft: rgba(46, 194, 126, 0.14);
  --accent-ink: #06281A;
  --hero-tint: rgba(6, 19, 26, 0.60);
}

[data-theme="light"] {
  --bg: #F5F8F6;
  --bg-2: #ECF2EE;
  --surface: #FFFFFF;
  --surface-2: #F0F5F1;
  --text: #152822;
  --muted: #5C7068;
  --line: rgba(21, 40, 34, 0.13);
  --accent: #18965E;
  --accent-soft: rgba(24, 150, 94, 0.11);
  --accent-ink: #FFFFFF;
  --hero-tint: rgba(8, 22, 28, 0.55);
}

[data-theme="tech"] {
  --bg: #05090B;
  --bg-2: #07100F;
  --surface: #0B1714;
  --surface-2: #11211C;
  --text: #E4F4EA;
  --muted: #82A091;
  --line: rgba(228, 244, 234, 0.13);
  --accent: #38E392;
  --accent-soft: rgba(56, 227, 146, 0.13);
  --accent-ink: #03150C;
  --hero-tint: rgba(2, 8, 8, 0.66);
}

body {
  font-family: "IBM Plex Sans", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Sora", sans-serif; line-height: 1.16; text-wrap: balance; font-weight: 600; }
p { text-wrap: pretty; }
img { display: block; }
a { color: var(--accent); }

.mono { font-family: "IBM Plex Mono", monospace; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 28px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); flex-shrink: 0; }
.brand-mark {
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 19px; letter-spacing: 0.02em;
  background: var(--accent); color: var(--accent-ink);
  padding: 5px 10px; border-radius: 8px;
}
.brand-mark span { opacity: 0.72; font-weight: 600; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-family: "Sora", sans-serif; font-size: 14.5px; font-weight: 600; }
.brand-text span { font-family: "IBM Plex Mono", monospace; font-size: 10.5px; color: var(--muted); letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; overflow-x: auto; scrollbar-width: none; }
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; text-decoration: none; color: var(--muted);
  padding: 8px 11px; border-radius: 8px; white-space: nowrap; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--accent); background: var(--accent-soft); }
.lang-switch { display: flex; gap: 3px; flex-shrink: 0; }
.lang-btn {
  font-family: "IBM Plex Mono", monospace; font-size: 12.5px; padding: 6px 9px;
  background: none; border: none; border-radius: 7px; color: var(--muted); cursor: pointer;
}
.lang-btn:hover { color: var(--text); background: var(--surface-2); }
.lang-btn.active { color: var(--accent); background: var(--accent-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 9px;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: filter .15s, background .15s, border-color .15s;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-outline { border-color: var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; color: #fff; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--hero-tint) 0%, var(--hero-tint) 72%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 150px 0 100px; }
.hero .eyebrow { color: #7FE6B4; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 700; max-width: 17ch; margin: 18px 0 22px; }
.hero .lede { font-size: clamp(17px, 2vw, 20px); max-width: 60ch; color: rgba(255, 255, 255, 0.88); margin-bottom: 36px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 52px; }
.chip {
  font-family: "IBM Plex Mono", monospace; font-size: 12.5px; letter-spacing: 0.02em;
  padding: 9px 15px; border: 1px solid rgba(255, 255, 255, 0.32); border-radius: 999px;
  color: rgba(255, 255, 255, 0.92); backdrop-filter: blur(4px);
}

/* ---------- Page head (subpages) ---------- */
.page-head { position: relative; overflow: hidden; color: #fff; }
.page-head .hero-content { padding: 110px 0 70px; }
.page-head h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; max-width: 22ch; margin: 16px 0 14px; }
.page-head .lede { font-size: 18px; max-width: 58ch; color: rgba(255, 255, 255, 0.88); }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section.tint { background: var(--bg-2); }
.eyebrow {
  font-family: "IBM Plex Mono", monospace; font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); font-weight: 500;
}
.section h2 { font-size: clamp(27px, 3.4vw, 38px); margin: 14px 0 18px; max-width: 24ch; }
.section .sub { color: var(--muted); font-size: 17.5px; max-width: 66ch; }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center h2, .section-head.center .sub { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 30px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card .mono-tag {
  font-family: "IBM Plex Mono", monospace; font-size: 12px; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 14px;
}
.module-letter {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--accent-soft); color: var(--accent);
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 19px;
  display: grid; place-items: center; margin-bottom: 18px;
}

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev > .split-media { order: 2; }
.split h2 { font-size: clamp(26px, 3vw, 35px); }
.split p { color: var(--muted); margin-bottom: 14px; }
.img-frame { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); position: relative; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.ar-4x3 { aspect-ratio: 4 / 3; }
.ar-3x2 { aspect-ratio: 3 / 2; }
.ar-16x9 { aspect-ratio: 16 / 9; }
.img-cap {
  position: absolute; left: 14px; bottom: 14px;
  font-family: "IBM Plex Mono", monospace; font-size: 11.5px; color: #fff;
  background: rgba(5, 16, 20, 0.72); padding: 6px 11px; border-radius: 7px; backdrop-filter: blur(4px);
}

/* ---------- Feature bullets ---------- */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 15px; align-items: flex-start; }
.feature-dot {
  width: 11px; height: 11px; border-radius: 50%; background: var(--accent);
  flex-shrink: 0; margin-top: 8px;
}
.feature-list strong { display: block; font-family: "Sora", sans-serif; font-size: 16px; font-weight: 600; }
.feature-list span { color: var(--muted); font-size: 15px; }

/* ---------- Gallery band ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ---------- Mini process strip ---------- */
.steps-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step-mini {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px 18px 16px;
}
.step-mini .num { font-family: "IBM Plex Mono", monospace; font-size: 12.5px; color: var(--accent); display: block; margin-bottom: 7px; }
.step-mini .name { font-family: "Sora", sans-serif; font-size: 14.5px; font-weight: 600; }

/* ---------- Timeline (process page) ---------- */
.timeline { position: relative; display: flex; flex-direction: column; gap: 0; }
.timeline-item { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 26px; padding-bottom: 44px; }
.timeline-item::before {
  content: ""; position: absolute; left: 31px; top: 56px; bottom: 8px; width: 2px;
  background: var(--line);
}
.timeline-item:last-child::before { display: none; }
.timeline-num {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: "IBM Plex Mono", monospace; font-size: 17px; color: var(--accent); font-weight: 500;
}
.timeline-body h3 { font-size: 19px; margin: 6px 0 8px; }
.timeline-body p { color: var(--muted); font-size: 15.5px; max-width: 64ch; }

/* ---------- KPI / calculator ---------- */
.calc-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: start; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 34px; }
.panel h3 { font-size: 17px; margin-bottom: 26px; display: flex; align-items: center; gap: 10px; }
.ctrl { margin-bottom: 28px; }
.ctrl:last-child { margin-bottom: 0; }
.ctrl-head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 10px; }
.ctrl-head label { font-size: 15px; font-weight: 500; }
.ctrl-val { font-family: "IBM Plex Mono", monospace; font-size: 14.5px; color: var(--accent); white-space: nowrap; }
.ctrl-hint { font-size: 13px; color: var(--muted); margin-top: 7px; }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 3px;
  background: var(--surface-2); outline: none; border: 1px solid var(--line);
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg); box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg); cursor: pointer;
}

.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kpi { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; }
.kpi.hero-kpi { grid-column: 1 / -1; border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); background: var(--accent-soft); }
.kpi .lbl {
  font-family: "IBM Plex Mono", monospace; font-size: 11.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 9px;
}
.kpi .val { font-family: "Sora", sans-serif; font-size: 26px; font-weight: 700; }
.kpi.hero-kpi .val { font-size: 38px; color: var(--accent); }
.kpi .unit { font-size: 15px; font-weight: 500; color: var(--muted); margin-left: 5px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14.5px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 16px; color: var(--text); font: inherit; font-size: 15.5px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}
.field.invalid input, .field.invalid select { border-color: #E0635C; }
.field .err { font-size: 13px; color: #E0635C; display: none; }
.field.invalid .err { display: block; }
.form-note { font-size: 13.5px; color: var(--muted); }
.success-panel { text-align: center; padding: 64px 34px; display: none; }
.success-panel .success-dot {
  width: 58px; height: 58px; border-radius: 50%; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; margin: 0 auto 22px;
  font-size: 26px; font-family: "Sora", sans-serif;
}
.success-panel h3 { font-size: 22px; margin-bottom: 12px; }
.success-panel p { color: var(--muted); max-width: 46ch; margin: 0 auto; }

/* ---------- Table ---------- */
.tbl { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.tbl th, .tbl td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.tbl th {
  font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.tbl td:first-child { font-weight: 600; font-family: "Sora", sans-serif; font-size: 15px; }
.tbl td { color: var(--muted); }
.tbl .yes { color: var(--accent); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 20px; color: #fff; }
.cta-band .hero-bg { position: absolute; inset: 0; }
.cta-band .cta-overlay { position: absolute; inset: 0; background: rgba(6, 19, 26, 0.72); }
.cta-band-inner { position: relative; z-index: 1; padding: 72px 64px; }
.cta-band h2 { font-size: clamp(25px, 3vw, 34px); max-width: 24ch; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 56ch; margin-bottom: 30px; }

/* ---------- Doc cards ---------- */
.doc-card { display: flex; gap: 20px; align-items: flex-start; }
.doc-icon {
  width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 600;
}
.badge {
  display: inline-block; font-family: "IBM Plex Mono", monospace; font-size: 11.5px;
  padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); margin-top: 12px;
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); margin-top: 40px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; padding: 56px 0 48px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 44ch; }
.footer-note { font-family: "IBM Plex Mono", monospace; font-size: 12px !important; opacity: 0.75; }
.footer-doc-link { text-decoration: none; color: var(--text); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; align-content: start; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14.5px; padding: 4px 0; }
.footer-links a:hover { color: var(--accent); }

/* ---------- Protected document room ---------- */
.docs-login {
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
  gap: 28px; align-items: start; margin-top: 44px;
}
.docs-lock { position: sticky; top: 92px; }
.docs-form { display: grid; gap: 12px; margin-top: 18px; }
.docs-form label { font-size: 13px; font-weight: 600; color: var(--muted); }
.docs-form input {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 15px; background: var(--surface); color: var(--text);
  font: inherit;
}
.docs-status { min-height: 20px; color: var(--muted); font-size: 13px; }
.docs-status.error { color: #f97373; }
.docs-list { display: grid; gap: 14px; }
.docs-list.locked { opacity: 0.62; }
.doc-download {
  display: flex; justify-content: space-between; gap: 22px; align-items: center;
  border: 1px solid var(--line); border-radius: 16px; padding: 18px;
  background: var(--surface);
}
.doc-download h3 { font-size: 17px; margin-bottom: 6px; }
.doc-download p { color: var(--muted); font-size: 14px; }
.doc-meta {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px;
  font-family: "IBM Plex Mono", monospace; font-size: 11px; color: var(--muted);
}
.doc-download .btn { white-space: nowrap; }

.business-plan-room { margin-top: 64px; }
.business-plan-room.locked { opacity: 0.72; }
.plan-nav {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px; margin: 24px 0 28px;
}
.plan-nav a {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 14px; padding: 12px;
  color: var(--text); text-decoration: none; background: var(--surface);
  font-size: 13px; line-height: 1.25;
}
.plan-nav a:hover { border-color: var(--accent); color: var(--accent); }
.plan-nav span {
  width: 30px; height: 30px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--accent);
  color: var(--accent-ink); font-family: "IBM Plex Mono", monospace; font-weight: 700; font-size: 12px;
}
.plan-pages { display: grid; gap: 28px; }
.plan-page {
  border: 1px solid var(--line); border-radius: 22px; padding: 30px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 42%, transparent), transparent 38%),
    var(--surface);
}
.plan-page-head h3 {
  font-size: clamp(24px, 3vw, 36px); line-height: 1.08;
  max-width: 27ch; margin: 9px 0 13px;
}
.plan-page-head p { color: var(--text); max-width: 74ch; font-size: 17px; }
.plan-kpis {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px; margin: 24px 0;
}
.plan-kpis div {
  border: 1px solid var(--line); border-radius: 16px; padding: 15px;
  background: color-mix(in srgb, var(--bg-2) 82%, transparent);
}
.plan-kpis strong { display: block; font-family: "Sora", sans-serif; font-size: 22px; line-height: 1.08; }
.plan-kpis span {
  display: block; margin-top: 7px; color: var(--accent);
  font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
}
.plan-kpis p { margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.plan-block {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
}
.plan-block h4 {
  font-size: 16px; margin-bottom: 10px;
}
.plan-block ul { display: grid; gap: 8px; padding-left: 20px; color: var(--muted); }
.plan-block li { line-height: 1.55; }
.plan-table-wrap { overflow-x: auto; margin-top: 22px; border: 1px solid var(--line); border-radius: 16px; }
.plan-table { width: 100%; border-collapse: collapse; min-width: 660px; background: color-mix(in srgb, var(--bg-2) 78%, transparent); }
.plan-table th, .plan-table td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.plan-table th {
  font-family: "IBM Plex Mono", monospace; font-size: 11px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.plan-table td { color: var(--muted); font-size: 14px; }
.plan-table tr:last-child td { border-bottom: 0; }

.partner-deck { margin-top: 56px; }
.partner-deck.locked { opacity: 0.72; }
.deck-pages { display: grid; gap: 22px; }
.deck-toc {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px; margin: 22px 0 24px;
}
.deck-toc a {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 14px; padding: 11px 12px;
  background: var(--surface); color: var(--text); text-decoration: none;
  font-size: 13px; line-height: 1.25;
}
.deck-toc a:hover { border-color: var(--accent); color: var(--accent); }
.deck-toc span {
  width: 30px; height: 30px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--accent-soft);
  color: var(--accent); font-family: "IBM Plex Mono", monospace; font-size: 12px;
}
.deck-page {
  display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 22px;
  border: 1px solid var(--line); border-radius: 20px; padding: 26px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 38%, transparent), transparent 42%),
    var(--surface);
}
.deck-number {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center;
  background: var(--accent); color: #06130f;
  font-family: "IBM Plex Mono", monospace; font-weight: 700;
}
.deck-page h3 { font-size: clamp(23px, 3vw, 34px); line-height: 1.08; max-width: 24ch; margin: 8px 0 12px; }
.deck-thesis { color: var(--text); font-size: 17px; max-width: 70ch; margin-bottom: 18px; }
.deck-page ul { display: grid; gap: 9px; padding-left: 20px; color: var(--muted); }
.deck-page li { line-height: 1.55; }
.deck-block { margin-top: 22px; }
.deck-block h4 {
  font-family: "IBM Plex Mono", monospace; font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.deck-metrics {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px;
}
.deck-metrics div {
  border: 1px solid var(--line); border-radius: 14px; padding: 13px;
  background: color-mix(in srgb, var(--bg-2) 78%, transparent);
}
.deck-metrics span, .actor-grid span { display: block; color: var(--muted); font-size: 12px; }
.deck-metrics strong { display: block; margin-top: 5px; font-size: 17px; }
.actor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px; }
.actor-grid div {
  border: 1px solid var(--line); border-radius: 14px; padding: 13px;
  background: color-mix(in srgb, var(--bg-2) 78%, transparent);
}
.actor-grid p { color: var(--muted); font-size: 13px; margin-top: 7px; }
.deck-refs {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
}
.deck-refs span { color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.deck-refs a {
  color: var(--accent); text-decoration: none; border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 10px; font-size: 13px;
}
.deck-refs a:hover { border-color: var(--accent); }

/* ---------- Theme switcher ---------- */
.theme-switch {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: flex; align-items: center; gap: 9px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
  backdrop-filter: blur(10px); box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}
.theme-switch .ts-label {
  font-family: "IBM Plex Mono", monospace; font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.th-dot {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--line); cursor: pointer; padding: 0;
}
.th-dot[data-th="corporate"] { background: linear-gradient(135deg, #11324A 50%, #2EC27E 50%); }
.th-dot[data-th="light"] { background: linear-gradient(135deg, #FFFFFF 50%, #18965E 50%); }
.th-dot[data-th="tech"] { background: linear-gradient(135deg, #05090B 50%, #38E392 50%); }
.th-dot.active { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-inner { flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; gap: 12px; }
  .brand { order: 1; }
  .lang-switch { order: 2; margin-left: auto; }
  .nav-links { order: 3; width: 100%; }
  .split, .calc-layout { grid-template-columns: 1fr; gap: 36px; }
  .split.rev > .split-media { order: 0; }
  .cards.cols-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .steps-mini { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .docs-login { grid-template-columns: 1fr; }
  .docs-lock { position: static; }
  .doc-download { align-items: flex-start; flex-direction: column; }
  .plan-page { padding: 22px; }
  .plan-kpis { grid-template-columns: 1fr; }
  .deck-page { grid-template-columns: 1fr; padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band-inner { padding: 48px 30px; }
  .hero-content { padding: 110px 0 80px; }
}
