* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f1115;
  --text: #f2f3f5;
  --muted: #b7bcc7;
  --accent: #7bdff2;
  --accent-2: #f2cc8f;
  --card: #1a1f29;
  --soft: #242b38;
  --light: #f7f6f1;
  --dark: #0b0d11;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  padding: 20px 6vw 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 999px;
  color: var(--muted);
}

.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1570440696486-5cfc676e2a68?w=1400&q=80");
  background-color: #1a1f29;
  background-size: cover;
  background-position: center;
  padding: 110px 6vw 120px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.72);
}

.hero-content {
  position: relative;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #101319;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
}

.section {
  padding: 70px 6vw;
  background: var(--bg);
}

.section.alt {
  background: var(--soft);
}

.section.light {
  background: var(--light);
  color: #111318;
}

.section.dark {
  background: var(--dark);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.img-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #2c3340;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.inline-link {
  text-decoration: underline;
}

.trust-banner {
  background-image: url("https://images.unsplash.com/photo-1767404890803-228d5390fcd4?w=1400&q=80");
  background-color: #1b202a;
  background-size: cover;
  background-position: center;
  position: relative;
}

.trust-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 21, 28, 0.75);
}

.trust-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 26px;
}

.testimonial {
  padding: 16px 18px;
  background: rgba(20, 24, 32, 0.7);
  border-radius: 12px;
}

.reveal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.spaced {
  margin-top: 28px;
}

.form-wrap {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #2d3442;
  background: #11151d;
  color: var(--text);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: #12161f;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #2d3442;
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

footer {
  padding: 40px 6vw 70px;
  background: #0c0f14;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-block {
  font-size: 0.9rem;
  max-width: 780px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #11151d;
  border: 1px solid #2d3442;
  padding: 14px 16px;
  border-radius: 14px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

.page-title {
  padding: 80px 6vw 40px;
  font-size: 2.3rem;
  background: #0f1115;
}

.simple-content {
  padding: 30px 6vw 70px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.simple-card {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
}

@media (max-width: 780px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
