* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1f27;
  --muted: #555b6e;
  --soft: #f4f2ef;
  --accent: #0b6e4f;
  --accent-2: #1d4ed8;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(18, 23, 38, 0.08);
  --radius: 20px;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fcfbf9;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--soft);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.hero {
  padding: 60px 0 40px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--accent-2);
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.button:hover,
.button:focus {
  filter: brightness(1.05);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--soft);
}

.section-title {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 24px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  flex: 1 1 240px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 3px solid var(--accent-2);
  padding-left: 18px;
  color: var(--muted);
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d9d6cf;
  color: white;
  position: relative;
}

.bg-insight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 36, 0.6);
}

.bg-insight .container {
  position: relative;
  z-index: 1;
}

.form-box {
  background: white;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d4dd;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 40px 0 60px;
  background: #0f172a;
  color: #e2e8f0;
}

.footer .nav-links {
  justify-content: flex-start;
}

.footer .nav-links a:hover,
.footer .nav-links a:focus {
  background: rgba(255, 255, 255, 0.12);
}

.disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: #cbd5f5;
}

.info-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.info-grid > div {
  flex: 1 1 240px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 110, 79, 0.14);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.image-frame {
  background-color: #e4e1db;
  border-radius: var(--radius);
  overflow: hidden;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: white;
  box-shadow: var(--shadow);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  z-index: 20;
}

.sticky-cta button {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 50px 0 40px;
}

.page-hero img {
  height: 240px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-block {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }
}
