* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  font-weight: 600;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.link-inline {
  color: #0e646d;
  text-decoration: underline;
}

.nav-links a:hover,
.btn:hover,
.link-inline:hover {
  color: #0b5c62;
}

.ad-label {
  font-size: 0.82rem;
  color: #6b7280;
  background: #ece7e1;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 0 80px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1 1 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.lead {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0e646d;
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: #f2b04c;
  color: #1f2933;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #0e646d;
  color: #0e646d;
}

.gap-tight {
  gap: 14px;
}

.mt-lg {
  margin-top: 28px;
}

.mt-md {
  margin-top: 16px;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 16px;
}

.muted {
  color: #6b7280;
}

.image-wrap {
  border-radius: 22px;
  overflow: hidden;
  background-color: #dcd6cf;
  min-height: 280px;
}

.tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7b8794;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 34px rgba(31, 41, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: #0e646d;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d5d0c8;
  color: #fdf9f4;
}

.bg-insight .container {
  background: rgba(20, 20, 20, 0.55);
  border-radius: 24px;
  padding: 40px;
}

.bg-proof {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cfe0e2;
}

.bg-proof .proof-inner {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 36px;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.list-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-check span {
  color: #0e646d;
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(31, 41, 51, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.form-status {
  min-height: 20px;
  color: #b42318;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 32px rgba(31, 41, 51, 0.12);
  width: min(320px, 90vw);
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.site-footer {
  background: #1f2933;
  color: #f8fafc;
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a:hover {
  color: #f2b04c;
}

.disclaimer {
  font-size: 0.86rem;
  color: #cbd5e1;
  margin-top: 18px;
}

.two-column {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.panel {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 24px rgba(31, 41, 51, 0.08);
}

@media (max-width: 900px) {
  .split,
  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
