* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5b5f6a;
  --sand: #f2efe8;
  --stone: #e2dfd6;
  --night: #111316;
  --accent: #275d8c;
  --accent-2: #b86b3a;
  --border: rgba(27, 27, 31, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfaf7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 6vw 0;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3.5rem 6vw;
  border-bottom: 1px solid var(--border);
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split.highlight {
  background: var(--sand);
}

.split.dark {
  background: var(--night);
  color: #f7f6f1;
}

.split.dark a {
  color: #f7f6f1;
}

.split.bg-urban {
  background: linear-gradient(120deg, #f7f2ea 0%, #efe6d7 100%);
  background-image: url("assets/urban-1.svg");
  background-repeat: no-repeat;
  background-position: right 10% center;
  background-size: 38%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--accent-2);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.split.dark p {
  color: rgba(247, 246, 241, 0.76);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(247, 246, 241, 0.4);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 0.8rem;
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  flex: 1 1 140px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #fff;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.price {
  font-weight: 600;
  color: var(--accent);
  font-size: 1.1rem;
}

.form-panel {
  background: #fff;
  border-radius: 1.4rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.site-footer {
  padding: 2.5rem 6vw 3rem;
  background: #f4f1ea;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--accent-2);
  color: #fff;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 320px;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-list {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .form-panel {
    padding: 2.5rem;
  }
}
