* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f2a;
  --muted: #5a6375;
  --accent: #2f6fec;
  --accent-dark: #234fb0;
  --surface: #f5f7fb;
  --sand: #efe9e3;
  --slate: #232837;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sand);
  color: var(--ink);
  padding: 6px 10px;
  font-size: 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  padding: 60px 0 40px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.panel h1,
.panel h2 {
  font-weight: 700;
  line-height: 1.2;
}

.panel h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.panel h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: var(--slate);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.image-frame {
  background: #dbe2f0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--surface);
}

.section.sand {
  background: var(--sand);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: var(--white);
  border: 1px solid #d5dbe8;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-item {
  background: var(--white);
  padding: 16px 18px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd6e6;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--slate);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
  z-index: 20;
}

.sticky-cta a {
  color: var(--white);
  font-weight: 600;
}

.footer {
  background: var(--slate);
  color: #d7dbe6;
  padding: 40px 0;
}

.footer a {
  color: #d7dbe6;
}

.footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-note {
  font-size: 0.85rem;
  color: #b8c0d6;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 25;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.bg-overlay {
  background: rgba(19, 25, 38, 0.7);
  padding: 60px 0;
}

.inline-image {
  background: #e3e9f5;
  border-radius: 14px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
