* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2328;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  background: #f2ece6;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #2d2a26;
  color: #f7f5f2;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  background: #121215;
  color: #f7f5f2;
  padding: 60px 0 80px;
}

.hero-inner {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-image {
  flex: 1 1 340px;
  border-radius: 24px;
  overflow: hidden;
  background: #2d2a26;
  min-height: 320px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f6b94f;
  color: #1f2328;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #1f2328;
  background: transparent;
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #1c1b1a;
  color: #f7f5f2;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 18px;
}

.section-lead {
  max-width: 700px;
  margin-bottom: 28px;
}

.two-col {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.two-col.reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1 1 320px;
}

.image-card {
  background: #d9d2c5;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 32px rgba(31, 35, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #2a2724;
  color: #f7f5f2;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 160px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.quote {
  padding: 18px 20px;
  border-left: 3px solid #f6b94f;
  background: #fff7e6;
  margin-bottom: 16px;
}

.pricing {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e6e0d8;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(31, 35, 40, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5cdc4;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f2328;
  color: #f7f5f2;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.sticky-cta a {
  color: #1f2328;
  background: #f6b94f;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  padding: 50px 0;
  background: #11100f;
  color: #d9d2c5;
}

.footer-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer small {
  display: block;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(31, 35, 40, 0.15);
  z-index: 30;
  width: min(320px, 90%);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 70px 0 40px;
  background: #1c1b1a;
  color: #f7f5f2;
}

.page-hero .two-col {
  align-items: stretch;
}

.page-hero .image-card img {
  height: 260px;
  width: 100%;
}

.legal-block {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
