* {
  box-sizing: border-box;
}

:root {
  --ink: #111115;
  --muted: #5b5e6a;
  --accent: #db3a34;
  --accent-dark: #b72e29;
  --mist: #f4f1ed;
  --sand: #f8f5f2;
  --night: #191a1f;
  --highlight: #f0d9c7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  position: relative;
  padding: 30px 0 80px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-copy {
  background: var(--mist);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-copy p {
  margin: 0 0 22px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.section {
  padding: 70px 0;
}

.section--mist {
  background: var(--mist);
}

.section--sand {
  background: var(--sand);
}

.section--night {
  background: var(--night);
  color: #ffffff;
}

.section--image {
  color: #ffffff;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)),
    url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 35px rgba(17, 17, 21, 0.15);
}

.offset-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 12px;
  margin-bottom: 16px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-number {
  font-weight: 700;
  background: var(--highlight);
  padding: 8px 14px;
  border-radius: 12px;
}

.testimonial {
  background: #ffffff;
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  margin-top: 18px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.pricing-item span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.story-block {
  background: var(--highlight);
  padding: 28px;
  border-radius: 24px;
  position: relative;
}

.story-block::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 120px;
  height: 120px;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=600&q=80") center/cover;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-fields label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2d2d2;
  font: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 40px 0 60px;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 40px 0 60px;
  background: var(--mist);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.content-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

@media (min-width: 900px) {
  .hero-layout {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-copy {
    flex: 0 0 50%;
  }

  .hero-visual {
    flex: 0 0 46%;
    transform: translateY(30px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .offset-block {
    flex-direction: row;
    align-items: flex-start;
  }

  .offset-block img {
    max-width: 46%;
  }

  .offset-card {
    transform: translateY(-30px);
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-item {
    flex: 1 1 260px;
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 260px;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
