* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  position: relative;
  background: #f7f4f0;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1b1b1b;
}

.hero {
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fdfbf7;
  padding: 110px 8vw 90px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
}

.hero-content {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #fdfbf7;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.btn-outline {
  background: transparent;
  color: #fdfbf7;
  border-color: #fdfbf7;
}

.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-title {
  font-size: 30px;
}

.section-lead {
  font-size: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split .text {
  flex: 1;
}

.split .visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.callout {
  padding: 26px;
  background: #fff;
  border-left: 4px solid #1b1b1b;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.quote {
  font-style: italic;
  background: #fdfbf7;
  padding: 18px 20px;
  border-radius: 12px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 12px;
  height: 190px;
  object-fit: cover;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  font-weight: 700;
  font-size: 20px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  background: #1b1b1b;
  color: #fdfbf7;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfcac3;
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: #1b1b1b;
  border-bottom: 1px solid #1b1b1b;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: #e85d04;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #151515;
  color: #f5f2ed;
  padding: 40px 8vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.page-hero {
  background: #1b1b1b;
  color: #fdfbf7;
  padding: 80px 8vw 60px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
}

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 8vw;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #fff;
  font-size: 13px;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1b1b1b;
}

@media (min-width: 820px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }
}
