* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1c;
  --muted: #5f646b;
  --light: #f4f5f6;
  --accent: #2155e5;
  --accent-dark: #1737a0;
  --warm: #f6f1ea;
  --line: #e0e3e7;
}

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;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  background-color: #dfe6ee;
  background-image: url("https://images.unsplash.com/photo-1493238792000-8113da705763?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 120px 6vw 90px;
  max-width: 720px;
  background: rgba(18, 24, 32, 0.55);
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.section {
  padding: 70px 6vw;
}

.section-alt {
  background: var(--light);
}

.section-warm {
  background: var(--warm);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split > div {
  flex: 1 1 320px;
}

.img-wrap {
  background: #d7dbe2;
  border-radius: 18px;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
}

.quote {
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--line);
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-details {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.form-details.is-visible {
  display: flex;
}

.form-status {
  font-size: 0.95rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 18px;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.centered {
  text-align: center;
}

.legal {
  max-width: 860px;
}

.legal h1,
.legal h2 {
  margin-bottom: 12px;
}

.legal p {
  margin-bottom: 14px;
}
