* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2428;
  background: #f7f4ef;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 8vw;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 8vw 60px;
}

.hero-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(28, 27, 25, 0.1);
  align-self: flex-start;
  max-width: 520px;
}

.hero-media {
  position: relative;
  align-self: flex-end;
  max-width: 560px;
}

.hero-media img {
  border-radius: 28px;
}

.hero-media .overlay {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #1f2428;
  color: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  max-width: 240px;
}

.section {
  padding: 60px 8vw;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1f2428;
  color: #f8f6f3;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-box {
  background: #fef7e8;
  border-radius: 18px;
  padding: 24px;
  align-self: flex-start;
  max-width: 540px;
}

.offset-box.right {
  align-self: flex-end;
  background: #e8f1ff;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 32px rgba(33, 39, 45, 0.12);
}

.card img {
  border-radius: 16px;
}

.highlight {
  font-size: 2.2rem;
  line-height: 1.1;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2428;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.light {
  background: #fff;
  color: #1f2428;
  border: 1px solid rgba(31, 36, 40, 0.15);
}

.inline-link {
  border-bottom: 1px solid currentColor;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery img {
  border-radius: 24px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(31, 36, 40, 0.08);
}

.pricing-item.selected {
  border: 2px solid #1f2428;
  transform: translateY(-2px);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(24, 28, 32, 0.14);
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 36, 40, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border-left: 4px solid #1f2428;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1f2428;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 8vw;
  background: #111418;
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid rgba(31, 36, 40, 0.15);
  padding: 18px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.subtle {
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .hero-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .asym-row,
  .gallery,
  .cards,
  .pricing-grid,
  .two-col {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .offset-box {
    max-width: 48%;
  }

  .card,
  .pricing-item,
  .testimonial {
    flex: 1 1 30%;
  }

  .form-wrap {
    max-width: 520px;
  }

  .gallery img {
    flex: 1 1 30%;
  }
}
