@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg: #eef8f2;
  --bg-soft: #f8fbf9;
  --text: #15322a;
  --text-soft: #4a6159;
  --text-muted: #73877d;
  --text-faint: #a8b9b3;
  --line: #dceee7;
  --line-soft: #eff8f3;
  --green-900: #15322a;
  --green-800: #1a4538;
  --green-700: #275946;
  --green-600: #2f6b55;
  --green-500: #78b49a;
  --green-400: #9ecfb9;
  --green-100: #d8eee4;
  --mint: #eafcf2;
  --cream: #fffdf7;
  --cream-2: #f6f4ea;
  --sage: #ddece2;
  --text-white: #fffefb;
  --shadow: rgba(40, 84, 51, 0.12);
  --shadow-soft: rgba(25, 55, 42, 0.06);
}

body {
  font-family: "Manrope", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  left: -170px;
  top: -110px;
  background: radial-gradient(circle, rgba(120,180,154,.3), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

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

.container {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
}

.topbar {
  background: rgba(255, 253, 247, 0.78);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(185, 220, 200, 0.6);
}

.nav-wrapper {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}

.brand-icon span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--text-white);
  display: inline-block;
}

.brand-text {
  font-size: 27px;
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -0.05em;
}

.brand-text span {
  color: var(--green-600);
}

.main-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-link:hover:after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  padding: 13px 24px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-700);
  color: var(--text-white);
  border-color: var(--green-700);
  box-shadow: 0 10px 24px var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--green-900);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--green-700);
}

.btn-light {
  background: var(--text-white);
  color: var(--green-900);
}

.btn-large {
  font-size: 15px;
  padding: 15px 28px;
}

.btn-block {
  width: 100%;
}

.compact {
  font-size: 13px;
  padding-inline: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-selector {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: all .2s ease;
  font-family: "Manrope", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

.lang-selector:hover {
  border-color: var(--green-400);
  background: var(--mint);
}

.lang-selector:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(120, 180, 154, 0.34);
}

.hero {
  background:
    radial-gradient(circle at 80% 8%, rgba(255,255,255,.8), transparent 20%),
    linear-gradient(120deg, #eef8f2 0%, #f7fbf8 90%);
}

.section-pad {
  padding: 88px 0;
}

.hero {
  padding-top: 92px;
  padding-bottom: 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}

.icon-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green-500);
  border: 2px solid #eefcf5;
  display: inline-block;
}

.hero-copy h1 {
  margin-top: 24px;
  max-width: 620px;
  font-size: clamp(50px, 6.4vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.08em;
  color: var(--green-900);
}

.hero-text {
  margin-top: 30px;
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 620px;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-proof {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-proof > div {
  position: relative;
}

.proof-number {
  display: block;
  line-height: 1;
  font-size: 30px;
  font-weight: 800;
  color: var(--green-900);
}

.proof-label {
  display: block;
  margin-top: 11px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.hero-panel {
  position: relative;
}

.hero-panel:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid #d3ece5;
  background: transparent;
  left: -44px;
  top: -36px;
}

.panel-card {
  background: linear-gradient(180deg, #183f34, #244b3b);
  border-radius: 34px;
  padding: 34px;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 36px 90px var(--shadow);
  position: relative;
  overflow: hidden;
}

.panel-card:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  right: -88px;
  top: -96px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-header h3 {
  margin-top: 8px;
  font-size: 30px;
  line-height: 1;
}

.mini-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9ded2;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.3);
}

.badge-success {
  color: #b7f3ca;
}

.amount-block {
  margin-top: 84px;
}

.amount-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #b7d6ca;
  text-transform: uppercase;
}

.amount {
  display: block;
  margin-top: 12px;
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
}

.currency-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--green-700);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
}

.amount-caption {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: #a5ccb8;
}

.progress-section {
  margin-top: 52px;
}

.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #d6ece2;
}

.progress-bar {
  margin-top: 11px;
  height: 12px;
  border-radius: 99px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, #b9ecd9);
}

.feature-list {
  margin-top: 36px;
}

.feature-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #eefbf4;
}

.feature-list > div + div {
  margin-top: 12px;
}

.check-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  color: #a2f4b8;
}

.panel-card .btn {
  margin-top: 42px;
}

.solidarity-banner {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--text-white);
  padding: 40px 0;
  border-block: 1px solid rgba(255,255,255,.2);
}

