* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #55626f;
  --accent: #f4b73f;
  --accent-dark: #c58a10;
  --sky: #e9f0f6;
  --slate: #1f2933;
  --sand: #f7f3ea;
  --border: #d4dde4;
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background-color: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #d6dee7;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 28px 0 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.94rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.nav-links a:hover {
  background-color: var(--sky);
}

.ad-label {
  font-size: 0.86rem;
  padding: 6px 12px;
  background: var(--sand);
  border-radius: 999px;
  border: 1px solid var(--border);
}

.hero {
  display: flex;
  gap: 36px;
  align-items: stretch;
  margin-top: 30px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 10px 26px 0;
}

.hero-title {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--slate);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 24, 32, 0.15);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--border);
}

.hero-visual {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #c9d5e1;
  min-height: 360px;
  display: flex;
}

.section {
  display: flex;
  gap: 36px;
  padding: 50px 0;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.narrow {
  align-items: flex-start;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 14px;
}

.section-copy {
  color: var(--muted);
  margin: 0 0 16px;
}

.section-media {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #d5dfe8;
}

.section-body {
  flex: 1;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  background-color: #cfd8e3;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
}

.callout {
  background: var(--slate);
  color: #ffffff;
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.callout a {
  color: #ffffff;
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1;
  background: var(--sky);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(16, 24, 32, 0.2);
  transition: transform 0.2s ease;
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  width: min(340px, 90vw);
  box-shadow: 0 12px 24px rgba(16, 24, 32, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.legal-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 30px 0;
}

.legal-hero img {
  border-radius: var(--radius);
  background-color: #d6dde6;
}

.simple-section {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero,
  .section,
  .form-wrap,
  .legal-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }

  .cookie-banner {
    left: 16px;
    bottom: 16px;
  }
}
