/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #10131a;
  --night: #0a0f1f;
  --fog: #f5f3ef;
  --sand: #f0e7dc;
  --accent: #3054f3;
  --accent-dark: #1a2c8f;
  --warm: #e7d7c5;
  --muted: #566079;
+  --outline: rgba(16, 19, 26, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--fog);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 6vw;
  background: rgba(245, 243, 239, 0.95);
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--ink);
}

.ghost-link {
  border: 1px solid var(--outline);
  padding: 8px 14px;
  border-radius: 999px;
}

.ghost-link:hover {
  border-color: var(--ink);
}

/* Split sections */
.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 6vw;
}

.split-section.alt {
  background: var(--sand);
}

.split-section.dark {
  background: var(--night);
  color: #fff;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.split-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-copy h1,
.split-copy h2,
.split-copy h3 {
  line-height: 1.2;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.dark .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-btn,
.secondary-btn,
.outline-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
}

.primary-btn:hover {
  background: var(--accent-dark);
}

.secondary-btn {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--outline);
}

.secondary-btn:hover {
  border-color: var(--ink);
}

.outline-btn {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.highlight-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(16, 19, 26, 0.08);
}

.dark .highlight-card {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.metric {
  flex: 1;
  min-width: 140px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(48, 84, 243, 0.08);
}

.metric strong {
  font-size: 22px;
  display: block;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.dark .trust-strip {
  color: rgba(255, 255, 255, 0.7);
}

/* Cards */
.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.price-tag {
  font-weight: 600;
  font-size: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Form */
.form-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--outline);
}

.form-block label {
  font-size: 13px;
  color: var(--muted);
}

.form-block input,
.form-block select,
.form-block textarea {
  border-radius: 12px;
  border: 1px solid var(--outline);
  padding: 10px 12px;
  background: #faf9f7;
}

.form-block textarea {
  min-height: 90px;
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: var(--night);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: #fff;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--outline);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(16, 19, 26, 0.12);
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(16, 19, 26, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  border: 1px solid var(--outline);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

/* Responsive */
@media (min-width: 900px) {
  .split-section {
    padding: 90px 10vw;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }
}
