* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --brand: #2f4f6c;
  --accent: #f2c94c;
  --surface: #f5f4f1;
  --surface-dark: #101417;
  --line: #d9d7d2;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

header {
  padding: 24px 6%;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 4px 10px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  font-size: 12px;
  color: var(--brand);
}

.hero {
  padding: 70px 6% 60px;
  color: #fff;
  background-color: #1b242b;
  background-image: linear-gradient(120deg, rgba(16, 20, 23, 0.86), rgba(16, 20, 23, 0.4)),
    url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.hero .split {
  align-items: flex-start;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #e7e7e7;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #1b1b1b;
}

.btn.secondary {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.section {
  padding: 0 6%;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
  margin-bottom: 14px;
}

.image-wrap {
  background-color: #e6e0d7;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  min-width: 260px;
}

.image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.content-box {
  flex: 1;
  min-width: 260px;
}

.bg-stage {
  padding: 60px 6%;
  background-color: #e9e6df;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.form-section {
  padding: 50px 6%;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.split-note {
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta span {
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

footer {
  padding: 40px 6%;
  background: var(--surface-dark);
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #f5f5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-disclaimer {
  font-size: 13px;
  color: #d6d6d6;
}

.cta-block {
  margin-top: 24px;
}

.page-hero {
  padding: 50px 6%;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: 34px;
}

.content-narrow {
  padding: 40px 6%;
  max-width: 960px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-box {
  flex: 1;
  min-width: 240px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }
}
