* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5%;
  background: #101421;
  color: #f3f5f8;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 8% 70px;
  color: #ffffff;
  background-image: linear-gradient(120deg, rgba(10, 12, 20, 0.65), rgba(10, 12, 20, 0.25)), url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero .hero-inner {
  max-width: 620px;
}

.hero h1 {
  font-size: 2.9rem;
  margin: 0 0 16px;
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  margin: 0 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: #ffcc66;
  color: #1a1d25;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.section {
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section h2 {
  font-size: 2rem;
  margin: 0;
}

.section p {
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.img-wrap {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d8dbe2;
}

.img-wrap img {
  width: 100%;
  height: 100%;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(18, 24, 40, 0.08);
}

.problem-section {
  color: #ffffff;
  background-image: linear-gradient(110deg, rgba(15, 18, 30, 0.8), rgba(15, 18, 30, 0.5)), url("https://images.unsplash.com/photo-1493238792000-8113da705763?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 32px rgba(20, 24, 35, 0.08);
}

.trust-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 240px;
  background: #f1efe9;
  padding: 18px;
  border-radius: 14px;
  font-style: italic;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.benefits .media {
  flex: 1 1 300px;
}

.benefits .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.price-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 32px rgba(20, 24, 35, 0.08);
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-section {
  background: #101421;
  color: #f7f7f7;
}

.form-card {
  background: #1b2133;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccd0da;
  font-size: 1rem;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  background: #0e111b;
  color: #d6d8df;
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.85;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffcc66;
  color: #1a1d25;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #101421;
  color: #f7f7f7;
  padding: 16px 8%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hidden {
  display: none;
}

.simple-hero {
  padding: 80px 8% 40px;
  background: #f0ede6;
}

.simple-hero h1 {
  margin: 0;
  font-size: 2.4rem;
}

.content-block {
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
