@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #1c1f26;
  --muted: #5b6572;
  --accent: #2f5b7c;
  --accent-2: #e7b76a;
  --surface: #ffffff;
  --soft: #f3f1ed;
  --soft-2: #eef2f6;
  --border: #d9d7d2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  padding: 32px 28px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--border);
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  width: fit-content;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
}

.sidebar-cta {
  margin-top: auto;
  padding: 12px 16px;
  background: var(--accent);
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--soft-2);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1;
  background: #dfe5ea;
  border-radius: 16px;
  overflow: hidden;
}

.hero h1 {
  font-size: 36px;
  margin: 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 500;
  border: none;
  cursor: pointer;
  width: fit-content;
}

.button.secondary {
  background: var(--accent-2);
  color: #2b1e08;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background: #dfe4ea;
  border-radius: 12px;
  overflow: hidden;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1;
  background: #e1e6ec;
  border-radius: 16px;
  overflow: hidden;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #ffffff;
}

.price-item span {
  color: var(--muted);
}

.form-wrap {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background: #ffffff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 500;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 32px 64px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  background: var(--accent-2);
  color: #2b1e08;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.section-title {
  font-size: 24px;
  margin: 0;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.meta-card {
  flex: 1 1 200px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--border);
}

.highlight {
  font-weight: 600;
  color: var(--accent);
}

.divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

.text-block {
  max-width: 760px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .hero,
  .split {
    flex-direction: column;
  }

  .section {
    padding: 40px 28px;
  }

  .footer {
    padding: 28px;
  }
}
