* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5f6b73;
  --paper: #ffffff;
  --fog: #f2f4f7;
  --sand: #f7f1ea;
  --forest: #1f3a34;
  --accent: #246bce;
  --accent-2: #2c9c7c;
  --warning: #c76b2c;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--fog);
  border-bottom: 1px solid #e0e5ea;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  padding: 6px 10px;
  background: #fff4e6;
  color: #8a4a1f;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.split-section {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 70px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.hero {
  background: linear-gradient(120deg, rgba(36, 107, 206, 0.06), rgba(44, 156, 124, 0.1));
}

.hero-media {
  background-color: #d9e3ee;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
}

.btn.secondary {
  background: var(--forest);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.panel {
  background: var(--fog);
  border-radius: 20px;
  padding: 28px;
}

.panel.spaced {
  margin-top: 18px;
}

.spaced-top {
  margin-top: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(14, 30, 37, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  background-color: #e6edf3;
}

.price {
  font-weight: 700;
  color: var(--forest);
  margin-top: 10px;
}

.stat-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background: #ffffff;
  border-left: 4px solid var(--accent-2);
  padding: 18px;
  border-radius: 10px;
}

.image-frame {
  background-color: #e1e8ef;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(14, 30, 37, 0.06);
}

.form-wrap {
  background: var(--sand);
  border-radius: 22px;
  padding: 28px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd6de;
  font-size: 15px;
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: #111418;
  color: #c7d0d9;
  padding: 40px 0 60px;
  margin-top: 70px;
}

.footer a {
  color: #c7d0d9;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #1f2933;
  color: #ffffff;
  padding: 18px 22px;
  border-radius: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 110px;
  z-index: 900;
}

.sticky-cta button {
  background: var(--warning);
}

.banner-note {
  font-size: 13px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-alt {
  background: var(--fog);
}

.bg-horizon {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-gradient {
  background-image: linear-gradient(120deg, rgba(15, 23, 30, 0.88), rgba(15, 23, 30, 0.6)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-dark {
  background: #162026;
  color: #e6eef6;
}

.section-dark p {
  color: #b7c3cf;
}

.section-dark a {
  color: #9cc9ff;
}

.compact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.compact-list span {
  color: var(--accent-2);
  font-weight: 700;
}

@media (max-width: 980px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }
}
