:root {
  --bg: #0e1116;
  --bg-soft: #151a22;
  --bg-light: #f4f6f8;
  --text: #f3f5f7;
  --text-dark: #1a1f27;
  --accent: #7bd4c0;
  --accent-strong: #4aa896;
  --muted: #aab3bf;
  --card: #1c222c;
  --border: #2a3240;
  --cta: #e7c873;
  --cta-dark: #c9a652;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 24px 6vw 12px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.3rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14,17,22,0.85), rgba(14,17,22,0.35));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  max-width: 720px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 12px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--cta);
  color: #2a2414;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  background: var(--cta-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 72px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.img-frame {
  background-color: #283041;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card.light {
  background: #ffffff;
  color: var(--text-dark);
  border-color: #dfe3e8;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
}

.tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(123, 212, 192, 0.2);
  color: var(--accent);
  font-size: 0.85rem;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.pricing-table {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-table .card {
  min-width: 240px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0f141b;
  color: var(--text);
  font-size: 1rem;
}

.section.light input,
.section.light select,
.section.light textarea {
  background: #ffffff;
  color: var(--text-dark);
  border-color: #dfe3e8;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: rgba(27, 33, 44, 0.92);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

footer {
  padding: 40px 8vw;
  background: #0b0f14;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #11161e;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.background-hero {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.background-insight {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.background-flow {
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
}

.background-ambient {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.section.image-band {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #f6f7f9;
}

.section.image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.72);
}

.section.image-band .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.notice {
  padding: 16px;
  border-radius: 12px;
  border: 1px dashed var(--accent);
  background: rgba(123, 212, 192, 0.08);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .sticky-cta {
    position: static;
  }
}
