/* Elev-8 — Shared Styles */
:root {
  --green: #0b3d2e;
  --green-dark: #07261c;
  --green-light: #0f4a38;
  --green-soft: #e8f0ec;
  --cream: #faf9f6;
  --white: #ffffff;
  --charcoal: #1a1a1a;
  --gray: #5c5c5c;
  --gray-light: #f3f3f3;
  --border: #e5e5e5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--green);
  backdrop-filter: none;
  border-bottom: none;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo svg {
  width: 52px;
  height: 30px;
}

.nav-logo span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-logo span {
  color: #fff;
}
.nav-logo .eight {
  color: #fff;
}
.nav-logo svg path {
  stroke: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.92;
  transition: all 0.2s ease;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  opacity: 1;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.92rem;
  opacity: 1;
  color: var(--charcoal);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--green-soft);
  color: var(--green);
}

.nav-links a.nav-cta {
  background: #fff;
  color: var(--green) !important;
  padding: 14px 34px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  opacity: 1 !important;
  display: inline-block;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-links a.nav-cta:hover {
  background: #f4f7f5;
  color: var(--green-dark) !important;
  transform: translateY(-1px);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo svg {
  width: 180px;
  height: 100px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.hero h1 .eight {
  color: var(--green);
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero p {
  max-width: 640px;
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 1.15rem;
  font-weight: 400;
}
.hero p:last-of-type {
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 560;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 61, 46, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ========== SECTIONS ========== */
section {
  padding: 100px 5%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.green-line {
  width: 40px;
  height: 3px;
  background: var(--green);
  margin: 1.25rem auto;
  border-radius: 2px;
}

/* ========== PRODUCTS ========== */
.products {
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.product-icon {
  width: 52px;
  height: 52px;
  background: var(--green-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--green);
  font-size: 1.5rem;
}

.product-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.product-card .link {
  color: var(--green);
  font-weight: 560;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.product-card .link:hover {
  gap: 10px;
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.25rem;
}

.feature-item .icon {
  width: 56px;
  height: 56px;
  background: var(--green-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--green);
  font-size: 1.4rem;
}

.feature-item h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ========== TEAM ========== */
.team {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.team-avatar {
  width: 90px;
  height: 90px;
  background: var(--green-soft);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green);
  font-weight: 600;
}

.team-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ========== CONTACT / CTA ========== */
.cta {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 100px 5%;
}

.cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta p {
  opacity: 0.9;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

.cta .btn-primary {
  background: white;
  color: var(--green);
}

.cta .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 140px 5% 80px;
  background: var(--cream);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--gray);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ========== CONTENT BLOCKS ========== */
.content-section {
  padding: 80px 5%;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.content-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.content-visual {
  background: var(--green-soft);
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 3rem;
}

/* ========== FOOTER ========== */
footer {
  background: var(--charcoal);
  color: white;
  padding: 60px 5% 30px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand svg {
  width: 32px;
  height: 22px;
}

.footer-brand span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ========== FEATURE SHOWCASES ========== */
.feature-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin: 0 0 88px;
}
.feature-block.reverse { grid-template-columns: 1.15fr 0.85fr; }
.feature-block.reverse .feature-copy { order: 2; }
.feature-block.reverse .feature-snip { order: 1; }
.feature-kicker {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin: 0 0 10px;
}
.feature-copy h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  margin: 0 0 14px;
}
.feature-copy p { color: var(--gray); font-size: 1.05rem; margin: 0 0 12px; }
.feature-snip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 28px rgba(11,61,46,.06);
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.snip-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a8a82;
  margin: 0 0 10px;
  font-weight: 700;
}
.snip-row {
  display: grid;
  grid-template-columns: 132px minmax(80px, 1fr) 44px;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #eef2f0;
  font-size: 13px;
}
.snip-row:last-child { border-bottom: 0; }
.snip-name { color: #1a1a1a; font-weight: 500; }
.snip-meta { color: #6b7280; font-size: 12px; text-align: right; }
.snip-meta.hot { color: #a33b3b; font-weight: 650; }
.snip-bar {
  height: 8px;
  background: #edf2ef;
  border-radius: 99px;
  overflow: hidden;
  width: 100%;
}
.snip-bar > i { display: block; height: 100%; border-radius: 99px; }
.snip-mix {
  display: flex;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  margin: 8px 0 10px;
}
.snip-mix span { display: block; height: 100%; }
.snip-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  font-size: 11px;
  color: #5c5c5c;
  text-align: center;
}
.snip-legend b { color: #1a1a1a; font-weight: 600; }
.snip-pills { display: flex; gap: 6px; margin: 0 0 12px; }
.snip-pills em {
  font-style: normal;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 99px;
  background: #e8f0ec;
  color: var(--green);
  font-weight: 600;
}
.legal-note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--gray);
  font-size: .95rem;
}
@media (max-width: 900px) {
  .feature-block,
  .feature-block.reverse { grid-template-columns: 1fr; }
  .feature-block.reverse .feature-copy,
  .feature-block.reverse .feature-snip { order: 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .content-grid.reverse {
    direction: ltr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 110px 5% 60px;
  }
  section {
    padding: 70px 5%;
  }
}

.feature-item .icon.gauge-icon {
  background: transparent;
  width: 160px;
  height: 110px;
  border-radius: 0;
  margin-bottom: 0.5rem;
}
.feature-item .icon.gauge-icon svg {
  width: 160px;
  height: 110px;
  display: block;
}

.feature-item .icon.pic,
.feature-item .icon.gauge-icon {
  width: 160px;
  height: 110px;
  background: #f4f7f5;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin: 0 auto 1.1rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item .icon.pic svg,
.feature-item .icon.gauge-icon svg {
  width: 160px;
  height: 110px;
  display: block;
}

.feature-item .soon {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 9px;
  border-radius: 99px;
  background: #0b3d2e;
  color: #fff;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 650;
}


.snip-pies svg { width: 100%; height: auto; display: block; }
.snip-pies em {
  display: block;
  text-align: center;
  font-style: normal;
  font-size: 11px;
  color: #5c5c5c;
  margin-top: 4px;
  font-weight: 600;
}

.snip-legend.tight {
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 4px 8px;
  margin-top: 6px;
  font-size: 10px;
}
.snip-pies {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  align-items: start;
  padding: 16px 0 2px;
  border-top: 1px solid #eef2f0;
  margin-top: 14px;
}
.snip-pies svg { width: 100%; height: auto; display: block; }
.snip-pies em {
  display: block;
  text-align: center;
  font-style: normal;
  font-size: 11px;
  color: #1a1a1a;
  margin-top: 8px;
  font-weight: 650;
}
.snip-pies small { display: none; }

.sr-mini { margin-top: 4px; }
.sr-mini-row {
  display: grid;
  grid-template-columns: minmax(90px, 1.2fr) minmax(70px, 1fr) 54px;
  gap: 8px;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid #eef2f0;
  font-size: 11px;
  color: #1a1a1a;
}
.sr-mini-row:last-child { border-bottom: 0; }
.sr-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 8px;
  background: #edf2ef;
  border-radius: 99px;
  overflow: hidden;
}
.sr-neg, .sr-pos { display: block; height: 100%; }
.sr-neg { text-align: right; }
.sr-neg i {
  display: inline-block;
  height: 100%;
  background: #a33b3b;
  border-radius: 99px;
}
.sr-pos i {
  display: inline-block;
  height: 100%;
  background: #2f6b4f;
  border-radius: 99px;
}
.sr-tag {
  font-style: normal;
  font-size: 10px;
  font-weight: 650;
  text-align: right;
  display: block;
}
.sr-tag.leader { color: #2f6b4f; }
.sr-tag.laggard { color: #a33b3b; }

.geo-kpis-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 8px 0 14px;
}
.geo-kpis-mini div {
  border: 1px solid #e6ebe8;
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
  background: #fbfcfb;
}
.geo-kpis-mini b { display: block; font-size: 18px; color: #0b3d2e; }
.geo-kpis-mini span { display: block; font-size: 10px; color: #7a8a82; margin-top: 2px; letter-spacing: .04em; text-transform: uppercase; }
.geo-mini-row {
  display: grid;
  grid-template-columns: 110px 1fr 28px;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #eef2f0;
  font-size: 12px;
}
.geo-mini-row:last-child { border-bottom: 0; }
.geo-mini-row .gbar {
  height: 8px;
  background: #edf2ef;
  border-radius: 99px;
  overflow: hidden;
}
.geo-mini-row .gbar i { display: block; height: 100%; border-radius: 99px; }
.geo-mini-row b { text-align: right; font-variant-numeric: tabular-nums; font-size: 12px; }
.snip-pills em.watch { background: #eef4e4; color: #5a7a32; }
.sc-mini-table { font-size: 12px; margin: 6px 0 14px; }
.sc-mini-table > div {
  display: grid;
  grid-template-columns: 1.4fr .9fr .7fr;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #eef2f0;
}
.sc-mini-table .sc-h { color: #7a8a82; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; font-weight: 650; }
.sc-axis-mini {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #7a8a82;
  margin: 4px 0 6px;
}
.sc-chan > div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px;
  align-items: center;
  margin: 8px 0;
  font-size: 12px;
}
.sc-line {
  position: relative;
  height: 8px;
  background: #edf2ef;
  border-radius: 99px;
}
.sc-line i {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
.sc-line i.now { background: #fff; border: 2px solid #0b3d2e; }
.sc-line i.proj { background: #0b3d2e; }
.sc-leg {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: #5c5c5c;
  margin-top: 8px;
  justify-content: center;
}
.sc-leg i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}
.sc-leg i.now { background: #fff; border: 2px solid #0b3d2e; }
.sc-leg i.proj { background: #0b3d2e; }

.ev-chart { width: 100%; height: 120px; display: block; margin: 8px 0 12px; }
.ev-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ev-kpis div {
  border: 1px solid #e6ebe8;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fbfcfb;
}
.ev-kpis b { display: block; font-size: 22px; color: #0b3d2e; }
.ev-kpis span { display: block; font-size: 11px; color: #7a8a82; margin-top: 3px; }

.ev-crises { font-size: 12px; margin: 6px 0 14px; }
.ev-crises > div {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 6px;
  padding: 6px 0;
  border-bottom: 1px solid #eef2f0;
}
.ev-crises .ev-ch {
  color: #7a8a82;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 650;
}
.ev-crises .up { color: #0b3d2e; font-weight: 650; }
.ev-kpis { grid-template-columns: 1fr 1fr; }

.ev-crises > div span:last-child { color: #5c6b66; font-variant-numeric: tabular-nums; }

/* Product dropdown caret */
.drop-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  margin-bottom: 2px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  vertical-align: middle;
}

/* Evidence page charts */
.ev-page { padding-bottom: 20px; }
.ev-kpis-wide { grid-template-columns: repeat(3, 1fr); margin: 8px 0 22px; }
.ev-note { color: var(--gray); font-size: 0.95rem; margin: 0 0 28px; max-width: 820px; }
.ev-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 22px;
  margin: 0 0 22px;
}
.ev-panel h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.ev-panel > p { color: var(--gray); font-size: 0.95rem; margin-bottom: 12px; }
.ev-legend { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; color: #5c6b66; margin: 4px 0 10px; }
.ev-legend i {
  display: inline-block; width: 22px; height: 3px; background: #0b3d2e;
  margin-right: 8px; vertical-align: middle; border-radius: 2px;
}
.ev-legend i.gold { background: #c4a035; height: 0; border-top: 3px dashed #c4a035; }
.ev-chart-wrap { width: 100%; overflow-x: auto; }
.ev-svg { width: 100%; height: auto; min-height: 260px; display: block; }
.ev-svg .grid line { stroke: #e4ece8; stroke-width: 1; }
.ev-svg .grid line.zero { stroke: #b7c4be; stroke-dasharray: 4 4; }
.ev-svg .tick { font-size: 11px; fill: #5c6b66; font-family: Inter, sans-serif; }
.ev-svg .tick.x { text-anchor: middle; }
.ev-svg .axis-label { font-size: 11px; fill: #7a8a82; font-family: Inter, sans-serif; }
.ev-svg .line-noor { stroke: #0b3d2e; stroke-width: 2.8; stroke-linejoin: round; stroke-linecap: round; }
.ev-svg .line-bm { stroke: #c4a035; stroke-width: 2.4; stroke-dasharray: 7 5; stroke-linejoin: round; stroke-linecap: round; }
.ev-caption { font-size: 13px; color: #7a8a82; margin-top: 6px; }
.ev-table-wrap { overflow-x: auto; }
.ev-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ev-table th {
  text-align: left; font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: #7a8a82; font-weight: 650; padding: 8px 10px 8px 0; border-bottom: 1px solid #e6ebe8;
}
.ev-table td { padding: 10px 10px 10px 0; border-bottom: 1px solid #eef2f0; font-variant-numeric: tabular-nums; }
.ev-table .up { color: #0b3d2e; font-weight: 650; }
@media (max-width: 800px) {
  .ev-kpis-wide { grid-template-columns: 1fr 1fr; }
}

.product-icon.pic {
  width: 100%;
  height: auto;
  background: #f4f7f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 4px 0;
}
.product-icon.pic svg { width: 100%; height: 90px; display: block; }
.ev-callout {
  margin-top: 14px;
  padding: 14px 16px;
  background: #f4f7f5;
  border: 1px solid #e6ebe8;
  border-radius: 10px;
  font-size: 14px;
  color: #3d4a45;
}

.rooms { padding: 10px 0 72px; background: var(--white); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.room {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfcfb;
  transition: transform .15s ease, border-color .15s ease;
}
.room:hover { transform: translateY(-2px); border-color: #c5d4cc; }
.room svg { width: 100%; height: 72px; display: block; }
.room span {
  font-size: 13px;
  font-weight: 560;
  color: var(--charcoal);
  letter-spacing: .02em;
}
@media (max-width: 900px) {
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

.lang-switch { position: relative; }
.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .06em;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  min-width: 44px;
}
.lang-toggle:hover { background: rgba(255,255,255,.12); }
.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 150px;
  padding: 6px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  z-index: 30;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 14px;
  color: var(--charcoal);
  cursor: pointer;
}
.lang-menu button:hover,
.lang-menu button.on {
  background: var(--green-soft);
  color: var(--green);
}
.snip-legend i { font-style: normal; }
@media (max-width: 900px) {
  .lang-toggle { margin-right: 8px; }
}
