* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1e1e;
  background-color: #f5f4f1;
  line-height: 1.6;
}

a {
  color: #1e1e1e;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background-color: #f5f4f1;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  padding: 6px 12px;
  border: 1px solid #c2b9a8;
  border-radius: 999px;
  font-size: 0.85rem;
  background-color: #efe8da;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  top: 0;
  background-color: #1f2b36;
  color: #f5f4f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 6vw;
  gap: 16px;
  z-index: 2;
}

.sticky-cta a {
  color: #f5f4f1;
  border: 1px solid #f5f4f1;
  padding: 8px 16px;
  border-radius: 24px;
}

.split {
  display: flex;
  gap: 32px;
  padding: 64px 6vw;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f4f1;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.split .content {
  flex: 1 1 50%;
}

.split .media {
  flex: 1 1 50%;
  background-color: #d9d3c6;
  border-radius: 20px;
  overflow: hidden;
}

.split .media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.hero {
  background-color: #e5dfd4;
}

.bg-layered {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d4cec4;
  background-blend-mode: multiply;
}

.hero .content h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin: 0 0 16px 0;
}

.hero .content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button,
button {
  background-color: #1f2b36;
  color: #f5f4f1;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.light {
  background-color: #f5f4f1;
  color: #1f2b36;
  border: 1px solid #1f2b36;
}

.inline-link {
  text-decoration: underline;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stat-card {
  background-color: #fff;
  padding: 18px;
  border-radius: 14px;
  flex: 1 1 160px;
}

.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card .media {
  border-radius: 14px;
  overflow: hidden;
  background-color: #e3ddd2;
}

.pricing-card img {
  width: 100%;
  height: 160px;
}

.pricing-card .price {
  font-weight: 700;
}

.form-panel {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c4c4c4;
  font-size: 0.95rem;
  background-color: #fafafa;
}

.form-panel .form-note {
  font-size: 0.85rem;
  color: #4a4a4a;
}

.form-message {
  font-size: 0.9rem;
  color: #1f2b36;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}

.footer {
  padding: 40px 6vw;
  background-color: #1f2b36;
  color: #f5f4f1;
}

.footer a {
  color: #f5f4f1;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-column {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 3;
}

.cookie-banner p {
  margin-top: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 56px 6vw 20px;
}

.page-hero h1 {
  margin: 0;
}

.page-section {
  padding: 40px 6vw;
}

.page-section.split {
  padding: 40px 6vw;
}

.contact-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
