:root {
  --bg: #0f1115;
  --bg-soft: #161a22;
  --bg-light: #f5f6f8;
  --text: #12141b;
  --text-soft: #4a5160;
  --accent: #2f6bff;
  --accent-2: #ffb44b;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg-light);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e3e6ee;
}

.nav-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-soft);
}

.ad-label {
  font-size: 12px;
  color: #7b8190;
  max-width: 210px;
  text-align: right;
}

.hero {
  position: relative;
  background: var(--bg);
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.65;
}

.hero-content {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 24px 90px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
  max-width: 620px;
}

.hero p {
  font-size: 18px;
  max-width: 560px;
  margin: 0;
  color: #e5e8f0;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #ffffff;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 70px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #ffffff;
  border-radius: 36px;
  margin-top: -40px;
  padding-top: 90px;
}

.asym-row {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.asym-media {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #d7dbe5;
  padding: 8px;
}

.image-frame.bg-1 {
  background: #cfd7e7;
}

.image-frame.bg-2 {
  background: #e9d7c4;
}

.image-frame.bg-3 {
  background: #d9e6d8;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.offset-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
  position: relative;
  top: -30px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0f3ff;
  color: #3045a8;
  font-size: 12px;
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--text-soft);
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #111827;
}

.section-dark {
  background: var(--bg-soft);
  color: #f2f4f8;
  border-radius: 36px;
  margin: 0 24px;
  padding: 70px 24px;
}

.section-dark .section {
  padding: 0;
}

.two-column {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 280px;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text);
}

.form-card label {
  font-size: 13px;
  color: var(--text-soft);
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5d9e2;
  font-size: 14px;
}

.form-note {
  font-size: 12px;
  color: var(--text-soft);
}

.footer {
  background: #0f1115;
  color: #d7dbe4;
  padding: 50px 24px;
}

.footer-wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  color: #aab1be;
  max-width: 760px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.18);
  z-index: 50;
}

.sticky-cta button {
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.18);
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: #e7e9ef;
  color: #1f2937;
}

.page-hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-hero h1 {
  font-size: 36px;
  margin: 0;
}

.page-hero .hero-media {
  display: flex;
  justify-content: flex-end;
}

.page-hero .hero-media .image-frame {
  max-width: 420px;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 24px 70px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-soft);
}

.note-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

@media (max-width: 900px) {
  .hero-content {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
