:root {
  color-scheme: light;
  --ink: #1d1f23;
  --muted: #5a6472;
  --accent: #2f5d8f;
  --accent-2: #7b4b94;
  --bg: #f6f4f1;
  --bg-2: #eef2f7;
  --bg-3: #f2eee9;
  --line: #d9dfe7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a.inline-link {
  border-bottom: 1px solid currentColor;
}

header {
  padding: 20px 6vw;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-weight: 700;
  font-size: 1.2rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

main {
  padding: 30px 6vw 80px;
}

section {
  margin: 50px 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
}

.split .media {
  flex: 1;
  background: var(--bg-2);
  border-radius: 18px;
  padding: 14px;
}

.media img {
  width: 100%;
  height: 360px;
  border-radius: 14px;
}

.hero {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--line);
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 12px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.ghost {
  background: #fff;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
}

.layered {
  background: var(--bg-3);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background: #e8eef5;
}

.card img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 30px 6vw;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.notice {
  background: #fff7ed;
  border: 1px solid #f0d9b5;
  border-radius: 14px;
  padding: 16px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  header {
    padding: 16px 5vw;
  }

  main {
    padding: 24px 5vw 80px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
