:root {
  color-scheme: light;
  --ink: #191a17;
  --muted: #6b6a62;
  --line: #d6d2c7;
  --paper: #f5f3ee;
  --panel: #fbfaf6;
  --moss: #596553;
  --deep: #20261f;
  --rose: #9d5f67;
  --stone: #e7e4db;
  --chalk: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

main {
  overflow: hidden;
}

section {
  padding: clamp(46px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.hero {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(89, 101, 83, 0.14), rgba(157, 95, 103, 0.1) 55%, rgba(251, 250, 246, 0.8)),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--deep);
  font-size: 14px;
}

nav span {
  color: var(--muted);
  text-align: right;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(32px, 7vw, 86px);
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--rose);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  font-family: "Avenir Next", Avenir, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 7.1vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 24px;
}

h2 {
  max-width: 780px;
  font-family: "Avenir Next", Avenir, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(32px, 4.9vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.intro,
.panel p,
article p,
.lead p {
  color: var(--muted);
  line-height: 1.65;
}

.intro {
  max-width: 670px;
  font-size: clamp(17px, 2vw, 21px);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--deep);
}

.primary {
  background: var(--deep);
  color: white;
}

.secondary {
  color: var(--deep);
  background: rgba(255, 253, 248, 0.62);
}

.enquiry-card {
  position: relative;
  padding: 18px;
  border: 1px solid #20261f;
  border-radius: 28px;
  background: var(--deep);
  box-shadow: 0 24px 80px rgba(32, 38, 31, 0.22);
}

.card-head {
  display: flex;
  gap: 6px;
  margin: 4px 0 20px;
}

.card-head span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd7cb;
  opacity: 0.9;
}

.lead {
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 17px;
  background: var(--chalk);
  animation: rise 720ms ease both;
}

.lead:nth-child(3) {
  animation-delay: 120ms;
}

.lead:nth-child(4) {
  animation-delay: 240ms;
}

.lead small {
  color: var(--rose);
  font-weight: 800;
  text-transform: uppercase;
}

.lead strong {
  display: block;
  margin: 8px 0;
  color: var(--deep);
}

.brand-strip {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand-strip p {
  margin: 0;
  color: var(--muted);
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chips span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
  font-size: 13px;
}

.capture {
  max-width: 1220px;
  margin: 0 auto;
}

.capture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

article {
  background: var(--panel);
  padding: clamp(22px, 4vw, 38px);
}

article span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--rose);
  font-weight: 900;
}

.whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--stone);
}

.panel {
  max-width: 720px;
}

.crm-card {
  background: var(--deep);
  color: white;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 22px 68px rgba(25, 26, 23, 0.17);
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
}

.row:last-child {
  border-bottom: 0;
}

.row span {
  color: #d8d4c9;
}

.row strong {
  text-align: right;
}

.faq {
  background: var(--panel);
  min-height: 50vh;
}

.questions {
  display: grid;
  gap: 10px;
  max-width: 780px;
}

button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--chalk);
  color: var(--ink);
  text-align: left;
  padding: 15px 18px;
  font: inherit;
  font-weight: 750;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 840px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .whatsapp {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .enquiry-card {
    max-width: 420px;
    width: 100%;
  }

  .brand-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .chips {
    justify-content: flex-start;
  }

  .capture-grid {
    grid-template-columns: 1fr;
  }

  .row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .row strong {
    text-align: left;
  }
}
*** Add File: /Users/ajnasnb/Documents/OpenClawWorkspace/cognifyr-demo-followups-2026-06-12/juliana-custers-preview/_headers
/*
  X-Robots-Tag: noindex
  Referrer-Policy: no-referrer
  X-Content-Type-Options: nosniff
