* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1f24;
  --muted: #556070;
  --accent: #2f6bff;
  --accent-dark: #244fd0;
  --soft: #f2f4f7;
  --warm: #f7f1eb;
  --line: #dfe4ea;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--soft);
  color: var(--muted);
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 64px 0 72px;
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-color: #1b222b;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 18, 24, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: #ffffff;
  color: var(--accent);
}

.button.ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-color: #2a2a2e;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 28, 0.68);
}

.section-bg .container {
  position: relative;
  z-index: 1;
}

.asymmetric {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.asymmetric .panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 40px rgba(18, 22, 28, 0.12);
}

.asymmetric .panel.offset {
  transform: translateY(24px);
}

.image-frame {
  background: #dfe7f3;
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.bg-soft-blue {
  background: #dfe7f3;
}

.bg-cool-gray {
  background: #eef2f6;
}

.bg-warm-sand {
  background: #ebe7e3;
}

.bg-pale-sky {
  background: #e8edf3;
}

.bg-light-ice {
  background: #e6eef8;
}

.inline-media {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.inline-media .text {
  flex: 1 1 260px;
}

.inline-media .media {
  flex: 1 1 260px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.split-row .column {
  flex: 1 1 320px;
}

.form-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 18px 36px rgba(18, 22, 28, 0.12);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field input,
.form-field select {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 12px 20px rgba(18, 22, 28, 0.18);
  z-index: 10;
}

.sticky-cta a {
  color: var(--accent);
  font-weight: 600;
}

footer {
  margin-top: auto;
  padding: 36px 0 48px;
  background: #0f1318;
  color: #c9d2dc;
}

footer a {
  color: #c9d2dc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid .col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 14px 24px rgba(18, 22, 28, 0.16);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

.page-hero {
  padding: 48px 0;
  background: var(--soft);
}

.page-hero.alt {
  background: var(--warm);
}

.accent-bg {
  background-image: url("https://images.unsplash.com/photo-1472220625704-91e1462799b2?w=1400&q=80");
  background-color: #23262b;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.accent-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 24, 30, 0.7);
}

.accent-bg .container {
  position: relative;
  z-index: 1;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    border-radius: 12px;
    text-align: center;
  }
}
