* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --text: #1f2328;
  --muted: #55606c;
  --bg: #f6f4f1;
  --surface: #ffffff;
  --accent: #1f4b6e;
  --accent-soft: #e3edf5;
  --line: #d7dde3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 72px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--surface);
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.panel h1,
.panel h2,
.panel h3 {
  margin: 0;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.panel .eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

.image-frame {
  background: #dbe3ea;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
}

.image-frame.small {
  min-height: 120px;
  max-height: 160px;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 16px;
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 16px;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.steps li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 48px;
  color: var(--muted);
}

.footer-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-columns .column {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1200;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.utility-image {
  max-width: 420px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
