* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f7f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background: #f0efe8;
  gap: 18px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.hero {
  position: relative;
  padding: 90px 6% 80px;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1741156229623-da94e6d7977d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
}

.hero h1 {
  font-size: 2.8rem;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
  max-width: 620px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #ff6b35;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.btn:hover,
.text-link:hover {
  opacity: 0.85;
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.alt {
  background: #fff;
}

.section.dark {
  background: #111;
  color: #fff;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.split {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 280px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #f7f7f2;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: #1f1f1f;
  color: #fff;
}

.media-wrap {
  background-color: #dfe7e2;
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote {
  font-style: italic;
  border-left: 4px solid #ff6b35;
  padding-left: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.07);
}

.price-row strong {
  display: block;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #0e0e0e;
  color: #c9c9c9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.text-link {
  font-weight: 600;
  text-decoration: underline;
}

.list {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  background: #efe4d4;
  padding: 16px 18px;
  border-radius: 14px;
}

.centered {
  text-align: center;
}

@media (max-width: 780px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
