:root {
  color-scheme: light;
  --ink: #1a1c20;
  --muted: #5a606c;
  --accent: #2d6cdf;
  --accent-dark: #1e4aa4;
  --soft: #f2f4f7;
  --warm: #fff2e7;
  --line: #d7dbe2;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(25, 30, 40, 0.08);
  --radius: 18px;
  --sidebar: #f7f8fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: var(--sidebar);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.sidebar-cta {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

main {
  flex: 1;
}

.section {
  padding: 64px 7vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.compact {
  padding: 40px 7vw;
}

.section.hero {
  background: linear-gradient(120deg, rgba(45, 108, 223, 0.08), rgba(255, 242, 231, 0.6)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  min-height: 70vh;
  justify-content: center;
  color: #111;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  max-width: 620px;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 280px;
}

.story {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.tag {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-card {
  flex: 1 1 200px;
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
}

.cta-band {
  background: #111827;
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.form-block {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.field-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.field-row > div {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 7vw;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.badge {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--muted);
}

.simple-hero {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 32px;
}

.policy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .hero-actions,
  .field-row,
  .cards,
  .pricing-grid,
  .trust-row {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
