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

:root {
  --bg: #f6efe4;
  --bg-deep: #fffaf2;
  --surface: #ffffff;
  --surface-soft: #fff7ec;
  --text: #10231f;
  --text-muted: #4e5f5c;
  --line: #e2d8c6;
  --accent: #0f6b61;
  --accent-strong: #0b534b;
  --signal: #d7632d;
  --signal-strong: #b84b1d;
  --ok: #2e8b57;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 16px 40px rgba(15, 107, 97, 0.15);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 600px at -10% -30%, rgba(215, 99, 45, 0.18), transparent 70%),
    radial-gradient(900px 500px at 110% 0%, rgba(15, 107, 97, 0.18), transparent 70%),
    var(--bg);
  color: var(--text);
  line-height: 1.45;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  padding: 20px 0;
}

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 48px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(15, 107, 97, 0.35);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 107, 97, 0.34);
}

.btn--primary:hover {
  background: var(--accent-strong);
}

.btn--signal {
  background: var(--signal);
  color: #fff;
  box-shadow: 0 11px 28px rgba(215, 99, 45, 0.4);
}

.btn--signal:hover {
  background: var(--signal-strong);
}

.btn--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.hero {
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  gap: 24px;
  padding: 24px 0 56px;
}

.hero__main,
.hero__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.eyebrow {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  border: 1px solid rgba(15, 107, 97, 0.25);
  background: rgba(15, 107, 97, 0.08);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero h1 {
  margin: 14px 0 14px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 620px;
}

.hero__actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__facts {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero__facts li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.stat {
  display: grid;
  gap: 12px;
}

.stat__card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  background: var(--surface-soft);
}

.stat__label {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat__value {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 800;
}

.section {
  padding: 16px 0 36px;
}

.section__header {
  max-width: 720px;
}

.section__header h2 {
  margin: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

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

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

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.proof-summary {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.timeline {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.timeline__step {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 16px;
}

.timeline__step strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--signal);
  margin-bottom: 7px;
}

.offer {
  background: linear-gradient(120deg, rgba(15, 107, 97, 0.1), rgba(215, 99, 45, 0.1));
  border: 1px solid rgba(15, 107, 97, 0.24);
  border-radius: var(--radius);
  padding: 28px;
}

.offer h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-family: "Unbounded", "Manrope", sans-serif;
}

.offer p {
  margin: 0;
  max-width: 740px;
  color: var(--text-muted);
}

.offer__items {
  margin: 14px 0 0;
  padding-left: 18px;
}

.offer__items li {
  margin-bottom: 8px;
}

.offer__actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.demo-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

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

.demo-case {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  padding: 16px;
}

.demo-case h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.demo-case p {
  margin: 0;
  color: var(--text-muted);
}

.demo-note {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-weight: 700;
}

.faq {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 14px 16px;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

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

.footer {
  padding: 36px 0 46px;
}

.footer__box {
  background: #10231f;
  color: #e8efe8;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__box h3 {
  margin: 0;
  font-size: 22px;
}

.footer__box p {
  margin: 6px 0 0;
  color: rgba(232, 239, 232, 0.8);
}

.pricing-shell {
  padding: 16px 0 42px;
}

.pricing-intro {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--surface);
}

.pricing-intro h1 {
  margin: 12px 0 10px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
}

.pricing-intro p {
  margin: 0;
  color: var(--text-muted);
  max-width: 760px;
}

.cycle-switch {
  margin-top: 16px;
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.cycle-switch .btn {
  min-height: 42px;
  padding: 10px 14px;
}

.cycle-switch .btn.is-active {
  background: var(--accent);
  color: #fff;
}

.cycle-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.price-card--featured {
  border-color: rgba(15, 107, 97, 0.5);
  box-shadow: 0 0 0 2px rgba(15, 107, 97, 0.14);
}

.price-card h3 {
  margin: 0;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price__value {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price__period {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 6px;
}

.price-card__note {
  margin: 0;
  font-size: 12px;
  color: var(--ok);
  font-weight: 700;
}

.price-card__save {
  margin: 0;
  font-size: 12px;
  color: var(--accent-strong);
  font-weight: 700;
}

.enterprise-band {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.enterprise-band h2 {
  margin: 0;
  font-size: 20px;
}

.enterprise-band p {
  margin: 6px 0 0;
  color: var(--text-muted);
}

.sticky-mobile-cta {
  display: none;
}

.muted {
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .enterprise-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 90px;
  }

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

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

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

  .hero__main,
  .hero__panel,
  .offer,
  .demo-box,
  .pricing-intro {
    padding: 20px;
  }

  .sticky-mobile-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 30;
    display: inline-flex;
  }
}
