* {
  box-sizing: border-box;
}

:root {
  color: #0f172a;
  background-color: #f8fafc;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  line-height: 1.6;
  background-color: #f8fafc;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

.page {
  width: 100%;
  overflow: hidden;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.nav .ad-label {
  padding: 6px 10px;
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
}

.hero {
  padding: 40px 0 72px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.hero .headline {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero .lead {
  font-size: 1.1rem;
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  background: #1d4ed8;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.inline-link {
  color: #1d4ed8;
  text-decoration: underline;
}

.image-frame {
  background: #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #0f172a;
  color: #fff;
}

.section.soft {
  background: #eef2ff;
}

.section .eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #475569;
  margin-bottom: 10px;
}

.section.alt .eyebrow {
  color: #cbd5f5;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  color: #0f172a;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.card.dark {
  background: #1e293b;
  color: #fff;
}

.card .price {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 12px 0 0;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.testimonial {
  background: #fff;
  color: #0f172a;
  border-radius: 12px;
  padding: 18px;
}

.form-section {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid > * {
  flex: 1 1 240px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #cbd5f5;
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(15, 23, 42, 0.94);
  color: #fff;
  padding: 12px 0;
  z-index: 10;
}

.sticky-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 48px 0 36px;
  background: #0f172a;
  color: #fff;
}

.footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer .column {
  flex: 1 1 200px;
}

.legal {
  font-size: 0.85rem;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 18px 0;
  display: none;
  justify-content: center;
  z-index: 20;
}

.cookie-card {
  width: min(980px, 90vw);
  background: #fff;
  color: #0f172a;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-title {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  margin-bottom: 12px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice {
  background: #fef3c7;
  color: #92400e;
  padding: 12px 16px;
  border-radius: 10px;
}
