:root {
  --ink: #0f172a;
  --muted: #475569;
  --accent: #4f46e5;
  --accent-dark: #312e81;
  --soft: #eef2ff;
  --sand: #f8fafc;
  --warm: #fff7ed;
  --line: #e2e8f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 24px 8%;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

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

.nav-links a {
  color: var(--ink);
}

.hero {
  padding: 48px 8% 32px;
  background: linear-gradient(120deg, #ffffff 20%, var(--soft) 80%);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  padding: 48px 8%;
}

.split-section.alt {
  background: var(--sand);
}

.split-section.warm {
  background: var(--warm);
}

.split-section .content,
.split-section .media {
  flex: 1;
}

.media-card {
  padding: 22px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

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

.headline {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

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

.btn.dark {
  background: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0ea5e9;
  color: #ffffff;
  font-weight: 600;
  z-index: 20;
}

.tiles {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tile {
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.tile h3 {
  margin-top: 0;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
}

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

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

.list-inline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.banner {
  background: #0f172a;
  color: #ffffff;
  padding: 20px 8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  padding: 32px 8%;
  background: #0f172a;
  color: #cbd5f5;
}

.footer a {
  color: #cbd5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
  max-width: 320px;
  z-index: 30;
}

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

@media (min-width: 900px) {
  .nav-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

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

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .tiles,
  .service-grid,
  .list-inline {
    flex-direction: row;
  }

  .tile,
  .service-card {
    flex: 1;
  }

  .banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
