@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --ink: #111214;
  --muted: #5a6067;
  --accent: #2f5d7c;
  --accent-strong: #0f3c59;
  --sand: #f5f1ec;
  --mist: #eef2f4;
  --highlight: #f2e8da;
  --line: #d6d9dd;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
}

.sidebar {
  width: 280px;
  padding: 28px 24px;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--line);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.sidebar-cta {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.sidebar-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.content {
  flex: 1;
  padding: 0 6vw 80px;
  display: flex;
  flex-direction: column;
}

header.hero {
  margin-top: 48px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-soft {
  background: var(--highlight);
  color: var(--accent-strong);
}

.hero-image {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(17, 18, 20, 0.12);
}

.section {
  margin-top: 56px;
  padding: 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.6vw, 36px);
}

.section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.metric {
  flex: 1 1 160px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
}

.metric strong {
  font-size: 22px;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.card h3 {
  margin: 0;
  font-size: 20px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-strong);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split .text {
  flex: 1 1 300px;
}

.split .visual {
  flex: 1 1 280px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step {
  background: var(--accent-strong);
  color: var(--white);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
}

.form-shell label {
  font-weight: 600;
  font-size: 14px;
}

.form-shell input,
.form-shell select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 16px;
}

.form-helper {
  font-size: 13px;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  margin-top: 56px;
  padding: 24px 0 8px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-strong);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(15, 60, 89, 0.25);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(17, 18, 20, 0.12);
  max-width: 320px;
  display: none;
  z-index: 60;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  margin-top: 48px;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3vw, 42px);
}

.mini-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: var(--highlight);
  border-radius: 22px;
}

.mini-hero img {
  width: 220px;
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
}

.policy-section {
  margin-top: 28px;
  padding: 20px;
  border-radius: 16px;
  background: var(--mist);
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
  }

  header.hero {
    flex-direction: column;
  }

  .mini-hero {
    flex-direction: column;
    align-items: flex-start;
  }
}
