* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --snow: #f6f7fb;
  --ink: #1a1e24;
  --muted: #5a6472;
  --accent: #1f6feb;
  --accent-soft: #e6f0ff;
  --pine: #0f3b2e;
  --sunset: #f7c07a;
  --card: #ffffff;
  --shadow: 0 20px 40px rgba(18, 25, 38, 0.12);
  --radius: 18px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--snow);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #0f141d;
  color: #f1f4f8;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #96a0af;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 1px;
}

.nav-toggle {
  display: none;
  border: 1px solid #2b3442;
  background: transparent;
  color: #f1f4f8;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.nav-list a {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-list a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.sidebar-cta {
  margin-top: auto;
  background: var(--accent);
  color: white;
  padding: 16px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
}

.sidebar-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.section {
  background: var(--card);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: #eef2f8;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(135deg, #eaf0fb, #fef6e8);
}

.hero .hero-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.button:hover {
  transform: translateY(-2px);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split > div {
  flex: 1 1 240px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #111827;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: white;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e3e7ee;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: var(--pine);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.quote {
  background: #111827;
  color: white;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote span {
  color: #a7b0bf;
  font-size: 13px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d3d9e3;
  font-size: 15px;
  background: white;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background: #ffe6c7;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #111827;
  color: white;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: white;
}

.cookie-actions .reject {
  background: #374151;
  color: white;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-list {
    width: 100%;
    display: none;
  }

  .nav-list.open {
    display: flex;
  }

  .sidebar-cta {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .content {
    padding: 28px 6vw 60px;
  }

  .section {
    padding: 26px;
  }
}
