@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f6f4f1;
  --ink: #1f1f1f;
  --muted: #5b5b5b;
  --accent: #2d4a8a;
  --accent-soft: #e6ecf7;
  --warm: #f1e9de;
  --cool: #e9f1ef;
  --card: #ffffff;
  --line: #dedad3;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--card);
  border-right: 1px solid var(--line);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta {
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 28px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 52px 80px 52px;
}

.section {
  background: var(--card);
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  background: var(--accent-soft);
}

.hero-content {
  flex: 1 1 320px;
}

.hero-image {
  flex: 1 1 360px;
  background: #cfd8ea;
  border-radius: 22px;
  overflow: hidden;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 280px;
}

.media-box {
  border-radius: 20px;
  overflow: hidden;
  background: #d7e4da;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 160px;
  padding: 18px;
  border-radius: 18px;
  background: var(--warm);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-media {
  border-radius: 16px;
  overflow: hidden;
  background: #e3e9f4;
}

.price {
  font-size: 20px;
  font-weight: 600;
}

.testimonial {
  background: var(--cool);
  border-radius: 18px;
  padding: 18px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f7f0e7;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
}

.cta-inline {
  font-weight: 600;
}

.footer {
  padding: 28px 32px 40px;
  background: #1f2430;
  color: #f3f4f6;
  border-radius: 28px;
}

.footer a {
  color: #f3f4f6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: #d7dbe4;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 300px;
  background: #111827;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 24px;
  font-weight: 600;
  z-index: 9;
}

.page-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  background: var(--accent-soft);
  padding: 10px 14px;
  border-radius: 14px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    width: 100%;
  }

  .main {
    padding: 24px;
  }

  .sticky-cta {
    left: 20px;
  }
}
