*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #12161f;
  --muted: #586174;
  --accent: #2b59ff;
  --accent-dark: #1b3ecc;
  --sand: #f6f1ea;
  --mist: #eef1f7;
  --forest: #0f2e2a;
  --warm: #ffb84d;
  --paper: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--forest);
  color: #f9fafc;
  padding: 28px 22px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 0.85rem;
  color: #c9d3d0;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-note {
  font-size: 0.9rem;
  color: #c9d3d0;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 28px 90px;
  background: var(--paper);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  background: linear-gradient(120deg, rgba(43, 89, 255, 0.12), rgba(255, 184, 77, 0.2));
  border-radius: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.outline {
  border-color: var(--ink);
  color: var(--ink);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.split .split-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--mist);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.highlight {
  background: var(--sand);
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #e0e6f0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-shell {
  background: var(--mist);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  border: 1px solid #c8d0e0;
  border-radius: 10px;
  padding: 12px;
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 14px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  background: var(--forest);
  color: #f0f3f2;
  border-radius: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--warm);
  color: #1a1a1a;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #0e1a24;
  color: #f0f4f8;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #0e1a24;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.cookie-button.secondary {
  background: transparent;
  color: #f0f4f8;
  border: 1px solid #f0f4f8;
}

@media (min-width: 900px) {
  .content {
    padding: 44px 60px 100px;
  }

  .section.split {
    flex-direction: row;
  }

  .section.split .split-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .metrics {
    flex-direction: row;
  }

  .steps {
    flex-direction: row;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    max-width: 520px;
  }
}
