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

:root {
  --bg: #f4f8f3;
  --bg-soft: #ecf5e9;
  --card: #ffffff;
  --text: #172718;
  --muted: #5d6f60;
  --brand: #1f9a45;
  --brand-dark: #117133;
  --line: #d4e2d3;
  --accent: #e4f4d8;
  --danger: #d4552d;
  --shadow: 0 22px 60px rgba(17, 35, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 420px at 15% -10%, #d6f2c8 10%, transparent 65%),
    radial-gradient(900px 320px at 85% -15%, #c6ead6 10%, transparent 60%),
    var(--bg);
  line-height: 1.45;
}

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

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

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

.top-strip {
  background: #132116;
  color: #d6e8d3;
  font-size: 0.9rem;
}

.top-strip .container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.top-strip strong {
  color: #f5fff2;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(244, 248, 243, 0.86);
  border-bottom: 1px solid rgba(27, 55, 28, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.logo {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.35rem;
}

.logo span {
  color: var(--brand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.lang-switch {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #25b052);
  color: #fff;
  box-shadow: 0 14px 28px rgba(28, 144, 65, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 18px 32px rgba(28, 144, 65, 0.42);
}

.btn-secondary {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-ghost {
  border: 1px dashed #afc9af;
  background: transparent;
  color: var(--muted);
}

.hero {
  padding: 64px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #e3f5dd;
  border: 1px solid #b7dcb7;
  color: #2f5f34;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 7px 12px;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(1.95rem, 4vw, 3.35rem);
  line-height: 1.06;
  margin-bottom: 14px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 22px;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-proof {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-proof strong {
  color: var(--text);
}

.preview-card {
  background: linear-gradient(160deg, #17311c, #102615);
  color: #ecfff1;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(125, 176, 134, 0.3);
}

.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.preview-head strong {
  font-size: 1.1rem;
}

.preview-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.preview-item {
  border: 1px solid rgba(149, 214, 162, 0.24);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.preview-foot {
  background: rgba(63, 152, 88, 0.19);
  border: 1px solid rgba(138, 216, 157, 0.28);
  border-radius: 12px;
  padding: 12px;
  font-size: 0.95rem;
}

section {
  padding: 62px 0;
}

.section-title {
  max-width: 800px;
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: clamp(1.58rem, 2.6vw, 2.42rem);
  margin-bottom: 10px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

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

.metric {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.metric strong {
  font-size: 1.45rem;
  display: block;
  margin-bottom: 3px;
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.step,
.feature,
.price,
.quote,
.faq-item,
.cta-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.step {
  padding: 18px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eaf5e7;
  border: 1px solid #cbe2cc;
  color: #2f5f33;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p,
.feature p,
.price p,
.quote p,
.faq-answer,
.cta-box p {
  color: var(--muted);
}

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

.feature {
  padding: 18px;
}

.feature h3 {
  font-size: 1.03rem;
  margin-bottom: 8px;
}

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

.quote {
  padding: 16px;
}

.quote strong {
  display: block;
  margin-bottom: 7px;
  color: #335d38;
}

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

.price {
  padding: 18px;
  position: relative;
}

.price.popular {
  border: 2px solid var(--brand);
  box-shadow: 0 20px 50px rgba(32, 141, 63, 0.16);
}

.pop-badge {
  position: absolute;
  top: -12px;
  right: 14px;
  background: #14331d;
  color: #e8ffe9;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.price-value {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2rem;
  margin: 8px 0 4px;
}

.price ul {
  margin: 10px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 15px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 16px;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding-bottom: 14px;
}

.cta-box {
  padding: 26px;
  text-align: center;
  background: linear-gradient(170deg, #10361d, #154b2a);
  color: #ecfff1;
  border-color: rgba(145, 210, 158, 0.34);
  box-shadow: var(--shadow);
}

.cta-box p {
  color: #d4ecd8;
  margin-bottom: 18px;
}

.cta-box .hero-actions {
  justify-content: center;
}

footer {
  padding: 24px 0 42px;
  color: #6a7e6d;
  font-size: 0.9rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid #d8e5d7;
  padding-top: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.45s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.05s; }
.reveal:nth-child(3) { animation-delay: 0.09s; }
.reveal:nth-child(4) { animation-delay: 0.13s; }

.is-hidden-by-flag {
  display: none !important;
}

.legal-main {
  padding: 42px 0 56px;
}

.legal-layout {
  display: grid;
  gap: 14px;
}

.legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.legal-card h1 {
  font-size: clamp(1.72rem, 3vw, 2.45rem);
  margin-bottom: 8px;
}

.legal-meta {
  color: var(--muted);
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.legal-card h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.legal-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.legal-card ul {
  margin: 8px 0 12px;
  padding-left: 18px;
  color: var(--muted);
}

.legal-card li {
  margin-bottom: 6px;
}

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

.legal-kv {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.legal-kv strong {
  display: block;
  margin-bottom: 6px;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .metrics,
  .steps,
  .features,
  .quotes,
  .pricing-grid,
  .legal-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .hero {
    padding-top: 38px;
  }

  .metrics,
  .steps,
  .features,
  .quotes,
  .pricing-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

.soon-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #f0c582;
  background: #fff4df;
  color: #8b5b17;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  vertical-align: middle;
}
