* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5b5b66;
  --accent: #2b5cff;
  --accent-soft: #eef1ff;
  --surface: #f6f4f1;
  --surface-dark: #1f1f26;
  --border: #d7d6da;
  --highlight: #ffd279;
  font-size: 16px;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 260px;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  background: #fafafa;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14rem;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.sidebar-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 4rem 5vw;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.section.alt {
  background: var(--surface);
}

.section.dark {
  background: var(--surface-dark);
  color: #ffffff;
}

.section.tight {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.section .media {
  flex: 1 1 260px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.headline {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  background: var(--accent);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.light {
  background: #ffffff;
  color: var(--ink);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.split-panel {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.split-panel > div {
  flex: 1 1 220px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #ffffff;
}

.card-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  padding: 1.6rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card.highlight {
  background: var(--accent-soft);
  border-color: #cdd4ff;
}

.pricing {
  font-weight: 700;
  font-size: 1.3rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-index {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: #ffffff;
  width: min(520px, 100%);
}

.form-wrapper label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  font: inherit;
}

.footer {
  padding: 2rem 5vw;
  background: #111218;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer a {
  color: #ffffff;
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.75rem 1.2rem;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(43, 92, 255, 0.3);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  max-width: 320px;
  display: none;
  z-index: 6;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.notice {
  padding: 1.3rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0.8rem;
}

.content-column {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 720px;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meta-block {
  flex: 1 1 200px;
  padding: 1.4rem;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 1rem;
    bottom: 5.5rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3rem 7vw;
  }

  .sidebar {
    gap: 1rem;
  }
}
