* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f26;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 12px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.92rem;
}

.ad-label {
  font-size: 0.78rem;
  padding: 6px 10px;
  border: 1px solid #c7b9a3;
  color: #4a3e2f;
  background: #fff7ea;
  border-radius: 999px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 6vw 40px;
  position: relative;
}

.hero-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  padding: 32px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(34, 25, 12, 0.08);
}

.hero-copy h1 {
  font-size: 2.2rem;
  margin: 0 0 14px;
}

.hero-copy p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  background: #d6cfc2;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-primary {
  background: #e4572e;
  color: #ffffff;
}

.btn-secondary {
  background: #1c1f26;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1c1f26;
  color: #1c1f26;
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-muted {
  background: #f0ebe4;
}

.section-dark {
  background: #1c1f26;
  color: #fef6ea;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-card {
  flex: 1 1 280px;
  padding: 24px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(25, 20, 14, 0.08);
}

.asym-card h3 {
  margin-top: 0;
}

.image-card {
  flex: 1 1 320px;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  background: #c9c1b6;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.floating-panel {
  margin-left: auto;
  max-width: 420px;
  padding: 26px;
  background: #fff6e6;
  border-radius: 20px;
  border: 1px solid #e2d2bc;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 200px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #efe6d8;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #efe6d8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card img {
  border-radius: 14px;
  background: #d9d1c4;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e4572e;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #efe6d8;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6c9b6;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #14161c;
  color: #f9f4ed;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.82rem;
  color: #d8cbb7;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #e4572e;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #e7dcc9;
  padding: 16px;
  border-radius: 14px;
  max-width: 320px;
  box-shadow: 0 18px 40px rgba(20, 15, 8, 0.12);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  font-size: 2rem;
  margin: 0;
}

.simple-hero {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.split-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.column {
  flex: 1 1 260px;
}

.background-panel {
  background: #efe6d8;
  padding: 22px;
  border-radius: 20px;
}

.notice {
  font-size: 0.9rem;
  color: #4d463b;
}

@media (max-width: 720px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }
}
