* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1c1b;
  --muted: #5c5a57;
  --accent: #1a5d6a;
  --accent-soft: #e6f2f4;
  --sun: #f7c948;
  --cloud: #f6f5f3;
  --mist: #eef0ef;
  --line: #dedad4;
  --shadow: 0 18px 35px rgba(16, 24, 40, 0.12);
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.site {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
}

.sidebar {
  width: 240px;
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  background: var(--cloud);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.brand strong {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

.sidebar .side-cta {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 56px 64px;
  align-items: center;
  background: linear-gradient(120deg, #ffffff 0%, var(--mist) 100%);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 52px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: var(--cloud);
}

.section.highlight {
  background: var(--accent-soft);
}

.section.split {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--muted);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sun);
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.pricing-row span {
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.footer {
  padding: 32px 64px;
  border-top: 1px solid var(--line);
  background: var(--cloud);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.page-hero {
  padding: 48px 64px;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-column {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1;
  min-width: 240px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .nav {
    display: none;
    background: #ffffff;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero,
  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .hero,
  .section,
  .page-hero,
  .footer {
    padding: 36px 24px;
  }
}
