* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5b5f66;
  --soft: #f4f2ef;
  --accent: #2a4b8d;
  --accent-2: #d8755d;
  --surface: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  padding: 32px 26px;
  background: #f2efe9;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e2ded6;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  background: #e9e4da;
  padding: 8px 10px;
  border-radius: 12px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-list a {
  padding: 8px 10px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: var(--accent-2);
}

.main {
  flex: 1;
  padding: 40px 5vw 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 12px;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  opacity: 0.16;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: #ffffff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.panel-muted {
  background: #f5f3ee;
}

.image-frame {
  flex: 1;
  background-color: #e0ddd6;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
}

.card-image {
  background-color: #ded7cf;
  border-radius: 16px;
  overflow: hidden;
  height: 180px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-title {
  font-weight: 600;
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.timeline-step {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9e4da;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-box {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
  font-size: 14px;
}

.form-grid input,
.form-grid select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4cfc6;
  font-size: 15px;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  left: 300px;
  right: 24px;
  bottom: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 20;
}

.footer {
  background: #f1eee8;
  padding: 24px;
  border-radius: 24px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 18px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-hero {
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-body {
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid #e2ded6;
  }

  .sticky-cta {
    left: 16px;
  }

  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }
}
