* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c2530;
  --muted: #4b5b6c;
  --accent: #2c6bed;
  --accent-dark: #1b4db3;
  --warm: #f7efe2;
  --cool: #eef3fb;
  --edge: #d8e0ea;
  --shadow: 0 24px 60px rgba(22, 36, 56, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw;
  border-bottom: 1px solid var(--edge);
  background: #fff;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.logo img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 70px 6vw;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text,
.split .visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .visual {
  align-items: center;
  justify-content: center;
}

.split h1 {
  font-size: 2.6rem;
  line-height: 1.1;
}

.split h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.split h3 {
  font-size: 1.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  color: #fff;
}

.muted {
  color: var(--muted);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.card img {
  width: 56px;
  height: 56px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--warm);
  color: #7a4a10;
  font-size: 0.85rem;
  font-weight: 600;
}

.panel {
  background: var(--cool);
}

.panel.warm {
  background: var(--warm);
}

.layered {
  background-image: url("../assets/pattern.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 320px;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form label {
  font-weight: 600;
  font-size: 0.9rem;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--edge);
  font-size: 1rem;
  font-family: inherit;
}

form button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--edge);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--edge);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.hero-visual {
  background: #fff;
  padding: 16px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.divider {
  height: 1px;
  width: 100%;
  background: var(--edge);
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .two-col {
    flex-direction: row;
  }

  .nav-links {
    gap: 28px;
  }
}
