* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f4f1ed;
  --ink: #1f2428;
  --muted: #5c666f;
  --accent: #2f4b6a;
  --accent-soft: #d9e1ea;
  --highlight: #f2c14e;
  --card: #ffffff;
  --border: #d7d2cc;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #ece7e1;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 18px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid var(--ink);
}

.sticky-cta {
  margin-top: auto;
  padding: 14px 16px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  position: sticky;
  bottom: 24px;
  font-size: 14px;
}

.content {
  flex: 1;
  padding: 32px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  background: var(--card);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(23, 25, 30, 0.08);
}

.section.slab {
  background: #ece7e1;
  box-shadow: none;
  border: 1px solid var(--border);
}

.section.dark {
  background: var(--accent);
  color: #fff;
}

.section.dark a {
  color: #fff;
  text-decoration: underline;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1;
  min-width: 240px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 38px;
  line-height: 1.2;
  margin: 14px 0;
}

.subtle {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--ink);
  font-weight: 600;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--highlight);
  border-color: var(--highlight);
}

.btn.soft {
  border-color: transparent;
  background: var(--accent-soft);
  color: var(--accent);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 18px;
  font-weight: 700;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pick button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form label {
  font-size: 14px;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
}

.form button {
  border: none;
  cursor: pointer;
}

.footer {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(23, 25, 30, 0.12);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.cookie-actions .accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.highlight-block {
  display: flex;
  gap: 16px;
  align-items: center;
}

.highlight-block span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .sticky-cta {
    position: static;
    width: 100%;
  }

  .content {
    padding: 24px;
  }
}
