* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f24;
  --muted: #5b5b66;
  --accent: #4a5cff;
  --accent-dark: #2f3bd2;
  --sand: #f5f3ef;
  --steel: #e8ecf6;
  --night: #121320;
  --gold: #f3c969;
  --radius: 20px;
}

body {
  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;
  border-radius: var(--radius);
}

header {
  padding: 32px 6vw 20px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.cta-button {
  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;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.page-wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 6vw 90px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.section-card {
  background: var(--steel);
  border-radius: var(--radius);
  padding: 32px;
}

.highlight {
  background: var(--night);
  color: #ffffff;
}

.highlight .muted {
  color: rgba(255, 255, 255, 0.7);
}

.muted {
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e6e9f1;
}

.service-item span {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e9e6e1;
}

.image-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), transparent);
}

.image-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #ffffff;
  font-weight: 600;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  background: var(--sand);
  padding: 16px 18px;
  border-radius: 14px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #e5e7f2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dbe6;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.footer {
  background: var(--night);
  color: #ffffff;
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  width: min(360px, 90vw);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--steel);
  border-radius: var(--radius);
  padding: 28px;
}

@media (min-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: row;
    align-items: stretch;
  }

  .split-content,
  .split-media {
    flex: 1;
  }

  .split-content {
    padding-right: 24px;
  }

  .split.reverse .split-content {
    padding-right: 0;
    padding-left: 24px;
  }

  .service-grid,
  .testimonial-strip,
  .list-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item,
  .testimonial,
  .list-item {
    flex: 1 1 240px;
  }
}
