/* Base */
:root {
  --ink: #1e2a24;
  --muted: #4c5a53;
  --accent: #2f7a5e;
  --accent-dark: #245f49;
  --light: #f4f6f3;
  --sand: #efe9df;
  --sun: #f2c45a;
  --mist: #e7eef1;
  --border: #d5ded7;
}

* {
  box-sizing: border-box;
}
[hidden] {
    display: none !important;
}
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

header {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.page-hero {
  display: flex;
  flex-direction: column;
  padding: 70px 6vw 40px;
  gap: 18px;
  background: var(--mist);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 70px 6vw;
}

.section.light {
  background: var(--light);
}

.section.sand {
  background: var(--sand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-content h2,
.split-content h3 {
  margin: 0;
}

.split-content p {
  margin: 0;
  color: var(--muted);
}

.highlight {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.btn.alt {
  background: transparent;
  color: var(--accent);
}

.btn.light {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--accent-dark);
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

textarea {
  min-height: 110px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(21, 47, 35, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

footer {
  padding: 50px 6vw;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .page-hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-hero .hero-text {
    max-width: 55%;
  }

  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-media {
    width: 48%;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    width: 33%;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing .card {
    width: calc(50% - 10px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
