* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f5f2;
  --ink: #1f2a24;
  --muted: #5a6a61;
  --accent: #2f6f5e;
  --accent-soft: #cfe3da;
  --sand: #efe7dd;
  --coal: #101715;
  --card: #ffffff;
  --outline: #d8d5ce;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
  background: var(--bg);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 0 6vw;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 320px;
  background: var(--accent-soft);
  border-radius: 24px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 420px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover,
.btn:focus,
.link-accent:hover,
.link-accent:focus {
  filter: brightness(0.95);
}

.link-accent {
  color: var(--accent);
  font-weight: 600;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 0 6vw;
  align-items: stretch;
}

.split-panel {
  flex: 1 1 300px;
  background: var(--card);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-panel.dark {
  background: var(--coal);
  color: #f2f3f0;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--outline);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.img-frame {
  background: var(--sand);
}

.img-frame img {
  width: 100%;
  height: 180px;
}

.section-title {
  font-size: 1.8rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--outline);
  padding-bottom: 12px;
}

.story {
  background: var(--sand);
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.story-highlight img {
  width: 100%;
  height: 260px;
  border-radius: 18px;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f3;
  position: relative;
}

.bg-overlay {
  background: rgba(16, 23, 21, 0.72);
  padding: 56px 6vw;
}

.form-wrap {
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--outline);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--coal);
  color: #f6f5f2;
  padding: 16px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 5;
}

.sticky-cta a {
  color: #f6f5f2;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sand);
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-note {
  font-size: 0.85rem;
}

.page-hero {
  padding: 40px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.page-hero .img-frame img {
  height: 260px;
}

.content-block {
  padding: 0 6vw 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--outline);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(16, 23, 21, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  flex: 1;
}

.hidden {
  display: none;
}

.reference-list a {
  color: var(--accent);
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
