* {
  box-sizing: border-box;
}

:root {
  --bg: #0f141a;
  --panel: #151c24;
  --muted: #90a1b7;
  --text: #f4f6f8;
  --accent: #7fd3ff;
  --accent-dark: #4fb6e6;
  --soft: #1f2a36;
  --line: #2a3948;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  padding: 24px 6vw 12px 6vw;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.hero {
  padding: 40px 6vw 10px 6vw;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.copy h1,
.copy h2 {
  margin-top: 0;
}

.copy h1 {
  font-size: 36px;
  line-height: 1.2;
}

.copy h2 {
  font-size: 26px;
}

.copy p {
  color: var(--muted);
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0d11;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.media {
  position: relative;
  background: #1b232c;
  border-radius: 18px;
  overflow: hidden;
  flex: 1;
  min-height: 260px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 40px 6vw;
}

.section.soft {
  background: var(--soft);
}

.card-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  min-width: 220px;
}

.card h3 {
  margin-top: 0;
}

.price {
  font-size: 18px;
  font-weight: 700;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.split-col {
  flex: 1;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #2b3a4b;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.4px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  background: #0e141b;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 15px;
}

footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  margin: 20px 6vw 0;
  background: rgba(21, 28, 36, 0.95);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(8px);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #101822;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  max-width: 520px;
  width: calc(100% - 32px);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #0a0d11;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
