* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f22;
  background: #f7f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  gap: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.1)),
    url("https://images.unsplash.com/photo-1504113888839-1d8f0cc88d1d?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
  color: #fff;
  padding: 110px 0 130px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.1;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: #f5a533;
  color: #1f1f22;
}

.btn-light {
  background: #ffffff;
  color: #1f1f22;
}

.btn-outline {
  border-color: #1f1f22;
  color: #1f1f22;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1f1f22;
  color: #f8f4f0;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split > div {
  flex: 1;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255, 255, 255, 0.75);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: #fef6ea;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 180px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  padding: 18px;
  background: #2c2c32;
  border-radius: 16px;
  color: #f8f4f0;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #f0e4d7;
}

.price-card .price {
  font-size: 1.4rem;
  font-weight: 700;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e7dccf;
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease;
}

.service-option.active {
  border-color: #f5a533;
  background: #fff3df;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e3d6c7;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.form-note {
  font-size: 0.85rem;
  color: #6b5f54;
}

.cta-bar {
  position: sticky;
  bottom: 0;
  background: #1f1f22;
  color: #f8f4f0;
  padding: 14px 0;
  z-index: 5;
}

.cta-bar .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-bar span {
  font-weight: 600;
}

footer {
  background: #131316;
  color: #d9d3cc;
  padding: 40px 0;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-header {
  background: #1f1f22;
  color: #f8f4f0;
  padding: 80px 0 60px;
}

.page-header p {
  max-width: 720px;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cta-bar .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
