* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1b1a;
  --muted: #5f5a55;
  --paper: #f6f1ec;
  --sand: #efe6dd;
  --clay: #d9c6b2;
  --accent: #2f6f6d;
  --accent-dark: #1f4f4d;
  --line: #e3d6ca;
}

body {
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.topbar .nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  border: 1px dashed var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55)),
    url("https://images.unsplash.com/photo-1721901945499-8fd5c1446b21?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 90px 0 70px;
}

.hero .hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--paper);
}

.section.clay {
  background: var(--sand);
}

.section-title {
  font-size: 26px;
  margin-bottom: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 300px;
}

.image-frame {
  background: var(--clay);
  padding: 12px;
  border-radius: 20px;
}

.image-frame img {
  border-radius: 14px;
}

.callout {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pill {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 160px;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  color: var(--muted);
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-margin {
  margin-top: 20px;
}

.price-card {
  flex: 1 1 250px;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 20px;
  background: #fff;
}

.price-card h3 {
  margin-bottom: 8px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 4;
}

.footer {
  padding: 40px 0;
  background: #1d1b1a;
  color: #f8f5f1;
}

.footer a {
  color: #f8f5f1;
}

.footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-note {
  margin-top: 24px;
}
.footer small {
  color: #d4ccc4;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.hero-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

.bg-insight {
  background: linear-gradient(120deg, #fff, #f4eee8),
    url("https://images.unsplash.com/photo-1644916925497-109cbd92087d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7)),
    url("https://images.unsplash.com/photo-1596180744691-d19a1b90b53c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-reveal {
  background: linear-gradient(120deg, #f7f2ed, #ffffff);
}

.center {
  text-align: center;
}

.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 780px;
}

.legal h2 {
  margin-top: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-grid > div {
  flex: 1 1 240px;
}

.services-hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7)),
    url("https://images.unsplash.com/photo-1595515770294-38a01e2ac4dd?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 70px 0;
}

.about-hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7)),
    url("https://images.unsplash.com/photo-1595514535316-b8c85bf9bbf9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 70px 0;
}

.contact-hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7)),
    url("https://images.unsplash.com/photo-1599619347579-70949794e139?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 70px 0;
}

.tool-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.tool-card {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.tool-card img {
  height: 170px;
  border-radius: 12px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
