* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f5f4f2;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #111216;
  color: #f7f4ef;
  padding: 18px 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
}

.ad-label {
  font-size: 0.85rem;
  color: #f2d07c;
  border: 1px solid #f2d07c;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 80px 0 40px;
  background: #f5f4f2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80") center/cover no-repeat;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 2.8vw, 3.4rem);
  margin-bottom: 14px;
}

.hero-visual {
  flex: 1 1 320px;
  background: #d9d1c7;
  border-radius: 24px;
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #111216;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #ffffff;
  color: #111216;
  border: 1px solid #111216;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 60px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
}

.panel-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(16, 18, 22, 0.08);
}

.panel-card.dark {
  background: #23252b;
  color: #f7f4ef;
}

.panel-card img {
  border-radius: 16px;
  margin-bottom: 16px;
}

.section-alt {
  background: #ffffff;
}

.section-dark {
  background: #111216;
  color: #f7f4ef;
}

.background-panel {
  background: #cfc7bc url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80") center/cover no-repeat;
  border-radius: 22px;
  padding: 32px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.background-panel p {
  margin: 0;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 250px;
  background: #fdfbf7;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5ded4;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin-top: 0;
}

.price {
  font-weight: 700;
  color: #1f3b32;
}

.process {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.process-step {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.form-block {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(16, 18, 22, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c1b6;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(16, 18, 22, 0.18);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.footer {
  padding: 40px 0;
  background: #111216;
  color: #f7f4ef;
  margin-top: 40px;
}

.footer a {
  color: #f7f4ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d8d5cf;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  padding: 16px;
  width: min(340px, 90%);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions .button {
  flex: 1;
  padding: 10px;
}

.notice {
  background: #f2d07c;
  color: #3b2f00;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 840px) {
  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}
