* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0e1a22;
  --muted: #5b6b78;
  --accent: #c1364e;
  --accent-dark: #8f283c;
  --sand: #f7f2ee;
  --slate: #1b2d3b;
  --mist: #eef2f5;
  --sun: #f5d7b8;
  --line: #d9e0e6;
  --shadow: 0 18px 45px rgba(14, 26, 34, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 32px 0 80px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.stack {
  flex-direction: column;
}

.panel {
  flex: 1;
  min-width: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.hero {
  background: linear-gradient(100deg, rgba(14, 26, 34, 0.92), rgba(14, 26, 34, 0.45)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 72px 0;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  margin: 0 0 18px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 0;
}

.section-muted {
  background: var(--mist);
}

.section-dark {
  background: var(--slate);
  color: #ffffff;
}

.bg-process {
  background-image: linear-gradient(120deg, rgba(245, 215, 184, 0.85), rgba(245, 215, 184, 0.55)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-image: linear-gradient(120deg, rgba(14, 26, 34, 0.9), rgba(14, 26, 34, 0.55)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-insight .eyebrow {
  color: #f5d7b8;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.section-dark .eyebrow {
  color: #f1c7d0;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  background: var(--sand);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

form select,
form input,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 60px;
  color: var(--muted);
}

.footer .split {
  align-items: flex-start;
}

.footer small {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.image-shell {
  background: #dfe5eb;
  border-radius: 16px;
  padding: 8px;
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sun);
  font-size: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 80;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .button {
  padding: 8px 14px;
  font-size: 12px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.plain {
  color: inherit;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
  }
}
