* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #121417;
  --muted: #5a6572;
  --brand: #1a4d7a;
  --accent: #e3912c;
  --surface: #f5f3ef;
  --surface-strong: #e7ebf1;
  --line: #d5dbe4;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw 12px;
  gap: 24px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--brand);
}

.split-section {
  display: flex;
  flex-direction: column;
  padding: 56px 8vw;
  gap: 32px;
}

.split-section .split-content,
.split-section .split-visual {
  flex: 1;
}

.split-section.alt {
  background: var(--surface);
}

.split-section.ink {
  background: var(--ink);
  color: #f6f7f9;
}

.split-section.ink a {
  color: #f6f7f9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 16px 0 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.button.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1a1a;
}

.button:hover {
  transform: translateY(-2px);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brand);
}

.split-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visual-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(13, 33, 58, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  background: var(--surface-strong);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  min-width: 140px;
}

.metric strong {
  font-size: 1.4rem;
  display: block;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 12px;
  background: var(--surface);
}

.price {
  font-weight: 700;
  color: var(--brand);
  font-size: 1.1rem;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: rgba(227, 145, 44, 0.12);
  border-radius: 12px;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(13, 33, 58, 0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(13, 33, 58, 0.18);
  z-index: 20;
}

.sticky-cta span {
  font-weight: 600;
}

.footer {
  background: var(--ink);
  color: #f6f7f9;
  padding: 48px 8vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f6f7f9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.page-title {
  padding: 48px 8vw 16px;
}

.page-title h1 {
  margin: 0;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: 1px solid var(--ink);
  background: transparent;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .sticky-cta {
    bottom: 32px;
    right: 36px;
  }
}
