* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f8f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 24px 0 8px;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  background: #efe6db;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background-color: #3b342b;
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
  padding: 90px 0 110px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 16, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background: #1f1f1f;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn-light {
  background: #ffffff;
  color: #1f1f1f;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background-color: #efe6db;
}

.section.dark {
  background-color: #1f1f1f;
  color: #ffffff;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.two-col.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
}

.img-frame {
  background-color: #e2d7cb;
  padding: 10px;
  border-radius: 18px;
}

.img-frame img {
  width: 100%;
  border-radius: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card.dark {
  background: #2c2c2c;
  color: #ffffff;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  padding: 18px 20px;
  border-left: 4px solid #1f1f1f;
  background: #ffffff;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.radio-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #d2c7bb;
  background: #fdfbf8;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-group input,
.field-group select,
.field-group textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d2c7bb;
  font-size: 15px;
}

.footer {
  padding: 40px 0 80px;
  background: #151515;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer small {
  display: block;
  margin-top: 16px;
  color: #d6d0c7;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f1f1f;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.banner-visible {
  display: block;
}

.note-box {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 18px;
}

.page-hero {
  padding: 60px 0 30px;
}

.simple-section {
  padding: 40px 0 60px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
