* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f2a;
  --ink-soft: #3a4154;
  --paper: #f5f3ef;
  --paper-strong: #ece7df;
  --accent: #6f56f0;
  --accent-dark: #4331b7;
  --line: #d9d3c9;
  --sand: #f0ede7;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.img-cover {
  background-color: #d4dae2;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: right;
  max-width: 210px;
}

.hero {
  display: flex;
  gap: 28px;
  padding: 40px 0;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.hero-image {
  flex: 1 1 48%;
  background: #c9d2e4;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-soft);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 28px;
}

.lede {
  font-size: 18px;
  color: var(--ink-soft);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--ink);
  color: #fff;
}

.storyline {
  display: flex;
  gap: 22px;
  padding: 28px 0;
}

.storyline .column {
  flex: 1 1 50%;
}

.storyline .panel {
  background: var(--paper-strong);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strip {
  margin: 32px 0;
  padding: 32px;
  background: #1c2230;
  color: #fdfcfb;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.strip .backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  z-index: 0;
}

.strip .backdrop img {
  width: 100%;
  height: 100%;
}

.strip > * {
  position: relative;
  z-index: 1;
}

.strip a {
  color: #fff;
  text-decoration: underline;
}

.services-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split-feature {
  display: flex;
  gap: 26px;
  align-items: center;
  padding: 34px 0;
}

.split-feature.reverse {
  flex-direction: row-reverse;
}

.split-feature .visual {
  flex: 1 1 44%;
  border-radius: 22px;
  overflow: hidden;
  background: #cfd3da;
}

.split-feature .visual img {
  width: 100%;
  height: 280px;
}

.split-feature .content {
  flex: 1 1 56%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap {
  margin-top: 30px;
  background: var(--sand);
  padding: 28px;
  border-radius: 22px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.form-copy {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: var(--ink-soft);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.newsletter {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  align-items: center;
}

.newsletter img {
  width: 180px;
  height: 160px;
  border-radius: 16px;
  background: #cfd6de;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 13px;
}

.footer .col {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 12px;
  color: var(--ink-soft);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(27, 31, 42, 0.2);
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 8px 12px;
  font-size: 12px;
}

.section-block {
  margin: 38px 0;
}

.columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.columns .col {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.wide-card {
  display: flex;
  gap: 20px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  align-items: center;
}

.wide-card img {
  width: 220px;
  height: 160px;
  border-radius: 16px;
  background: #d3d9df;
}

.page-hero {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 30px 0 20px;
}

.page-hero img {
  width: 320px;
  height: 220px;
  border-radius: 22px;
  background: #ccd5e2;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-block {
  flex: 1 1 260px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.plain-section {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.table-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: none;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .hero,
  .storyline,
  .split-feature,
  .page-hero,
  .wide-card,
  .newsletter {
    flex-direction: column;
  }

  .hero-image,
  .page-hero img {
    height: 240px;
  }
}
