* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a23;
  background: #f6f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.img-cover {
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #f6f5f1;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #1f2a23;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #1f2a23;
  color: #f6f5f1;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #e2e0d8;
  padding: 90px 6vw 70px;
  color: #fefbf3;
}

.hero-inner {
  max-width: 640px;
  background: rgba(25, 25, 25, 0.62);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 42px;
  margin: 0;
}

.button {
  background: #ff8d55;
  color: #1f2a23;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.button-secondary {
  background: transparent;
  border: 2px solid #ff8d55;
  color: #ff8d55;
}

.section {
  padding: 70px 6vw;
}

.section-alt {
  background: #ffffff;
}

.section-accent {
  background: #1f2a23;
  color: #fefbf3;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split-reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.img-frame {
  background-color: #dcd8cf;
  border-radius: 22px;
  overflow: hidden;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.quote {
  border-left: 4px solid #ff8d55;
  padding-left: 16px;
  font-style: italic;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: #efece3;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 260px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.card-image {
  height: 160px;
}

.card h3 {
  margin: 0;
}

.pricing-card {
  border: 2px solid #ff8d55;
}

.cta-inline {
  color: #ff8d55;
  font-weight: 700;
  text-decoration: none;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1518791841217-8f162f1e1131?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2a23;
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 50px;
  border-radius: 22px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid input,
.form-grid select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c5bb;
  font-size: 16px;
}

.form-note {
  font-size: 14px;
  color: #5c625b;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1f2a23;
  color: #fefbf3;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta button {
  background: #ff8d55;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 700;
}

.footer {
  background: #0f1411;
  color: #f6f5f1;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #ffb089;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1f2a23;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}

.cookie-accept {
  background: #ff8d55;
}

.cookie-reject {
  background: #e7e3d9;
}

.simple-hero {
  background: #1f2a23;
  color: #fefbf3;
  padding: 60px 6vw 40px;
}

.simple-hero h1 {
  margin: 0;
  font-size: 34px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #efece3;
}

.service-price {
  font-weight: 700;
  color: #ff8d55;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.note-box {
  background: #efece3;
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 860px) {
  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 34px;
  }
}