.solidarity-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.solidarity-content h2 {
  font-size: clamp(31px, 4.6vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  margin-top: 12px;
}

.solidarity-content p {
  margin-top: 14px;
  max-width: 720px;
  color: #d4efe8;
  font-size: 17px;
  line-height: 1.72;
}

.solidarity-actions {
  flex-shrink: 0;
}

.solidarity-content .btn {
  min-width: 235px;
}

.partners {
  background: var(--green-900);
  color: var(--text-white);
}

.partners-grid {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partners-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: .82;
}

.partner-line {
  display: flex;
  align-items: center;
  gap: 46px;
  font-size: 12px;
  font-weight: 700;
  opacity: .8;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-head.centered h2,
.benefits-content h2,
.faq h2,
.cta-wrapper h2 {
  margin-top: 20px;
  color: var(--green-900);
  font-size: clamp(36px, 5.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.section-copy {
  margin-top: 20px;
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.78;
}

.compact-eyebrow {
  font-size: 11px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--text-white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 12px 34px var(--shadow-soft);
}

.service-card.highlighted {
  background: linear-gradient(180deg, #244d3b, #15322a);
  border-color: var(--green-700);
  color: var(--text-white);
}

.service-card .icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-900);
  margin-bottom: 28px;
}

.highlighted .icon-wrap {
  background: rgba(255,255,255,.12);
  color: var(--text-white);
}

.icon-svg {
  font-weight: 900;
  font-size: 30px;
}

.service-card h3 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.service-card p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}

.highlighted p {
  color: #c7ebe1;
}

.text-link {
  margin-top: auto;
  padding-top: 28px;
  font-size: 13px;
  font-weight: 800;
  color: var(--green-700);
}

.highlighted .text-link {
  color: var(--text-white);
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
}

.benefits {
  background: linear-gradient(180deg, #effaf5 0%, #fbfdfb 100%);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(420px, 1fr);
  align-items: center;
  gap: 76px;
}

.image-panel {
  min-height: 420px;
}

.image-box {
  min-height: 440px;
  border-radius: 34px;
  background:
    linear-gradient(155deg, rgba(31, 84, 65, 0.78), rgba(218, 242, 225, 0.78)),
    url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&q=80') center/cover;
  border: 1px solid #bedbd5;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.34) 1px, transparent 1px), linear-gradient(45deg, transparent 24%, rgba(255,255,255,.16) 24%, rgba(255,255,255,.16) 25%, transparent 25%, transparent 74%, rgba(255,255,255,.16) 74%, rgba(255,255,255,.16) 75%, transparent 75%);
  background-position: 0 0, 12px 12px;
  background-size: 28px 28px, 28px 28px;
  opacity: .75;
}

.metric-card {
  position: absolute;
  background: var(--text-white);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px var(--shadow-soft);
}

.metric-card.glass {
  width: 230px;
  left: 38px;
  top: 34px;
}

.metric-card.emphasize {
  width: 260px;
  right: 30px;
  bottom: 48px;
  background: var(--green-900);
  color: var(--text-white);
}

.metric-card .metric-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.metric-card.emphasize .metric-label {
  color: #aee6cc;
}

.metric-card strong {
  display: block;
  margin-top: 16px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-card .metric-caption {
  display: block;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 12px;
}

.metric-card.emphasize .metric-caption {
  color: #cdebdc;
}

.chart-lines {
  position: absolute;
  left: 46px;
  bottom: 30px;
  display: flex;
  align-items: end;
  gap: 5px;
}

.chart-lines span {
  width: 10px;
  background: var(--text-white);
  border-radius: 30px;
  height: 30px;
}

.chart-lines span:nth-child(1) { height: 36px; }
.chart-lines span:nth-child(2) { height: 68px; }
.chart-lines span:nth-child(3) { height: 44px; }
.chart-lines span:nth-child(4) { height: 92px; }

.benefits-content {
  max-width: 590px;
}

.benefits-content h2 {
  font-size: clamp(34px, 4.2vw, 48px);
}

.value-list {
  margin-top: 38px;
}

.value-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.value-row + .value-row {
  margin-top: 30px;
}

.value-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-900);
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}

.value-row h3 {
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--green-900);
}

.value-row p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.process {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 24px;
}

.process-card {
  padding: 36px 36px 34px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--text-white);
  box-shadow: 0 10px 35px var(--shadow-soft);
}

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--green-500);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--green-700);
}

.process-card h3 {
  margin-top: 30px;
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.process-card p {
  margin-top: 15px;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.78;
}

.cta-band {
  background: var(--green-900);
  color: var(--text-white);
  padding: 88px 0;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-wrapper h2 {
  color: var(--text-white);
  font-size: clamp(34px, 4vw, 50px);
}

.cta-wrapper p {
  margin-top: 20px;
  font-size: 18px;
  color: #d9f6e9;
  line-height: 1.75;
}

.faq {
  background: var(--bg-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(520px, 1fr);
  gap: 48px;
}

.faq h2 {
  font-size: clamp(34px, 3.7vw, 52px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.faq-list details {
  background: var(--text-white);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px 26px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 17px;
  color: var(--green-900);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.72;
}

.footer {
  background: #102a22;
  color: #d7e6e0;
  padding: 88px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(210px, .6fr) minmax(260px, .78fr);
  gap: 72px;
}

.footer-brand .brand-text {
  color: var(--text-white);
}

.footer-text {
  max-width: 330px;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.88;
  color: #afded1;
}

.footer h4 {
  color: var(--text-white);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 13px;
}

.footer-links a,
.footer-links span {
  font-size: 14px;
  color: #afded1;
}

.footer-bottom {
  margin-top: 60px;
  font-size: 12px;
  color: #91b7a8;
}

@media (max-width: 900px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .nav-wrapper {
    min-height: auto;
    padding: 20px 0;
  }

  .main-nav {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .faq-layout,
  .footer-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 12vw, 74px);
  }

  .hero-text {
    font-size: 20px;
  }

  .hero-proof {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-panel:before {
    display: none;
  }

  .partners-grid,
  .cta-wrapper {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .partner-line {
    flex-wrap: wrap;
    gap: 20px;
  }

  .image-box {
    min-height: 420px;
  }

  .section-pad {
    padding: 60px 0;
  }
}
