:root {
  color-scheme: light;
  --ink: #161616;
  --ink-soft: #3b3b3b;
  --muted: #7a7a7a;
  --sand: #f5f2ed;
  --pearl: #ffffff;
  --accent: #1d4ed8;
  --accent-2: #f97316;
  --accent-3: #0f766e;
  --line: #e7e0d8;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 32px 0 80px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pearl);
  border: 1px solid var(--line);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  padding: 40px;
  border-radius: calc(var(--radius) + 6px);
  background: var(--pearl);
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  color: var(--ink-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.2);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: none;
}

.btn.warm {
  background: var(--accent-2);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.section {
  margin: 64px 0;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--pearl);
  box-shadow: var(--shadow);
}

.section.alt {
  background: var(--sand);
  box-shadow: none;
  border: 1px solid var(--line);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent-3);
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--pearl);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 1.2rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.testimonial {
  background: #111827;
  color: #f9fafb;
  padding: 22px;
  border-radius: var(--radius);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.85rem;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: #0f172a;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form button {
  border: none;
  cursor: pointer;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-block {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

footer {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: min(360px, 92vw);
  background: #111827;
  color: #fff;
  padding: 18px;
  border-radius: var(--radius);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.image-layer {
  position: relative;
}

.image-layer .badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
}

.banner {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(29, 78, 216, 0.1), rgba(15, 118, 110, 0.12));
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner h2 {
  margin: 0;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  header {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
