* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1b1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 28px 0 10px;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5f5f66;
  padding: 6px 10px;
  border: 1px solid #d5d1ca;
  border-radius: 999px;
  background: #fffaf1;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 36px 0 60px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  border: none;
  padding: 12px 20px;
  border-radius: 28px;
  background: #1b1b1f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #f1c07a;
  color: #1b1b1f;
}

.inline-link {
  border-bottom: 2px solid #1b1b1f;
  font-weight: 600;
}

.hero-visual {
  flex: 1.2;
  background: #d9d2c7;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #fff;
}

.section.soft {
  background: #f0ebe4;
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-title {
  font-size: 30px;
  margin-bottom: 20px;
}

.split {
  display: flex;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background: #c8d1da;
  min-height: 280px;
}

.panel-image img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(27, 27, 31, 0.08);
}

.card-image {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  background: #dcd3c8;
}

.card-image img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.highlight-list li {
  list-style: disc;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  border-left: 4px solid #f1c07a;
}

.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 20px;
  background: #1b1b1f;
  color: #fff;
}

.cta-block .button {
  background: #f1c07a;
  color: #1b1b1f;
}

.form-section {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.form-card {
  flex: 1.2;
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
  font-size: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d5d1ca;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
}

.footer {
  padding: 40px 0 60px;
  background: #1b1b1f;
  color: #f6f4f1;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 12px;
  color: #d4cfc8;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(27, 27, 31, 0.2);
  display: none;
  z-index: 20;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-hero {
  padding: 32px 0;
}

.legal-hero h1 {
  font-size: 36px;
}

.legal-layout {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.legal-text {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-image {
  flex: 1;
  background: #d9d2c7;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.legal-image img {
  width: 100%;
  height: 100%;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d5d1ca;
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .form-section,
  .legal-layout {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin-top: 20px;
  }
}
