:root {
  --bg-1: #f4fff1;
  --bg-2: #e5f7d9;
  --bg-3: #8ecf5e;
  --bg-4: #ffffff;
  --surface: rgba(255, 255, 255, 0.7);
  --text: #ffffff;
  --text-dark: #173117;
  --text-soft: rgba(23, 49, 23, 0.72);
  --line: rgba(142, 207, 94, 0.22);
  --yellow: #e4f39a;
  --blue: #8ecf5e;
  --shadow: 0 30px 70px rgba(103, 149, 71, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 12% 14%, rgba(179, 232, 137, 0.22), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(143, 207, 94, 0.2), transparent 24%),
    linear-gradient(180deg, var(--bg-4) 0%, var(--bg-1) 50%, var(--bg-2) 100%);
}

.page {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  min-height: calc(100vh - 44px);
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    linear-gradient(160deg, rgba(142, 207, 94, 0.14), rgba(142, 207, 94, 0.05));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(142, 207, 94, 0.1), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(142, 207, 94, 0.08), transparent 22%);
  pointer-events: none;
}

.copy,
.visual-stage {
  position: relative;
  z-index: 1;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(142, 207, 94, 0.1);
  border: 1px solid rgba(142, 207, 94, 0.18);
  box-shadow: 0 10px 24px rgba(103, 149, 71, 0.12);
}

.brand-name,
.cta-button {
  font-family: "Space Grotesk", sans-serif;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(103, 149, 71, 0.12);
}

.brand-name {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.eyebrow {
  margin: 26px 0 12px;
  color: #5a9d2c;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  text-shadow: none;
}

.lead {
  max-width: 34rem;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.65;
}

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

.value-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.7vw, 1.26rem);
  font-weight: 600;
  line-height: 1.45;
}

.value-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: 0 0 11px;
  background: linear-gradient(180deg, #8ecf5e 0%, #6ab13a 100%);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 62px;
  margin-top: 34px;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #e8f8dc 100%);
  color: #2f6b13;
  text-decoration: none;
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  font-weight: 700;
  box-shadow:
    0 16px 36px rgba(103, 149, 71, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.88);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.01);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(142, 207, 94, 0.32);
  outline-offset: 4px;
}

.messenger-badge {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #a4da78 0%, #76ba3b 100%);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 10px 22px rgba(103, 149, 71, 0.24);
}

.messenger-badge svg {
  width: 20px;
  height: 20px;
}

.visual-stage {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.figure-card {
  position: relative;
  width: min(100%, 690px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: 38px;
  border: 1px solid rgba(142, 207, 94, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 252, 231, 0.88));
  box-shadow: 0 30px 70px rgba(103, 149, 71, 0.16);
}

.figure-glow {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(142, 207, 94, 0.26), rgba(142, 207, 94, 0.1) 40%, transparent 72%);
  filter: blur(22px);
}

.figure-card img {
  position: relative;
  width: 88%;
  max-height: 72%;
  object-fit: contain;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.note {
  margin: 16px 0 0;
  color: rgba(23, 49, 23, 0.54);
  font-size: 0.94rem;
  line-height: 1.5;
}

.site-footer {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto 26px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 26px;
  border: 1px solid rgba(142, 207, 94, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(103, 149, 71, 0.1);
}

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

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
}

.footer-brand p {
  margin: 0;
  color: var(--text-dark);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-links a,
.legal-back {
  color: #4b8428;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.legal-back:hover,
.legal-back:focus-visible {
  text-decoration: underline;
}

.legal-page {
  background:
    radial-gradient(circle at 12% 14%, rgba(179, 232, 137, 0.22), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(143, 207, 94, 0.2), transparent 24%),
    linear-gradient(180deg, var(--bg-4) 0%, var(--bg-1) 50%, var(--bg-2) 100%);
}

.legal-shell {
  width: min(900px, calc(100% - 24px));
  margin: 0 auto;
  padding: 28px 0 44px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 18px;
}

.legal-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(142, 207, 94, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 46px rgba(103, 149, 71, 0.12);
}

.legal-card h1,
.legal-card h2 {
  color: var(--text-dark);
}

.legal-card h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
}

.legal-card h2 {
  margin: 24px 0 10px;
  font-size: 1.1rem;
}

.legal-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .page {
    width: min(100% - 20px, 1220px);
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-pill,
  .eyebrow,
  .lead,
  .cta-button {
    margin-left: auto;
    margin-right: auto;
  }

  .value-list li {
    justify-content: center;
  }

  .visual-stage {
    min-height: 380px;
  }

  .site-footer {
    width: min(100% - 20px, 1220px);
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    border-radius: 28px;
    padding: 22px 18px 28px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .eyebrow {
    margin-top: 20px;
  }

  .value-list li {
    font-size: 1.02rem;
  }

  .cta-button {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .visual-stage {
    min-height: 280px;
  }

  .site-footer {
    padding: 18px;
  }

  .legal-card {
    padding: 22px 18px;
  }
}
