* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5a6067;
  --accent: #c64f2b;
  --accent-dark: #9e3f22;
  --mist: #f5f1ed;
  --sand: #efe6de;
  --night: #101316;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--night);
  color: #f7f4f0;
  padding: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  color: #f7f4f0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(247, 244, 240, 0.12);
}

.nav a:hover {
  color: #ffd7c7;
}

.sidebar-note {
  margin-top: 32px;
  font-size: 0.85rem;
  color: rgba(247, 244, 240, 0.7);
}

.content {
  flex: 1;
  padding: 32px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section h1,
.section h2,
.section h3 {
  line-height: 1.2;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--mist);
  padding: 28px;
  border-radius: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.cta:hover {
  background: var(--accent-dark);
}

.cta.alt {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-card {
  background: var(--sand);
  padding: 22px;
  border-radius: 20px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step span {
  font-weight: 700;
  color: var(--accent);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--night);
  color: #f7f4f0;
  padding: 22px;
  border-radius: 22px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  flex: 1 1 160px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.pricing-item strong {
  font-size: 1.1rem;
}

.pricing-item span {
  color: var(--accent);
  font-weight: 600;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?q=80&w=1200&auto=format&fit=crop") center/cover no-repeat;
  color: #fff;
  padding: 26px;
  border-radius: 24px;
}

.process p {
  max-width: 460px;
}

.form-block {
  background: var(--mist);
  padding: 26px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d2cd;
  font-size: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.footer {
  background: #f7f4f0;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e7e0da;
  color: var(--ink);
}

@media (min-width: 900px) {
  .site {
    flex-direction: row;
  }

  .sidebar {
    width: 240px;
    min-height: 100vh;
    position: relative;
  }

  .content {
    padding: 42px 48px 90px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-step {
    flex: 1 1 200px;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-item {
    flex: 1 1 220px;
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-grid input,
  .form-grid select {
    flex: 1 1 220px;
  }
}
