* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #101418;
  background-color: #f7f6f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  overflow-x: hidden;
}

.nav-shell {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1.5rem 0;
}

.nav-floating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(16, 20, 24, 0.12);
  width: min(980px, 100%);
}

.nav-brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #f2f2ef;
}

.nav-cta {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: #101418;
  color: #f7f6f4;
  font-size: 0.9rem;
}

main {
  padding: 2rem 1.5rem 4rem;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3.5rem 0;
  position: relative;
}

.section.layered::before {
  content: "";
  position: absolute;
  inset: 0.7rem 1rem auto 0;
  height: 65%;
  background: rgba(16, 20, 24, 0.05);
  z-index: 0;
  border-radius: 24px;
}

.section > * {
  position: relative;
  z-index: 1;
}

.split {
  align-items: center;
}

.offset-left {
  transform: translateX(-4%);
}

.offset-right {
  transform: translateX(4%);
}

.section-title {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: #5a6772;
}

.hero {
  padding-top: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

.hero p {
  max-width: 520px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #101418;
  color: #f7f6f4;
}

.btn-secondary {
  background: #e2d9ff;
  color: #1e1a2b;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 16px 30px rgba(16, 20, 24, 0.08);
}

.card.accent {
  background: #101418;
  color: #f7f6f4;
}

.card img {
  border-radius: 12px;
  margin-bottom: 1rem;
}

.statement {
  font-size: 1.1rem;
  max-width: 560px;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
  background: #fff3e1;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 10px 20px rgba(16, 20, 24, 0.1);
}

.inline-cta {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.pricing-item {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 14px 26px rgba(16, 20, 24, 0.08);
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
}

.tag {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #ebf4ff;
  color: #21507a;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-wrap {
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(16, 20, 24, 0.08);
  flex: 1 1 320px;
}

.form-wrap label {
  display: block;
  font-size: 0.88rem;
  margin-top: 1rem;
  color: #52616b;
}

.form-wrap input,
.form-wrap select {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.4rem;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
  font-size: 0.95rem;
  background: #fdfdfc;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.service-option {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  background: #f2f2ef;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
}

.form-note {
  font-size: 0.85rem;
  color: #5a6772;
  margin-top: 0.8rem;
}

.footer {
  padding: 3rem 1.5rem;
  background: #101418;
  color: #f7f6f4;
}

.footer a {
  color: #f7f6f4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
}

.cookie-banner {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 18px 40px rgba(16, 20, 24, 0.16);
  max-width: 320px;
  display: none;
  z-index: 5;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.cookie-actions button {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
}

.cookie-accept {
  background: #101418;
  color: #f7f6f4;
}

.cookie-reject {
  background: #e7e7e7;
  color: #1d1d1d;
}

.address-block {
  background: #ffffff;
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(16, 20, 24, 0.08);
}

.section-alt {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #f2f2ef;
  font-size: 0.85rem;
}

.inline-image {
  border-radius: 18px;
  box-shadow: 0 12px 22px rgba(16, 20, 24, 0.12);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 12px 20px rgba(16, 20, 24, 0.08);
}

.center {
  text-align: center;
}

@media (min-width: 900px) {
  .hero {
    padding-top: 4rem;
  }

  .split > .col {
    flex: 1 1 45%;
  }

  .section {
    padding: 4rem 0;
  }
}
