* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #4a4a4a;
  --bg: #f6f4f2;
  --paper: #ffffff;
  --accent: #0f6c6c;
  --accent-dark: #0b4f4f;
  --sand: #efe6dd;
  --slate: #202a2a;
  --cream: #fff9f2;
  --rose: #efe3e1;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 24px 6vw 8px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  font-size: 28px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--sand);
  padding: 4px 10px;
  border-radius: 999px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

nav a {
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 6px;
}

nav a:focus,
nav a:hover {
  background: var(--rose);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 12px 6vw 64px;
}

.card-section {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 18px 60px rgba(16, 16, 16, 0.08);
}

.bg-flow {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d6cec6;
  color: #ffffff;
}

.bg-quiet {
  background-image: url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cbbfb3;
}

.bg-contrast {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #bfb3a8;
  color: #ffffff;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.card {
  background: var(--cream);
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card.dark {
  background: var(--slate);
  color: #f3f3f3;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
  background: #d8d0c7;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #d8d0c7;
}

.hero-media img {
  width: 100%;
  height: 320px;
}

.button {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split > div {
  flex: 1 1 280px;
}

.image-panel {
  border-radius: 20px;
  overflow: hidden;
  background: #d9d2ca;
}

.image-panel img {
  width: 100%;
  height: 260px;
}

.highlight {
  background: var(--sand);
  border-radius: 18px;
  padding: 18px;
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pricing-card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #ebe3da;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card h4 {
  font-size: 18px;
}

.price {
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4ccc2;
  font-size: 15px;
  background: #ffffff;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
}

.sticky-cta .button {
  box-shadow: 0 10px 30px rgba(12, 80, 80, 0.35);
}

footer {
  padding: 32px 6vw 48px;
  background: #111111;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer a {
  color: #f5f5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hidden {
  display: none;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.meta-item {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  flex: 1 1 200px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wide-card {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
}

.wide-card img {
  width: 220px;
  height: 160px;
  border-radius: 16px;
  background: #d2cbc2;
}

@media (max-width: 768px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .hero-media img {
    height: 240px;
  }
}
