* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1a19;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5vw;
  background: #f7f4f0;
}

.top-nav .logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav nav {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
}

.top-nav .nav-cta {
  padding: 8px 14px;
  border: 1px solid #1b1a19;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 5vw 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 2.4rem;
  margin: 0;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 520px;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn {
  background: #1b1a19;
  color: #f7f4f0;
}

.btn-outline {
  border: 1px solid #1b1a19;
  color: #1b1a19;
}

.btn:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

.section {
  padding: 56px 5vw;
}

.section-title {
  margin: 0 0 16px;
  font-size: 2rem;
}

.section-subtitle {
  margin: 0 0 24px;
  max-width: 680px;
}

.asym-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.asym-highlight {
  background: #fff4e6;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(27, 26, 25, 0.08);
}

.offset-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(27, 26, 25, 0.15);
}

.offset-image.tilt {
  transform: rotate(-1.5deg);
}

.floating-quote {
  background: #1b1a19;
  color: #f7f4f0;
  padding: 24px;
  border-radius: 20px;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e8e0d8;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-card {
  background: #fdfbf8;
  border-radius: 18px;
  padding: 22px;
  border-left: 4px solid #bf7a4e;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(27, 26, 25, 0.07);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card {
  background: #1b1a19;
  color: #f7f4f0;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card.light {
  background: #fff4e6;
  color: #1b1a19;
}

.pricing-card .price {
  font-size: 1.4rem;
  font-weight: 700;
}

.highlight-band {
  background: #bf7a4e;
  color: #fff8f0;
  padding: 32px 5vw;
}

.band-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-wrapper {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(27, 26, 25, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9cfc4;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: #bf7a4e;
  font-weight: 700;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.footer {
  padding: 36px 5vw 48px;
  background: #141312;
  color: #f7f4f0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(27, 26, 25, 0.2);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 52px 5vw 40px;
}

.page-hero h1 {
  margin: 0 0 8px;
}

.content-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #e3d7cb;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .asym-block {
    flex-direction: row;
    align-items: center;
  }

  .asym-block.reverse {
    flex-direction: row-reverse;
  }

  .stats-row,
  .steps,
  .testimonials,
  .pricing-grid {
    flex-direction: row;
  }

  .stat-card,
  .step-card,
  .testimonial,
  .pricing-card {
    flex: 1;
  }

  .band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .form-wrapper {
    max-width: 680px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content-columns {
    flex-direction: row;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
