* {
  box-sizing: border-box;
}

:root {
  --ink: #1e252b;
  --muted: #5f6b75;
  --paper: #f7f4ef;
  --sand: #efe6da;
  --sage: #e3ece6;
  --clay: #d7c8b1;
  --accent: #2e6f7e;
  --accent-strong: #1d4c57;
}

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-strong);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e7e0d6;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 60px 6vw;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 34, 38, 0.55);
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.button.secondary {
  background: #ffffff;
  color: var(--accent-strong);
  border: 1px solid var(--accent-strong);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: var(--sage);
}

.split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
}

.image-block {
  background: var(--clay);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #efe2d4;
}

.card-image {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #dfe7ea;
  display: flex;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing {
  font-weight: 700;
  color: var(--accent-strong);
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e9dfd1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6caba;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #1e252b;
  color: #e8edf0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer small {
  color: #c7d0d8;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #e7e0d6;
  padding: 12px 6vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: min(340px, 90%);
  background: #ffffff;
  border: 1px solid #d9d0c3;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

.legal-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e9dfd1;
}

.page-hero {
  padding: 40px 6vw 24px;
  background: var(--sand);
}

.highlight {
  background: var(--clay);
  padding: 2px 6px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
