* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f1012;
  --text: #f5f5f5;
  --muted: #c8c8c8;
  --accent: #f4b400;
  --surface: #1b1d20;
  --surface-light: #26292e;
  --line: #2f3237;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #0c0d0f;
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #0f1114;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  flex-wrap: wrap;
}

.section {
  padding: 70px 0;
}

.section--alt {
  background: var(--surface);
}

.section--image {
  background-image: url("https://images.unsplash.com/photo-1760302318620-261f5e4d1940?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.section--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.8);
}

.section--image .container {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
}

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}

.hero-media {
  border-radius: 22px;
  overflow: hidden;
  background-color: #1a1c20;
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #111;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.inline-link {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #1a1c20;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--surface-light);
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  background-color: #1a1c20;
}

.highlight {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.pricing-item span {
  color: var(--muted);
}

.form-wrap {
  background: var(--surface-light);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  background: #121417;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px;
  border-radius: 10px;
}

.form-status {
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #111317;
  border: 1px solid var(--line);
  padding: 8px;
  border-radius: 999px;
  z-index: 100;
}

.sticky-cta .button {
  padding: 10px 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #111317;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  background: #0f1114;
  border-top: 1px solid var(--line);
  padding: 40px 0;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.legal-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.page-title {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 18px;
}

.simple-hero {
  padding: 60px 0 20px;
}

.simple-hero .lead {
  color: var(--muted);
  max-width: 700px;
}
