* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1d23;
  --muted: #5b6472;
  --accent: #0c6dd6;
  --accent-2: #f2a43b;
  --paper: #f7f4ef;
  --soft: #eef2f7;
  --deep: #10151c;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
}

.sidebar {
  width: 240px;
  background: var(--deep);
  color: #ffffff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  color: #ffffff;
  font-size: 15px;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.button {
  background: var(--accent);
  color: #ffffff;
  border: none;
}

.button-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.content {
  flex: 1;
  padding: 32px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  background: var(--paper);
  border-radius: 24px;
  padding: 40px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 36px;
  line-height: 1.2;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-figure {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(12, 13, 17, 0.08);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split > div {
  flex: 1 1 260px;
}

.highlight {
  background: var(--soft);
  padding: 26px;
  border-radius: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(12, 13, 17, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-price {
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 24px rgba(12, 13, 17, 0.08);
}

.form-wrapper form {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cdd5e0;
  font-size: 14px;
}

.submit {
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-2);
  color: #1a1d23;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(12, 13, 17, 0.15);
  z-index: 5;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid #e2e8f0;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(12, 13, 17, 0.12);
  z-index: 4;
}

.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #cdd5e0;
  background: #ffffff;
}

.cookie-actions .accept {
  background: var(--deep);
  color: #ffffff;
  border-color: var(--deep);
}

.mobile-toggle {
  display: none;
  border: 1px solid #ffffff;
  border-radius: 8px;
  padding: 8px 10px;
  color: #ffffff;
  font-size: 12px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }

  .nav {
    display: none;
  }

  .sidebar.open .nav {
    display: flex;
  }

  .mobile-toggle {
    display: inline-flex;
    align-self: flex-start;
  }

  .content {
    padding: 24px;
  }
}
