* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #12202b;
  --muted: #4b5f6b;
  --blue: #1f6fb2;
  --blue-dark: #0f3f69;
  --sand: #f6f3ee;
  --cloud: #eef4f8;
  --accent: #f5d28f;
}

body {
  font-family: "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: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e3e8ec;
  background: #fff;
}

header nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.cta-primary,
.cta-secondary,
.cta-outline {
  padding: 12px 20px;
  border-radius: 28px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-primary {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}

.cta-secondary {
  background: var(--accent);
  color: var(--ink);
  border: 1px solid var(--accent);
}

.cta-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 1px solid var(--blue-dark);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 6%;
}

.split-section.alt {
  background: var(--sand);
}

.split-section.dark {
  background: var(--blue-dark);
  color: #fff;
}

.split-section .split-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-section .copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-section h1,
.split-section h2,
.split-section h3 {
  line-height: 1.2;
}

.split-section .meta {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.split-section.dark .meta,
.split-section.dark p,
.split-section.dark a {
  color: #e8f1f7;
}

.inline-link {
  color: var(--blue);
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid #e3e8ec;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-card img {
  width: 64px;
  height: 64px;
}

.service-card .price {
  font-weight: 700;
  color: var(--blue-dark);
}

.highlight-box {
  background: var(--cloud);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-style: italic;
}

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 #cfd8de;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

footer {
  padding: 32px 6%;
  background: #0d1b23;
  color: #d8e2ea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(10, 30, 50, 0.2);
  z-index: 20;
}

.hero {
  background: linear-gradient(120deg, rgba(31, 111, 178, 0.08), rgba(245, 210, 143, 0.3));
}

.image-frame {
  position: relative;
  padding: 16px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(12, 34, 56, 0.08);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  background: rgba(31, 111, 178, 0.08);
  z-index: -1;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8f1f7;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #d8e2ea;
  padding: 16px 6%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 860px) {
  .split-section .split-inner {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse .split-inner {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
    flex-direction: column;
  }

  .columns {
    flex-direction: row;
  }

  .columns > div {
    flex: 1;
  }

  header nav {
    justify-content: flex-end;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
