* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f7fb;
  --ink: #1a1d26;
  --muted: #5f677a;
  --accent: #2b6cb0;
  --accent-2: #1b4b7a;
  --soft: #e3e7f2;
  --surface: #ffffff;
  --highlight: #eff3ff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--surface);
  border-right: 1px solid var(--soft);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.86rem;
  color: var(--muted);
  background: var(--highlight);
  padding: 10px 12px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: var(--soft);
  color: var(--accent-2);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: var(--soft);
  color: var(--accent-2);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  padding: 60px 56px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 360px;
  justify-content: center;
}

.hero .button {
  align-self: flex-start;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2a3d;
  position: relative;
  color: #fff;
}

.bg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 32, 56, 0.72);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.section {
  padding: 42px 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-muted {
  background: var(--surface);
  border-top: 1px solid var(--soft);
  border-bottom: 1px solid var(--soft);
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 260px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--soft);
}

.card img {
  border-radius: 12px;
}

.image-frame {
  background: #d9e1f2;
  border-radius: 14px;
  overflow: hidden;
}

.min-h-240 {
  min-height: 240px;
}

.min-h-200 {
  min-height: 200px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 160px;
  background: var(--highlight);
  padding: 16px;
  border-radius: 12px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-end;
  margin-right: 32px;
}

.form-wrap {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--soft);
  font-size: 0.98rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--soft);
}

.footer {
  padding: 32px 56px;
  background: #101626;
  color: #d9e1f2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #cdd8f5;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--soft);
  border-radius: 14px;
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.media-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.media-row img {
  border-radius: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--highlight);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--accent-2);
}

.banner-image {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1a2436;
  color: #fff;
  position: relative;
}

.banner-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 52, 0.72);
}

.banner-image .hero-content {
  position: relative;
  z-index: 1;
}
