:root {
  color-scheme: light;
  --ink: #18242f;
  --muted: #596977;
  --line: #d9e2e7;
  --paper: #f7faf8;
  --panel: #ffffff;
  --green: #187a5a;
  --green-dark: #0e5d45;
  --yellow: #ffd36d;
  --blue: #226c9d;
  --red: #b94d42;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(247, 250, 248, 0.92);
  border-bottom: 1px solid rgba(24, 36, 47, 0.09);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.site-footer,
.hero__actions,
.cta__actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
}

.site-nav {
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--green-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-control {
  flex: 0 0 auto;
}

.language-control select {
  min-height: 42px;
  max-width: 160px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-action {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  background: #fff;
}

.hero {
  position: relative;
  min-height: min(780px, 78svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #dbeadf;
}

.hero__image {
  position: absolute;
  right: max(-6vw, -80px);
  bottom: -42px;
  width: min(54vw, 640px);
  min-width: 330px;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 24px 44px rgba(24, 36, 47, 0.24));
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.97) 0%, rgba(247, 250, 248, 0.86) 43%, rgba(247, 250, 248, 0.34) 100%),
    linear-gradient(180deg, rgba(24, 36, 47, 0.05), rgba(24, 36, 47, 0.12));
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 92px);
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.3vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero__copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: #304251;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}

.hero__actions,
.cta__actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button--primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(24, 122, 90, 0.22);
}

.button--secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--line);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.section--compact {
  padding-top: 56px;
}

.section--band {
  width: 100%;
  padding: 72px clamp(18px, 6vw, 92px);
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.section__heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(300px, 1.4fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

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

.feature {
  min-height: 230px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature__marker {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #1f2d37;
  font-weight: 900;
  background: var(--yellow);
}

.feature:nth-child(2) .feature__marker {
  color: #fff;
  background: var(--blue);
}

.feature:nth-child(3) .feature__marker {
  color: #fff;
  background: var(--red);
}

.feature p,
.copy-stack p,
.policy-section p,
.policy-section li {
  color: var(--muted);
  line-height: 1.62;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.copy-stack p {
  margin-bottom: 16px;
  font-size: 1.06rem;
}

.section--cta {
  padding-top: 58px;
}

.cta {
  padding: 34px;
  background: #eaf3ee;
  border: 1px solid #cbded3;
  border-radius: 8px;
}

.cta h2 {
  max-width: 760px;
  margin-bottom: 22px;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 52px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

.policy {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.policy__header {
  margin-bottom: 32px;
}

.policy__header h1 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
}

.policy-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.policy-section ul {
  padding-left: 22px;
}

html[dir="rtl"] .hero__image {
  right: auto;
  left: max(-6vw, -80px);
}

html[dir="rtl"] .hero__shade {
  background:
    linear-gradient(270deg, rgba(247, 250, 248, 0.97) 0%, rgba(247, 250, 248, 0.86) 43%, rgba(247, 250, 248, 0.34) 100%),
    linear-gradient(180deg, rgba(24, 36, 47, 0.05), rgba(24, 36, 47, 0.12));
}

html[dir="rtl"] .hero__content {
  margin-left: 0;
  margin-right: clamp(18px, 6vw, 92px);
}

html[dir="rtl"] .policy-section ul {
  padding-left: 0;
  padding-right: 22px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 720px;
    align-items: start;
  }

  .hero__image {
    right: -92px;
    bottom: -28px;
    width: 440px;
    opacity: 0.92;
  }

  html[dir="rtl"] .hero__image {
    right: auto;
    left: -92px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.93) 52%, rgba(247, 250, 248, 0.32) 100%);
  }

  html[dir="rtl"] .hero__shade {
    background:
      linear-gradient(180deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.93) 52%, rgba(247, 250, 248, 0.32) 100%);
  }

  .hero__content {
    width: min(620px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 56px;
  }

  html[dir="rtl"] .hero__content {
    margin: 0 auto;
  }

  .section__heading,
  .two-column,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .section--band {
    padding-block: 54px;
  }
}

@media (max-width: 520px) {
  .nav-action {
    display: none;
  }

  .language-control {
    margin-left: auto;
  }

  .language-control select {
    max-width: 132px;
  }

  .button {
    width: 100%;
  }

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

  .feature,
  .cta {
    padding: 20px;
  }
}
