:root {
  --blue: #0b3344;
  --blue-2: #0f4256;
  --green: #65b32e;
  --green-dark: #4b9123;
  --text: #142832;
  --muted: #5f6f78;
  --light: #f5f8f8;
  --line: #dbe5e8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(9, 42, 55, 0.08);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

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

img {
  max-width: 100%;
  height: auto;
}

p {
  margin: 0 0 1rem;
}

.container {
  max-width: var(--max);
  margin: auto;
  padding: 0 24px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.logo img {
  display: block;
  height: 62px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 650;
  color: #24424d;
}

.menu a {
  padding: 8px 0;
}

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

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid transparent;
  transition: 0.18s ease;
  background: var(--green);
  color: var(--white);
  box-shadow: none;
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn.flat {
  box-shadow: none;
}

.btn.support {
  background: var(--blue);
  color: var(--white);
}

.btn.support:hover {
  background: var(--blue-2);
}

.btn.light {
  background: var(--white);
  color: var(--blue);
  border-color: #cbd9dc;
}

.btn.light:hover {
  background: #f6faf8;
  color: var(--green-dark);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--white);
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 55%, #104b37 100%);
  padding: 58px 0;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.panel {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.eyebrow {
  color: var(--green);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

.hero h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.08rem;
  color: #dfeaed;
}

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

.dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #c7d3d7;
  cursor: pointer;
}

.dot.active {
  background: var(--green);
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--light);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head h2,
.content h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.12;
  margin: 0 0 12px;
  color: var(--blue);
}

.section-head p {
  font-size: 1.08rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 26px rgba(12, 46, 60, 0.04);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.card:hover {
  border-color: #b7d9c5;
  transform: translateY(-2px);
}

.card img.icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1.22rem;
}

.card p,
.card li {
  color: var(--muted);
}

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

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.kpi {
  background: var(--light);
  border-radius: 14px;
  padding: 18px;
}

.kpi strong {
  display: block;
  font-size: 1.65rem;
  color: var(--green-dark);
}

.page-hero {
  background: linear-gradient(135deg, #f7faf9, #edf4f6);
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 780px;
  font-size: 1.12rem;
  color: var(--muted);
}

.service-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row .icon-box {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(12, 46, 60, 0.05);
}

.service-row .icon-box img {
  max-width: 48px;
  max-height: 48px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.tag {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  background: #eef6ef;
  border: 1px solid #d4e9d5;
  border-radius: 999px;
  padding: 7px 11px;
}

.cta {
  background: var(--blue);
  color: var(--white);
  border-radius: 26px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta h2 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.cta p {
  color: #d7e5e9;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form label {
  font-weight: 750;
  color: var(--blue);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  margin-top: 6px;
  background: var(--white);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(101, 179, 46, 0.25);
  border-color: var(--green);
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.legal {
  font-size: 0.95rem;
  color: var(--muted);
}

.footer {
  background: var(--blue);
  color: var(--white);
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}

.footer img {
  width: 160px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer h3 {
  margin: 0 0 13px;
}

.footer a,
.footer p,
.footer li {
  color: #d8e4e8;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin: 7px 0;
}

.subfooter {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 34px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #d8e4e8;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  max-width: 760px;
  margin: auto;
}

.cookie.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.notice {
  background: #f1f7f3;
  border-left: 4px solid var(--green);
  padding: 18px;
  border-radius: 12px;
  color: #31505a;
}

@media (max-width: 1100px) {
  .nav {
    gap: 18px;
  }

  .menu {
    gap: 18px;
  }

  .logo img {
    height: 56px;
    max-width: 205px;
  }
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: block;
  }

  .menu,
  .actions {
    display: none;
  }

  .menu.open {
    display: flex;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .split,
  .footer-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .logo img {
    height: 50px;
    max-width: 185px;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }

  .nav {
    min-height: 76px;
  }

  .menu.open {
    top: 76px;
  }

  .logo img {
    height: 44px;
    max-width: 160px;
  }

  .hero {
    padding: 42px 0;
  }

  .panel {
    padding: 24px;
  }

  .cards,
  .kpis {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 28px;
    border-radius: 20px;
  }
}
