* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #1c1a19;
  --muted: #5b534c;
  --accent: #1f6b59;
  --accent-soft: #d6efe7;
  --warm: #f3e2cf;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 48px 18px 120px;
}

header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 18px 12px;
}

.brand-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand-line h1,
.brand-line h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card h2 {
  margin: 0;
  font-size: 2.2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
button {
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-soft {
  background: var(--accent-soft);
  color: var(--ink);
}

.button-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

button:hover,
.button:hover {
  transform: translateY(-2px);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split-reverse {
  display: flex;
  flex-direction: column-reverse;
  gap: 22px;
}

.panel {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.panel-muted {
  background: var(--warm);
}

.tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.cta-banner {
  background: var(--accent);
  color: #fff;
  padding: 22px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-banner a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.form-shell {
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d6d0ca;
  font-size: 1rem;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.sticky-cta a {
  font-weight: 600;
}

footer {
  padding: 36px 18px 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #efe7de;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  right: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  header,
  main,
  footer {
    padding-left: 64px;
    padding-right: 64px;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-media {
    flex: 1;
  }

  .split,
  .split-reverse {
    flex-direction: row;
    align-items: center;
  }

  .split > div,
  .split-reverse > div {
    flex: 1;
  }

  .image-strip {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 230px;
  }

  .form-shell form {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-shell form > div {
    flex: 1 1 220px;
  }

  .form-shell form button {
    align-self: flex-start;
  }
}
