* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1d1d1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1848b1;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.site-header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f6f4f1;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  padding: 40px 6vw 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: #1d1d1f;
  color: #fefefe;
  padding: 20px;
  border-radius: 20px;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #1a1f2c;
  color: #f3f4f7;
}

.section.accent {
  background: #f0e7da;
}

.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  margin: 0;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1848b1;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-outline {
  background: transparent;
  color: #1848b1;
  border: 1px solid #1848b1;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid rgba(24, 72, 177, 0.3);
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.badge {
  background: #ffd26f;
  color: #1d1d1f;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4d3d1;
  font-family: inherit;
}

.site-footer {
  padding: 40px 6vw 60px;
  background: #111318;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.highlight-bg {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .two-col {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .image-strip {
    flex-direction: row;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
