* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1e24;
  --muted: #5b6472;
  --paper: #f6f3ee;
  --sand: #efe7dd;
  --accent: #3558ff;
  --accent-soft: #e1e8ff;
  --warm: #ffedd5;
  --stone: #f1f3f7;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  border-bottom: 1px solid #e6e6e6;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a,
.nav button {
  border: none;
  background: none;
  font-size: 14px;
  cursor: pointer;
}

.ad-label {
  padding: 4px 10px;
  background: var(--warm);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.hero,
.section,
.section-alt,
.section-soft {
  padding: 70px 6%;
}

.hero {
  background: var(--paper);
}

.section-alt {
  background: var(--stone);
}

.section-soft {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.button-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(53, 88, 255, 0.2);
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(27, 30, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.image-frame {
  background: #e9edf2;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame.warm {
  background: #f3e6dd;
}

.image-frame.cool {
  background: #e5edf6;
}

.stacked-media {
  margin-top: 18px;
}

.metrics {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.metric {
  flex: 1 1 160px;
}

.metric span {
  font-size: 28px;
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 700;
  color: var(--accent);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 30px rgba(27, 30, 36, 0.08);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
  font-size: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8dbe2;
  font-size: 14px;
}

.form-card button {
  align-self: flex-start;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(53, 88, 255, 0.3);
}

.sticky-cta:hover,
.sticky-cta:focus {
  transform: translateY(-2px);
}

.footer {
  padding: 40px 6%;
  background: #0f1216;
  color: #e8ecf3;
  margin-top: auto;
}

.footer a {
  color: #e8ecf3;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.footer small {
  color: #b5bdcc;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(27, 30, 36, 0.15);
  max-width: 360px;
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.cookie-actions button {
  flex: 1;
}

.legal {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-box {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e4e4e4;
}

.contact-box p {
  margin-bottom: 8px;
}

@media (max-width: 840px) {
  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
