@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1f2428;
  --muted: #5c6670;
  --accent: #1b5c4b;
  --accent-soft: #e6f0ed;
  --sand: #f4f1ec;
  --deep: #0e1e1c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 7vw 16px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 230px;
  text-align: right;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #142022;
  color: #fff;
  padding: 140px 7vw 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 19, 22, 0.82), rgba(12, 19, 22, 0.35));
}

.hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: #fff;
  color: var(--deep);
  font-weight: 600;
  border-radius: 999px;
  width: fit-content;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 70px 7vw 90px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 1.9rem;
  margin: 0;
}

.split {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background: var(--sand);
  padding: 12px;
}

.pull-quote {
  background: var(--accent-soft);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-band {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1c2c2a;
  color: #fff;
  padding: 60px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.insight-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 19, 22, 0.55);
}

.insight-band > * {
  position: relative;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.card-media {
  background: #dde3e1;
}

.card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-content h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card-content p {
  margin: 0;
  color: var(--muted);
}

.card-content .price {
  font-weight: 700;
  color: var(--deep);
}

.service-selectors {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.service-selectors button {
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.form-wrap {
  background: var(--sand);
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6d3;
  font-size: 1rem;
  font-family: inherit;
}

.submit-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  background: var(--deep);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

footer {
  background: var(--deep);
  color: #e7eceb;
  padding: 50px 7vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid div {
  flex: 1 1 220px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cbd3d1;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  padding: 18px 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.page-hero {
  padding: 100px 7vw 70px;
  background: var(--accent-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-hero img {
  border-radius: 18px;
}

.plain-section {
  padding: 60px 7vw 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal {
  max-width: 840px;
}
