:root {
  --ink: #0f172a;
  --muted: #475569;
  --accent: #1e40af;
  --accent-dark: #1e3a8a;
  --soft: #f1f5f9;
  --line: #e2e8f0;
  --paper: #ffffff;
  --panel: #f8fafc;
  --highlight: #e0f2fe;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--panel);
}

.hero {
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80") center/cover no-repeat;
  color: var(--paper);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
}

.hero .container {
  position: relative;
  padding: 80px 24px 72px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1;
  min-width: 0;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 24px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.hero-panel h2 {
  margin-top: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--paper);
  background: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn.outline {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--soft);
}

.section.highlight {
  background: var(--highlight);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.image-frame,
.card-image {
  background: #dbeafe;
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img,
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-frame {
  height: 320px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.trust-bg {
  background: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80") center/cover no-repeat;
  position: relative;
  color: var(--paper);
}

.trust-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
}

.trust-bg .container {
  position: relative;
}

.form-wrap {
  background: var(--panel);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--line);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
  z-index: 10;
}

.sticky-cta span {
  font-size: 14px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 64px;
  background: var(--paper);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.page-title {
  padding: 56px 0 24px;
}

.simple-section {
  padding: 24px 0 64px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero .container {
    padding: 64px 24px;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
  }
}
