:root {
  --bg: #f5f1e9;
  --surface: #fffaf2;
  --ink: #1f2a2a;
  --muted: #5b6865;
  --primary: #0f7669;
  --secondary: #b56a3f;
  --deep: #243738;
  --line: rgba(21, 37, 37, 0.14);
  --success: #1e8a5c;
  --btn-height: 52px;
  --radius: 18px;
  --shadow: 0 16px 45px rgba(22, 35, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 8% 12%, rgba(15, 118, 105, 0.19), transparent 34%),
  radial-gradient(circle at 90% 26%, rgba(181, 106, 63, 0.16), transparent 33%),
  linear-gradient(135deg, #f5f1e9 0%, #fbf7f0 45%, #f2ece1 100%);
  line-height: 1.68;
  font-size: 18px;
  overflow-x: hidden;
}

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

p, li, label, .faq-answer, .modal-content, footer, input, button {
  font-size: 18px;
  line-height: 1.68;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
  position: relative;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section p {
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 233, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(32, 44, 43, 0.1);
}

.header-wrap {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: #304040;
  font-weight: 500;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn, .lang-current {
  height: var(--btn-height);
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(140deg, var(--primary), #0f8f7f);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 118, 105, 0.34);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.lang-switcher {
  position: relative;
}

.lang-current {
  background: #ffffffc7;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 130px;
  background: rgba(255, 250, 242, 0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 5px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: .22s ease;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;

}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
}

.lang-menu a:hover {
  background: #f0ece3;
}

.flag-svg {
  width: 22px;
  height: 16px;
  display: inline-flex;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.hero {
  padding-top: 72px;
}

.glass-panel {
  background: linear-gradient(130deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .52));
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  margin: 0 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: .82rem;
  color: var(--secondary);
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.lead-form input {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 0 14px;
  background: #fff;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.kpi-card {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(27, 46, 45, 0.09);
}

.kpi-card strong {
  font-size: 2rem;
  display: block;
}

.dark-band {
  background: linear-gradient(135deg, #233434 0%, #2b403d 60%, #314543 100%);
  color: #ecf4f1;
}

.dark-band p, .dark-band li {
  color: #d4e3df;
}

.alloc-stack .stack {
  display: grid;
  grid-template-columns: 36% 24% 20% 20%;
  border-radius: 12px;
  overflow: hidden;
  height: 34px;
  margin-bottom: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 8px 15px rgba(4, 10, 10, 0.28);
}

.seg-a {
  background: #0ea696
}

.seg-b {
  background: #52b0a6
}

.seg-c {
  background: #cab088
}

.seg-d {
  background: #b56a3f
}

.legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: block;
}

.timeline {
  display: grid;
  gap: 14px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--primary), transparent);
}

.step {
  padding-left: 34px;
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(181, 106, 63, .22);
}

.compare-bars .row {
  margin-bottom: 14px;
}

.bar {
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  background: #e6e0d6;
  position: relative;
}

.bar .us {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--primary), #14a492);
}

.bar .mk {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #be987f99;
}

.rings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ring {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: conic-gradient(var(--primary) var(--val), #e4dbcd 0);
  position: relative;
}

.ring::after {
  content: "";
  position: absolute;
  inset: 16%;
  background: #fff7eb;
  border-radius: 50%;
}

.ring b {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
}

.matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.matrix div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  min-height: 120px;
  box-shadow: 0 8px 15px rgba(14, 30, 29, .08);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(16, 31, 30, .09);
}

.r-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), #86c4b2);
  color: #fff;
  display: grid;
  place-content: center;
  font-weight: 700;
}

.verified {
  color: var(--success);
  font-weight: 700;
  font-size: .9rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--muted);
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 180px;
  padding-bottom: 14px;
}

.final-cta {
  background: linear-gradient(140deg, #fff6ea, #f8f0e4);
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 21, .6);
  display: none;
  z-index: 100;
  padding: 30px 14px;
}

.modal-backdrop.open {
  display: block;
}

.modal {
  max-width: 900px;
  max-height: calc(100vh - 60px);
  margin: 0 auto;
  background: #fffdf8;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header, .modal-footer {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-footer {
  border-top: 1px solid var(--line);
  border-bottom: none;
  justify-content: flex-start;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.3rem;
}

.modal-content {
  padding: 18px;
  overflow: auto;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.9rem;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 100%);
  height: 100%;
  background: #fffaf2;
  z-index: 80;
  transition: right .28s ease;
  padding: 18px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, .18);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 24, .48);
  z-index: 70;
  display: none;
}

.drawer-overlay.open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 14px;
}

.mobile-nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: .45s ease;
}

[data-reveal].show {
  opacity: 1;
  transform: none;
}
@media (max-width: 1199px) {
  .nav-links {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .mobile-toggle {
    display: block;
  }
  .rings {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (max-width: 900px) {

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .kpi-strip, .reviews {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .lang-current , .header-actions .btn-primary {
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    padding: 0 10px;
  }
  .header-wrap, .header-actions {
    gap: 5px;
  }
}
@media (max-width: 600px) {
  .header-wrap .brand {
    font-size: 15px;
    line-height: 19px;
  }
  .header-wrap {
    margin: 0 7px;
    width: auto;
  }
}
.no-scroll {
  overflow: hidden;
}

.kpi-glass h3 {
  color: #fff;
}

.kpi-glass p {
  color: rgba(255, 255, 255, 0.88);
}

.ring-band .ring b {
  color: #0c1633;
  text-shadow: none;
}
@media (max-width: 767px) {
  .matrix {
    grid-template-columns: 1fr;
  }
  .section h2 {
    font-size: 24px;
  }
  .rings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    .ring:last-child {
      grid-column: 1 / -1;
      justify-self: center;
      width: 100%;
      max-width: 50%;
    }
  }
}
@media (max-width: 426px) {
  .legend span {
    font-size: 12px;
  }
  .section h2 {
    font-size: 21px;
  }
  .rings {
    grid-template-columns: 1fr;
    .ring:last-child {
      max-width: 100%;
    }
  }
}