:root {
  color-scheme: light;
  --ink: #1d1f23;
  --muted: #5a616b;
  --accent: #1f5b8f;
  --accent-soft: #e7f0f8;
  --surface: #f6f4f0;
  --surface-strong: #ffffff;
  --border: #d7dbe0;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: #111720;
  color: #f4f6f8;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  border-radius: 12px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  color: #f4f6f8;
  font-size: 0.95rem;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.95rem;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.content {
  flex: 1;
  padding: 40px 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  background: var(--surface-strong);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: #d9e4ee;
}

.media-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.media-frame {
  flex: 1 1 240px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d9e4ee;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1 1 260px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
}

.data-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.data-strip div {
  flex: 1 1 160px;
  background: #f1f5f9;
  border-radius: 14px;
  padding: 14px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f1f5f9;
  padding: 16px;
  border-radius: 16px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  flex: 1 1 220px;
}

input,
select,
textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
}

.inline-link {
  font-weight: 600;
}

.bg-insight {
  background-color: #f0f3f7;
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.bg-insight-1 {
  background-image: url("https://images.unsplash.com/photo-1487611459768-bd414656ea10?w=1400&q=80");
}

.footer {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #111720;
  color: #f4f6f8;
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.cookie-banner[data-state="hidden"] {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 8px 14px;
}

.section-title {
  font-size: 1.5rem;
  margin: 0;
}

.hero-title {
  font-size: 2.1rem;
  margin: 0;
}

.muted {
  color: var(--muted);
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    width: 100%;
  }

  .content {
    padding: 28px 22px 64px;
  }
}
