@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --text: #1a1d21;
  --muted: #5a6470;
  --brand: #1f7a6f;
  --accent: #f29c38;
  --light: #f5f2ed;
  --ink: #101112;
  --soft: #e7eef1;
  --border: #d7dbe0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--ink);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 0;
}

.nav-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 1.2rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--brand);
  color: #ffffff;
  transition: all 0.2s ease;
}

.btn.outline {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.btn.light {
  background: #ffffff;
  color: var(--brand);
  border-color: #ffffff;
}

.btn:hover {
  transform: translateY(-1px);
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.highlight {
  background: var(--light);
}

.soft {
  background: var(--soft);
}

.dark {
  background: #121416;
  color: #ffffff;
}

.dark p,
.dark a {
  color: #e1e4e8;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: var(--soft);
  color: var(--ink);
  width: fit-content;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  padding: 32px 6vw 40px;
  background: #0f1012;
  color: #c9cdd3;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.footer a {
  color: #c9cdd3;
}

.sticky-cta {
  position: sticky;
  top: calc(100vh - 84px);
  z-index: 10;
  padding: 12px 6vw;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 860px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-top {
    flex-direction: row;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .form-wrap {
    padding: 32px;
  }

  .two-col {
    flex-direction: row;
    align-items: flex-start;
  }
}
