* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --surface: #f8fafc;
  --surface-2: #e2e8f0;
  --accent: #2563eb;
  --accent-2: #f97316;
  --text: #0f172a;
  --text-soft: #475569;
  --light: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--surface-2);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--text-soft);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  padding: 6px 10px;
  border-radius: 999px;
}

nav a:hover,
nav a:focus {
  background: var(--surface-2);
}

.hero {
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.2)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80") center/cover no-repeat;
  color: var(--light);
  padding: 80px 0;
}

.hero .split {
  align-items: center;
}

.hero h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  max-width: 480px;
  color: rgba(248, 250, 252, 0.9);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.mt-24 {
  margin-top: 24px;
}

.footer-note {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: rgba(248, 250, 252, 0.15);
  border: 1px solid rgba(248, 250, 252, 0.4);
}

.btn.alt {
  background: var(--accent-2);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.split {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 0;
}

.section {
  padding: 70px 0;
}

.section.dark {
  background: var(--bg);
  color: var(--light);
}

.section.dark p {
  color: rgba(248, 250, 252, 0.8);
}

.section.soft {
  background: var(--surface-2);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.card img {
  height: 180px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.img-frame {
  background-color: #cbd5f5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.img-frame img {
  height: 100%;
}

.highlight {
  padding: 20px 24px;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  color: var(--text);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.form-wrap {
  background: var(--light);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  font-family: inherit;
}

.form-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-col {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: var(--accent-2);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.sticky-cta:hover,
.sticky-cta:focus {
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light);
  border-radius: 16px;
  padding: 18px 22px;
  display: none;
  gap: 16px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  max-width: 760px;
  width: calc(100% - 40px);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  background: var(--bg-soft);
  color: var(--light);
  padding: 40px 0;
  margin-top: auto;
}

.footer a {
  color: var(--surface-2);
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 200px;
}

.muted {
  color: var(--text-soft);
}

.dark .muted {
  color: rgba(248, 250, 252, 0.6);
}

.bg-process {
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80") center/cover no-repeat;
}

.bg-process .section-title,
.bg-process p {
  color: var(--light);
}

.bg-process .highlight {
  background: rgba(248, 250, 252, 0.9);
}

.img-right {
  min-height: 320px;
}

.img-left {
  min-height: 320px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero {
    padding: 60px 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
