* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f1;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --brand: #c8652b;
  --accent: #1f3a5f;
  --soft: #efe7df;
  --card: #ffffff;
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--muted);
  padding: 6px 10px;
  border-radius: 20px;
}

.hero {
  background: linear-gradient(rgba(15, 15, 15, 0.45), rgba(15, 15, 15, 0.45)), url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  color: #fff;
  padding: 80px 48px;
  margin-bottom: 40px;
}

.hero-inner {
  max-width: 520px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--brand);
  color: #fff;
  border-radius: 28px;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.section {
  padding: 40px 0;
}

.section-alt {
  background: var(--soft);
  border-radius: 28px;
  padding: 48px;
}

.bg-problem {
  background: linear-gradient(rgba(31, 58, 95, 0.75), rgba(31, 58, 95, 0.75)), url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-insight {
  background: linear-gradient(rgba(200, 101, 43, 0.75), rgba(200, 101, 43, 0.75)), url("https://images.unsplash.com/photo-1508609349937-5ec4ae374ebf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
  margin-bottom: 16px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 320px;
}

.image-box {
  border-radius: 24px;
  overflow: hidden;
  background: #d6d0c8;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border-radius: 22px;
  padding: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--accent);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.price-value {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8d0c7;
  font-size: 14px;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.legal-block {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  margin-top: 16px;
}

.thanks-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  padding: 30px 0 10px;
}

.page-title h1 {
  font-size: 34px;
}

.simple-section {
  padding: 20px 0 40px;
}

.simple-section h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.simple-section ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
