* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1a1b1f;
  background-color: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow: hidden;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  background-color: #f2ede6;
  border-bottom: 1px solid #e0dad2;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background-color: #2d2d35;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 14px;
}

.hero {
  display: flex;
  align-items: stretch;
  padding: 40px 6% 60px;
  gap: 36px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-copy p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background-color: #1a1b1f;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-secondary {
  background-color: #f2ede6;
  color: #1a1b1f;
  border: 1px solid #1a1b1f;
}

.hero-image {
  flex: 0.9;
  background-color: #d9d3ca;
  border-radius: 18px;
  overflow: hidden;
  align-self: flex-start;
  transform: translateY(18px);
}

.section {
  padding: 60px 6%;
}

.section.light {
  background-color: #ffffff;
}

.section.dark {
  background-color: #2d2d35;
  color: #f7f4ef;
}

.asym-block {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.asym-copy {
  flex: 1.2;
  min-width: 260px;
}

.asym-copy h2 {
  margin-top: 0;
  font-size: 2rem;
}

.asym-image {
  flex: 0.8;
  min-width: 240px;
  background-color: #d9d3ca;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(-14px);
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  gap: 18px;
  padding: 18px;
  background-color: #f7f4ef;
  border-radius: 16px;
  align-items: center;
}

.card-image {
  width: 140px;
  min-width: 140px;
  height: 120px;
  background-color: #d9d3ca;
  border-radius: 12px;
  overflow: hidden;
}

.card h3 {
  margin: 0 0 8px;
}

.testimonial-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1;
  min-width: 240px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e5dfd7;
}

.reveal {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  background-color: #f2ede6;
}

.price-item span {
  font-weight: 600;
}

.reveal-image {
  flex: 0.8;
  min-width: 220px;
  background-color: #d9d3ca;
  border-radius: 14px;
  overflow: hidden;
  transform: translateY(10px);
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-panel {
  flex: 1.1;
  min-width: 260px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e5dfd7;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfc8bf;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  flex: 0.8;
  min-width: 220px;
  background-color: #f2ede6;
  padding: 20px;
  border-radius: 14px;
}

.inline-link {
  text-decoration: underline;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  background-color: #e76f51;
  color: #fff;
  padding: 12px 18px;
  border-radius: 26px;
  font-weight: 600;
}

.footer {
  padding: 40px 6%;
  background-color: #1a1b1f;
  color: #f7f4ef;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  padding: 50px 6% 30px;
  background-color: #f2ede6;
}

.content {
  padding: 30px 6% 60px;
}

.content h2 {
  margin-top: 26px;
}

.notice {
  background-color: #f7f4ef;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e0dad2;
}

.image-block {
  background-color: #d9d3ca;
  border-radius: 16px;
  overflow: hidden;
}

.spaced-block {
  margin-top: 40px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-image {
    transform: none;
  }

  .asym-image,
  .reveal-image {
    transform: none;
  }
}
