* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2430;
  --muted: #5b6475;
  --surface: #f6f2ee;
  --surface-2: #eef1f5;
  --surface-3: #f3f7f1;
  --accent: #2467d5;
  --accent-2: #1a3f7c;
  --border: #d9dde6;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 20px 6vw;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 60px 6vw;
}

.section.tight {
  padding: 40px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel h1,
.panel h2,
.panel h3 {
  line-height: 1.2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  background: var(--surface);
}

.hero-image {
  background-color: #c7d3ea;
  border-radius: 22px;
  overflow: hidden;
  min-height: 340px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border: 1px solid transparent;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--accent);
  color: #ffffff;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  min-width: 220px;
}

.card-image {
  background-color: #d7dfe8;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-2);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  width: fit-content;
}

.bg-insight {
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.bg-insight::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 280px;
  height: 280px;
  background: rgba(36, 103, 213, 0.08);
  border-radius: 50%;
}

.bg-contrast {
  background: var(--surface-3);
}

.bg-vision {
  background-color: #dfe6f2;
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-cta {
  background: #1d2433;
  color: #ffffff;
}

.bg-cta a {
  color: #ffffff;
  text-decoration: underline;
}

.image-panel {
  background-color: #cfd7df;
  border-radius: 18px;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.site-footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 720px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(18, 27, 44, 0.12);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 15;
}

.sticky-cta .btn {
  background: var(--accent-2);
}

.contact-block {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
}

.muted {
  color: var(--muted);
}

@media (max-width: 860px) {
  .sticky-cta {
    display: none;
  }

  .ad-label {
    max-width: 100%;
  }
}
