:root {
  --ink: #082719;
  --forest: #062517;
  --forest-soft: #0d3b27;
  --lime: #d8ef52;
  --cream: #f6f3e9;
  --paper: #fffdf7;
  --sage: #dce8da;
  --muted: #587064;
  --line: rgba(8, 39, 25, 0.16);
  --radius: 28px;
  --shadow: 0 24px 70px rgba(8, 39, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html[dir='rtl'] body {
  font-family: Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  color: #fff;
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--lime);
}

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

.language-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(216, 239, 82, 0.25);
}

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

.button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 810px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 36%,
      rgba(216, 239, 82, 0.14),
      transparent 25%
    ),
    linear-gradient(120deg, #062517 0%, #0a3824 56%, #082719 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: '';
  pointer-events: none;
  border: 1px solid rgba(216, 239, 82, 0.35);
  border-radius: 50%;
}

.hero::before {
  width: 580px;
  height: 580px;
  inset: 145px 5% auto auto;
}

.hero::after {
  width: 430px;
  height: 680px;
  inset: 80px 10% auto auto;
}

html[dir='rtl'] .hero::before {
  inset-inline: 5% auto;
}

html[dir='rtl'] .hero::after {
  inset-inline: 10% auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 70px;
  padding-top: 130px;
  padding-bottom: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

html[dir='rtl'] .eyebrow {
  letter-spacing: 0;
}

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

h1 {
  max-width: 810px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

html[dir='rtl'] h1 {
  font-size: clamp(48px, 6.5vw, 86px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scan-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.scan-visual svg {
  width: min(410px, 100%);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.22));
}

.scan-note {
  position: absolute;
  inset: auto 0 24px auto;
  width: 210px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

html[dir='rtl'] .scan-note {
  inset-inline: auto 0;
}

.scan-note strong {
  display: block;
  color: var(--lime);
  font-size: 32px;
  line-height: 1;
}

.trust-strip {
  background: var(--lime);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 25px;
  border-inline-start: 1px solid rgba(8, 39, 25, 0.18);
  font-weight: 800;
  text-align: center;
}

.trust-item:last-child {
  border-inline-end: 1px solid rgba(8, 39, 25, 0.18);
}

.section {
  padding: 110px 0;
}

.section-paper {
  background: var(--paper);
}

.section-dark {
  color: #fff;
  background: var(--forest);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  margin-bottom: 64px;
}

.section-heading h2,
.split-copy h2,
.cta-card h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

html[dir='rtl'] .section-heading h2,
html[dir='rtl'] .split-copy h2,
html[dir='rtl'] .cta-card h2 {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lead {
  color: var(--muted);
  font-size: 21px;
}

.section-dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.info-card .number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 50%;
  background: var(--lime);
  font-weight: 900;
}

.info-card h3,
.package h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.15;
}

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

.systems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
}

.system {
  padding: 36px;
  background: var(--forest);
}

.system-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border: 1px solid rgba(216, 239, 82, 0.45);
  border-radius: 50%;
  color: var(--lime);
  font-size: 22px;
}

.system h3 {
  margin-bottom: 8px;
  font-size: 27px;
}

.system p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.feature-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(216, 239, 82, 0.26),
      transparent 16%
    ),
    linear-gradient(145deg, #0b3322, #061c13);
}

.feature-visual svg {
  position: absolute;
  width: 68%;
  inset: 8% 16%;
  color: var(--lime);
  opacity: 0.9;
}

.feature-stat {
  position: absolute;
  inset: auto 24px 24px;
  padding: 24px;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.feature-stat strong {
  display: block;
  font-size: 34px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 34px;
}

.check-list li::before {
  position: absolute;
  content: '✓';
  inset-inline-start: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  counter-increment: steps;
  min-height: 220px;
  padding: 28px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.step::before {
  content: '0' counter(steps);
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step h3 {
  font-size: 22px;
}

.packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.package {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.package-featured {
  background: var(--sage);
}

.package-label {
  display: inline-block;
  margin-bottom: 48px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package ul {
  margin: 26px 0 0;
  padding-inline-start: 20px;
}

.cta {
  padding: 0 0 110px;
  background: var(--paper);
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 80px;
  border-radius: 42px;
  color: #fff;
  background: var(--forest);
}

.cta-card::after {
  position: absolute;
  content: '';
  width: 440px;
  height: 440px;
  inset: -170px -100px auto auto;
  border: 1px solid rgba(216, 239, 82, 0.45);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(216, 239, 82, 0.04),
    0 0 0 140px rgba(216, 239, 82, 0.03);
}

html[dir='rtl'] .cta-card::after {
  inset-inline: -100px auto;
}

.cta-card > * {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 20px;
}

.footer {
  padding: 62px 0 34px;
  color: #fff;
  background: #041b11;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 52px;
}

.footer-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

@media (max-width: 960px) {
  .hero-grid,
  .section-heading,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 10px;
  }

  .scan-visual {
    min-height: 390px;
  }

  .scan-visual svg {
    width: 280px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    gap: 48px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 76px;
  }

  .nav .button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 130px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: 50px;
  }

  html[dir='rtl'] h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .scan-visual {
    min-height: 330px;
  }

  .scan-note {
    width: 180px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-top: 1px solid rgba(8, 39, 25, 0.18);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid rgba(8, 39, 25, 0.18);
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-card h2 {
    font-size: 42px;
  }

  .card-grid,
  .systems-grid,
  .steps,
  .packages {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 240px;
  }

  .feature-visual {
    min-height: 450px;
  }

  .package {
    padding: 30px;
  }

  .cta {
    padding-bottom: 72px;
  }

  .cta-card {
    padding: 50px 28px;
    border-radius: 30px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
