:root {
  --bg: #eef4ef;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(252, 253, 251, 0.88);
  --text: #17362d;
  --muted: #60786a;
  --line: rgba(23, 54, 45, 0.08);
  --green: #1f5b49;
  --green-soft: #3e7d64;
  --teal: #325c69;
  --mint: #dfeae2;
  --gold: #b8955c;
  --shadow: 0 28px 70px rgba(25, 53, 45, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --max-width: 1380px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 149, 92, 0.16), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(50, 92, 105, 0.12), transparent 22%),
    linear-gradient(180deg, #f8faf7 0%, #e8f0e9 52%, #e3ece5 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 88%);
}

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

button,
input {
  font: inherit;
}

body,
.page-shell {
  display: grid;
}

.page-shell {
  min-height: 100vh;
  place-items: center;
  width: 100%;
  padding: 16px;
}

.landing-card {
  width: min(100%, var(--max-width));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(253, 254, 252, 0.8), rgba(238, 245, 239, 0.74)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 45%);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.hero-grid,
.bottom-grid {
  display: grid;
  gap: 16px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.92fr);
  margin-bottom: 16px;
}

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

.cta-hero,
.hero-panel,
.trust-card,
.cta-card {
  min-width: 0;
}

.cta-hero,
.trust-card {
  padding: 10px 8px 8px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  color: #fff;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 2px;
  font-size: 0.82rem;
  color: var(--muted);
}

.brand-copy strong {
  color: var(--text);
  font-size: 0.96rem;
  letter-spacing: -0.03em;
}

.language-switcher {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(20, 49, 38, 0.06);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: 160ms ease;
}

.lang-btn.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(20, 49, 38, 0.08);
}

.eyebrow,
.card-label,
.micro-benefits span,
.steps-list span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.7rem;
}

.eyebrow,
.card-label {
  color: var(--green-soft);
}

.cta-hero h1,
.cta-card h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

.cta-hero h1 {
  max-width: 8ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4.55vw, 5.2rem);
  line-height: 0.84;
  font-weight: 600;
}

.cta-card h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 0.98;
  max-width: 12ch;
}

.hero-text,
.steps-list p,
.trust-items p,
.cta-card p,
.offer-main span,
.offer-stats span {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 44ch;
  margin: 16px 0 0;
  font-size: 0.94rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #234f42 0%, #2e6170 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(31, 91, 73, 0.2);
}

.btn-secondary {
  border-color: rgba(23, 54, 45, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.micro-benefits {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-benefits {
  margin-top: 16px;
}

.micro-benefits span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  letter-spacing: 0.09em;
}

.glass-card,
.steps-card,
.trust-card {
  border-radius: var(--radius-xl);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(243, 248, 244, 0.72));
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.offer-card,
.cta-card {
  padding: 24px;
}

.offer-main {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
}

.offer-main strong {
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.offer-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.offer-stats article,
.steps-list article,
.trust-items article {
  padding: 15px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.offer-stats strong,
.steps-list strong,
.trust-items strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.steps-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: linear-gradient(180deg, #dceadf 0%, #bfd3c5 46%, #9eb3a7 100%);
  box-shadow: var(--shadow);
}

.steps-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -56px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 68%);
}

.steps-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.steps-list article {
  background: rgba(248, 252, 249, 0.56);
}

.steps-list p,
.trust-items p,
.cta-card p,
.form-note {
  margin: 8px 0 0;
}

.bottom-grid {
  align-items: stretch;
}

.trust-card {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(246, 249, 246, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.36);
  min-height: 100%;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.trust-items article {
  min-height: 100%;
}

.cta-card {
  display: grid;
  align-content: start;
}

.cta-button {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  color: var(--muted);
  margin-top: 12px;
  font-size: 0.78rem;
  line-height: 1.45;
}

@media (max-height: 940px) and (min-width: 980px) {
  .page-shell {
    padding: 10px 14px;
  }

  .landing-card {
    padding: 18px;
    border-radius: 34px;
  }

  .hero-grid,
  .bottom-grid,
  .hero-panel {
    gap: 12px;
  }

  .hero-grid {
    margin-bottom: 12px;
  }

  .topbar {
    margin-bottom: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .cta-hero h1 {
    font-size: clamp(2.7rem, 4vw, 4.35rem);
    line-height: 0.82;
  }

  .hero-text {
    margin-top: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .btn {
    min-height: 46px;
    padding: 0 20px;
  }

  .cta-button {
    margin-top: 14px;
  }

  .cta-benefits {
    margin-top: 12px;
    gap: 8px;
  }

  .micro-benefits span,
  .eyebrow,
  .card-label,
  .steps-list span {
    font-size: 0.64rem;
  }

  .micro-benefits span {
    padding: 8px 11px;
  }

  .offer-card,
  .steps-card,
  .trust-card {
    padding: 18px;
  }

  .offer-main {
    margin: 10px 0 14px;
  }

  .offer-main strong {
    font-size: clamp(1.9rem, 3vw, 3rem);
  }

  .offer-stats,
  .trust-items,
  .steps-list {
    gap: 8px;
  }

  .offer-stats article,
  .steps-list article,
  .trust-items article {
    padding: 13px 14px;
  }

  .offer-stats span,
  .steps-list p,
  .trust-items p,
  .form-note {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .offer-stats strong,
  .steps-list strong,
  .trust-items strong {
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .form-note {
    margin-top: 10px;
  }
}

@media (max-width: 1180px) {
  .landing-card {
    padding: 18px;
  }

  .hero-grid,
  .trust-items,
  .offer-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .page-shell {
    padding: 12px;
  }

  .landing-card {
    border-radius: 26px;
    padding: 14px;
  }

  .cta-hero h1 {
    font-size: clamp(3rem, 12vw, 4.2rem);
  }

  .topbar,
  .language-switcher,
  .micro-benefits {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .lang-btn {
    width: 100%;
  }
}
