* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f2ee;
  --ink: #1b1a19;
  --muted: #5e5a56;
  --accent: #3b6d7a;
  --accent-strong: #2b4f58;
  --light: #ffffff;
  --soft: #efe7e0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.header {
  padding: 26px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tagline {
  font-size: 14px;
  color: var(--muted);
}

.split {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 70px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.headline {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: var(--light);
  box-shadow: 0 10px 24px rgba(59, 109, 122, 0.25);
}

.btn.secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.section-soft {
  background: var(--soft);
}

.section-light {
  background: var(--light);
}

.card {
  background: var(--light);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card small {
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-link {
  color: var(--accent-strong);
  font-weight: 600;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.stat {
  background: rgba(59, 109, 122, 0.12);
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-item span {
  color: var(--muted);
  font-size: 14px;
}

.form-card {
  background: var(--light);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-size: 15px;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 36px 0 50px;
  background: #1e1c1a;
  color: #f9f4ef;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-strong);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 12;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 50px 0 20px;
}

.page-hero h1 {
  font-size: clamp(30px, 4vw, 42px);
}

.page-hero p {
  color: var(--muted);
  max-width: 700px;
}

.simple-section {
  padding: 40px 0;
}

.two-col {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1;
  min-width: 260px;
}

.mt-20 {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
