* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #14171a;
  --muted: #4b5662;
  --brand: #1f4cff;
  --brand-soft: #e8edff;
  --accent: #ff7a45;
  --line: #e3e7ee;
  --bg: #f7f8fb;
  --dark: #0b0f17;
  --dark-soft: #1e2430;
}

body {
  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;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 7vw;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
}

.nav-links a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.hero {
  padding: 50px 7vw 40px;
  background: var(--bg);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 50px 7vw;
}

.split-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse .split-inner {
  flex-direction: column-reverse;
}

.split .content,
.split .visual {
  flex: 1;
}

.split .content h1,
.split .content h2,
.split .content h3 {
  line-height: 1.15;
}

.split .content h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.split .content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.split .content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.split .content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: #ffffff;
}

.btn.primary:hover {
  background: #1638c9;
}

.btn.ghost {
  border-color: var(--line);
  background: #ffffff;
}

.btn.accent {
  background: var(--accent);
  color: #ffffff;
}

.section-alt {
  background: var(--dark);
  color: #ffffff;
}

.section-alt .content p {
  color: #d0d6df;
}

.section-soft {
  background: var(--brand-soft);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.card strong {
  font-size: 1.05rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.pricing-item span {
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  color: var(--brand);
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 28px 7vw 40px;
  background: #0f1218;
  color: #d5dbe4;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #ffffff;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  align-self: flex-end;
  margin: 0 7vw 40px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(15, 18, 24, 0.12);
  z-index: 10;
}

.sticky-cta a {
  color: var(--brand);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(15, 18, 24, 0.12);
  z-index: 99;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-header {
  padding: 40px 7vw 10px;
  background: var(--bg);
}

.simple-section {
  padding: 40px 7vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .split-inner {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse .split-inner {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .pricing-item {
    flex: 1;
  }

  .form-wrap {
    padding: 28px;
  }

  .sticky-cta {
    align-self: flex-end;
  }

  .cookie-banner {
    left: auto;
    right: 30px;
    max-width: 360px;
  }
}
