* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #10131a;
  --muted: #546070;
  --accent: #0e3f6f;
  --accent-soft: #d9e7f5;
  --sand: #f5f1eb;
  --steel: #e7edf3;
  --highlight: #f3c969;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  padding: 24px 5vw 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--highlight);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #3b2a00;
}

.hero {
  padding: 40px 5vw 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  position: relative;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-visual {
  flex: 1 1 340px;
  position: relative;
  padding: 12px;
  background: var(--steel);
  border-radius: 18px;
  transform: translateY(20px);
}

.hero-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
}

.btn:hover,
.btn:focus {
  background: #0a2f55;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 60px 5vw;
  position: relative;
}

.section-title {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 680px;
}

.offset-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 28px;
}

.offset-card {
  flex: 1 1 260px;
  background: var(--sand);
  padding: 22px;
  border-radius: 14px;
}

.offset-card h3 {
  margin-bottom: 8px;
}

.image-slab {
  flex: 1 1 300px;
  background: #dde3ea;
  padding: 12px;
  border-radius: 18px;
  align-self: flex-start;
  transform: translateY(-24px);
}

.image-slab img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border: 1px solid #e1e5ea;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  background: #dfe7ef;
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}

.pricing-item {
  flex: 1 1 240px;
  background: var(--steel);
  padding: 20px;
  border-radius: 14px;
}

.pricing-item strong {
  font-size: 1.2rem;
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split-block.reverse {
  flex-direction: row-reverse;
}

.split-block .text {
  flex: 1 1 320px;
}

.split-block .media {
  flex: 1 1 300px;
  background: #e2e8f0;
  padding: 12px;
  border-radius: 16px;
}

.split-block .media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.form-panel {
  background: var(--accent-soft);
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd3dc;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
}

.footer {
  padding: 40px 5vw;
  background: #0e1117;
  color: #e9eef5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #cfe3ff;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
}

.disclaimer {
  font-size: 0.88rem;
  color: #cbd4df;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1a2230;
  color: #f3f6fa;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 10px 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 10;
}

.sticky-cta .btn {
  background: #111827;
}

.page-hero {
  padding: 40px 5vw 30px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}

.note-box {
  background: #f1f5f9;
  padding: 16px;
  border-radius: 12px;
}

.text-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.text-columns > div {
  flex: 1 1 260px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-tag svg {
  width: 28px;
  height: 28px;
}

.info-strip {
  background: var(--accent-soft);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.info-strip strong {
  font-weight: 600;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 16px;
    bottom: 80px;
  }

  .hero-visual {
    transform: none;
  }

  .image-slab {
    transform: none;
  }
}
