* {
  box-sizing: border-box;
}

:root {
  --bg: #0f1115;
  --surface: #151923;
  --surface-light: #1c2230;
  --text: #f4f5f7;
  --muted: #c2c6d1;
  --accent: #4ea1ff;
  --accent-soft: #92c6ff;
  --warm: #f5d18a;
  --line: #2b3140;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: rgba(15, 17, 21, 0.9);
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.4px;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  color: var(--warm);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.container {
  padding: 40px 6vw;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.panel.visual {
  background: var(--surface);
  border-radius: 18px;
  padding: 16px;
}

.panel.visual .img-wrap {
  background: #1b2330;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.hero {
  padding-top: 20px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0;
}

.subhead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #0f1115;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-cta {
  color: var(--warm);
  font-weight: 600;
}

.section {
  padding: 30px 0;
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--surface-light);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .img-wrap {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background: #222a3a;
}

.price {
  color: var(--warm);
  font-weight: 700;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.testimonial {
  padding: 16px;
  border-left: 2px solid var(--accent-soft);
  color: var(--muted);
  font-style: italic;
}

.form-wrap {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0f1115;
  color: var(--text);
}

textarea {
  min-height: 120px;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #0c0e13;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #1a2030;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-block {
  background: var(--surface);
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-image {
  min-height: 360px;
}

.bg-panel {
  background: linear-gradient(145deg, rgba(78, 161, 255, 0.08), rgba(245, 209, 138, 0.1));
  border-radius: 18px;
  padding: 24px;
}

.split-tight {
  display: flex;
  gap: 20px;
  align-items: center;
}

.small-text {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .split,
  .split.reverse,
  .split-tight {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .hero h1 {
    font-size: 34px;
  }
}
