* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1c;
  --muted: #5e616b;
  --accent: #2446ff;
  --accent-soft: #e7ebff;
  --sand: #f7f4f0;
  --stone: #ece7e1;
  --shadow: 0 18px 45px rgba(14, 18, 28, 0.12);
  --radius: 18px;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

header {
  padding: 32px 0 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #2f2f2f;
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  padding: 32px;
  background: var(--sand);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1;
  background-color: #dfe6ee;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  margin-top: 72px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.asym-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  min-width: 260px;
  background: var(--stone);
  padding: 24px;
  border-radius: var(--radius);
}

.panel.light {
  background: #ffffff;
  border: 1px solid #e6e3df;
}

.offset-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-top: -28px;
  margin-left: 28px;
}

.media {
  background-color: #d9d7d2;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.story-block {
  background: #111827;
  color: #ffffff;
  padding: 36px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.story-block::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  right: -40px;
  top: -60px;
}

.bg-storyline {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d8dadf;
  color: #ffffff;
}

.bg-storyline .panel {
  background: rgba(17, 24, 39, 0.75);
  color: #ffffff;
}

.form-wrap {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d4ce;
  font-size: 1rem;
  background: #ffffff;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 50;
}

.footer {
  margin-top: 80px;
  padding: 36px 0 18px;
  border-top: 1px solid #e1ddd7;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f5f3ef;
  border-top: 1px solid #e4dfd9;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hide {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .offset-card {
    margin-left: 0;
    margin-top: 18px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
