* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #101828;
  background: #f6f7fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  background: #f6f7fb;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 18px 0;
  background: #ffffff;
  border-bottom: 1px solid #e4e7ec;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #475467;
  background: #f2f4f7;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background-image: linear-gradient(120deg, rgba(16, 24, 40, 0.75), rgba(16, 24, 40, 0.2)), url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 88px 0 110px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  margin: 0;
}

.hero p {
  font-size: 18px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.primary {
  background: #f04438;
  color: #ffffff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #ffffff;
}

.section.soft {
  background: #f2f4f7;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-text h2 {
  margin: 0;
  font-size: 28px;
}

.split-text p {
  margin: 0;
}

.image-card {
  flex: 1 1 280px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #e1e7ef;
  min-height: 260px;
  display: flex;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #e4e7ec;
  font-size: 14px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 180px;
  border: 1px solid #eaecf0;
}

.stat strong {
  display: block;
  font-size: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e4e7ec;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 160px;
  object-fit: cover;
  background-color: #e1e7ef;
}

.inline-link {
  color: #2563eb;
  text-decoration: underline;
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.65);
}

.section-bg .container {
  position: relative;
}

.pricing-reveal {
  background-image: url("https://images.unsplash.com/photo-1770656505709-fd97236989b9?w=1400&q=80");
}

.trust-bg {
  background-image: url("https://images.unsplash.com/photo-1768352725353-d498db8a1722?w=1400&q=80");
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  background: #ffffff;
  color: #101828;
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  border: 1px solid #e4e7ec;
}

.price-row span {
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
  font-size: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d5dd;
  font-family: inherit;
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: #475467;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #101828;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  background: #f04438;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.footer {
  background: #101828;
  color: #ffffff;
  padding: 40px 0 60px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d0d5dd;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.2);
  border: 1px solid #eaecf0;
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 10px 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #12b76a;
  color: #ffffff;
}

.cookie-reject {
  background: #f2f4f7;
  color: #101828;
  border: 1px solid #d0d5dd;
}

.simple-hero {
  background: #101828;
  color: #ffffff;
  padding: 60px 0;
}

.simple-hero h1 {
  margin: 0;
  font-size: 34px;
}

.detail-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.detail-box {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e4e7ec;
}

@media (max-width: 760px) {
  .hero {
    padding: 70px 0;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
