* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5a5d66;
  --accent: #1d5b8f;
  --accent-soft: #e7f0f8;
  --warm: #f7efe7;
  --sun: #f9d889;
  --forest: #1e4032;
  --paper: #faf9f6;
  --border: #e2e0da;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar-nav {
  width: 240px;
  padding: 28px 20px;
  background: #f2f2ed;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  color: var(--ink);
  font-weight: 600;
}

.nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.btn.outline {
  background: transparent;
  color: var(--ink);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 42px;
  background: var(--warm);
}

.hero .hero-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: 2.4rem;
  margin: 0;
}

.hero-media {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-media img {
  flex: 1;
  min-width: 220px;
  height: 220px;
  object-fit: cover;
}

.section {
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section h2 {
  margin: 0;
  font-size: 1.8rem;
}

.tagline {
  font-weight: 600;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1;
  min-width: 220px;
  padding: 18px;
  border-radius: 20px;
  background: var(--accent-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: var(--sun);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  font-weight: 700;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  margin: 20px 42px 0;
  font-size: 0.9rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  background: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

button.btn {
  border: none;
  cursor: pointer;
}

.form-hint {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 30px 42px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 220px;
}

.text-stack {
  flex: 1.2;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-grid span {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar-nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-cta {
    margin-top: 0;
    flex-direction: row;
  }

  .sticky-cta {
    position: static;
    margin: 0 42px;
  }
}

@media (max-width: 720px) {
  .hero,
  .section,
  .footer {
    padding: 28px 20px;
  }

  .hero-media img {
    height: 180px;
  }
}
