* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1d1f;
  --muted: #5c6167;
  --accent: #2158ff;
  --accent-dark: #0f2f9e;
  --sand: #f6f1ea;
  --sky: #eef4ff;
  --leaf: #e6f4ee;
  --plum: #f4eefb;
  --graphite: #13151b;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background: var(--graphite);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px;
  gap: 24px;
}

.sidebar .brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.sidebar nav a {
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.sidebar nav a:hover {
  opacity: 1;
}

.sidebar .cta-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--graphite);
  font-weight: 600;
  font-size: 14px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 36px 6vw 80px;
  position: relative;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split {
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section .tag {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: var(--muted);
}

.section h1,
.section h2 {
  line-height: 1.2;
}

.section h1 {
  font-size: 38px;
}

.section h2 {
  font-size: 28px;
}

.section p {
  color: var(--muted);
  max-width: 720px;
}

.panel {
  padding: 28px;
  border-radius: 22px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.dark {
  background: var(--graphite);
  color: #ffffff;
}

.panel.dark p {
  color: #c7c9d1;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list span {
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  border: 1px solid #ffffff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-stack .small {
  width: 70%;
  align-self: flex-end;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 160px;
  padding: 16px;
  border-radius: 16px;
  background: var(--sky);
}

.metric strong {
  font-size: 22px;
  display: block;
}

.form-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6dae1;
  font-size: 14px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row .field {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlight {
  background: var(--leaf);
  padding: 22px;
  border-radius: 18px;
}

.highlight.plum {
  background: var(--plum);
}

.testimonial {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #eef0f5;
}

.section-bg {
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
  color: #ffffff;
  padding: 32px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 25, 0.6);
}

.section-bg > * {
  position: relative;
  z-index: 1;
}

.sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  display: none;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links a {
  color: var(--muted);
}

.legal {
  font-size: 13px;
  color: var(--muted);
}

.spacer {
  height: 10px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
