* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #101418;
  --muted: #5b6673;
  --accent: #1d4ed8;
  --accent-2: #0f766e;
  --paper: #f5f6f7;
  --sand: #ece8e1;
  --night: #0f172a;
  --gold: #f5b942;
  --radius: 18px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 1.5rem 6vw 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid #d9dde3;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 0.2rem 0.1rem;
}

.nav a:hover,
.nav a:focus {
  color: var(--accent);
}

.hero {
  padding: 2rem 6vw 3.5rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-title {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1.1;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn {
  border: none;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn.secondary {
  background: var(--accent-2);
}

.btn.outline {
  background: transparent;
  border: 1px solid #c3c9d2;
  color: var(--ink);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.hero-image {
  flex: 1 1 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d9e2ea;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split .panel h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.split .panel p {
  color: var(--muted);
}

.panel-image {
  flex: 1 1 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #cfd8e3;
}

.section-contrast {
  background: var(--paper);
}

.section-dark {
  background: var(--night);
  color: #f8fafc;
}

.section-dark p {
  color: #e2e8f0;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card img {
  border-radius: 14px;
  height: 160px;
  background: #e5ecf3;
}

.card strong {
  font-size: 1.05rem;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-2);
}

.split .list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 1.5rem;
  margin: 0 6vw 2.5rem;
  padding: 1rem 1.4rem;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.form-section {
  padding: 3rem 6vw 4rem;
  background: var(--sand);
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}

.form-box {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.form-box label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-box input,
.form-box select {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #cdd5df;
  font-size: 0.95rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-visual {
  flex: 1 1 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e7d9cf;
}

.footer {
  margin-top: auto;
  padding: 3rem 6vw;
  background: #0b1120;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.footer .disclaimer {
  font-size: 0.85rem;
  color: #cbd5f5;
  max-width: 780px;
}

.footer small {
  color: #94a3b8;
}

.legal-wrap {
  padding: 3rem 6vw 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.legal-wrap h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.legal-wrap p {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner p {
  flex: 1 1 260px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.image-banner {
  border-radius: var(--radius);
  overflow: hidden;
  background: #dce5ef;
}

@media (max-width: 800px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 1rem;
  }
}
