:root {
  --ink-900: #102720;
  --ink-800: #173a30;
  --ink-700: #245043;
  --ink-600: #2f6758;
  --ink-500: #3f7d6b;
  --brand-gold: #bb9553;
  --brand-gold-dark: #8f6b34;
  --sand-100: #f5f2ea;
  --sand-200: #ece6d9;
  --sand-300: #ddd3bf;
  --slate-100: #f1f4f3;
  --slate-200: #dde5e2;
  --slate-400: #8ca29b;
  --slate-600: #567068;
  --white: #ffffff;
  --danger: #a33e2a;
  --success: #2a7b4f;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 8px 24px rgba(16, 39, 32, 0.08);
  --shadow-md: 0 14px 36px rgba(16, 39, 32, 0.12);
  --shadow-lg: 0 18px 60px rgba(16, 39, 32, 0.16);
  --transition: 240ms ease;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink-900);
  background: linear-gradient(180deg, #f7f3eb 0%, #f3f1ec 35%, #f7f5ef 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(var(--content-width), 100% - 40px);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, #fbfaf6 0%, #f0ece1 100%);
}

.section-dark {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 100%);
  color: var(--white);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 38px;
  max-width: 760px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-700);
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--brand-gold);
}

.section-dark .eyebrow {
  color: #d3dfdb;
}

.section-dark .eyebrow::before {
  background: #c8aa78;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.18;
  color: inherit;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.65rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  color: var(--slate-600);
  font-size: 1.02rem;
}

.section-dark p {
  color: #d4dfdc;
}

ul,
ol {
  color: var(--slate-600);
}

.lead {
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-700);
}

.section-dark .lead {
  color: #e4ecea;
}

.highlight {
  color: var(--brand-gold-dark);
}

.kicker {
  font-weight: 700;
  color: var(--ink-700);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  backdrop-filter: blur(12px);
  background: rgba(247, 243, 235, 0.9);
  border-bottom: 1px solid rgba(36, 80, 67, 0.12);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(247, 243, 235, 0.96);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--ink-800), var(--ink-600));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink-900);
}

.brand-subtitle {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-600);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--ink-800);
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.site-nav a:hover,
.site-nav a.current {
  color: var(--ink-500);
  border-color: var(--ink-500);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(36, 80, 67, 0.25);
  background: transparent;
  border-radius: var(--radius-xs);
  padding: 9px 11px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 162px;
  padding-bottom: 92px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px 0 auto;
  height: 480px;
  background:
    radial-gradient(circle at 18% 22%, rgba(187, 149, 83, 0.28), transparent 52%),
    radial-gradient(circle at 82% 6%, rgba(63, 125, 107, 0.23), transparent 48%),
    linear-gradient(180deg, #f5f0e4, rgba(245, 240, 228, 0));
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero h1 {
  max-width: 14ch;
}

.hero p {
  max-width: 56ch;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(36, 80, 67, 0.14);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-weight: 700;
  color: var(--ink-700);
  width: fit-content;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}

.meta-item {
  display: grid;
  gap: 3px;
}

.meta-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink-900);
}

.meta-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-600);
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  min-height: 460px;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 80, 67, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  max-width: 220px;
}

.hero-card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--ink-900);
  margin-bottom: 2px;
}

.hero-card p {
  font-size: 0.88rem;
  color: var(--slate-600);
}

.hero-card.top {
  top: 18px;
  right: 18px;
}

.hero-card.bottom {
  left: -18px;
  bottom: 18px;
}

.btn {
  border: 0;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 750;
  letter-spacing: 0.01em;
  padding: 13px 24px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(140deg, var(--ink-800), var(--ink-500));
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(36, 80, 67, 0.24);
  color: var(--ink-800);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(36, 80, 67, 0.24);
  color: var(--ink-700);
}

.btn-large {
  padding: 16px 28px;
  font-size: 1rem;
}

.trust-strip {
  margin-top: 42px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(36, 80, 67, 0.14);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}

.trust-title {
  font-weight: 800;
  color: var(--ink-800);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px;
}

.logo-chip {
  background: var(--sand-100);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-xs);
  padding: 14px 10px;
  text-align: center;
  font-weight: 700;
  color: var(--ink-700);
  font-size: 0.86rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(36, 80, 67, 0.14);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.card.soft {
  background: linear-gradient(165deg, #ffffff 0%, #f8f3e8 100%);
}

.card.dark {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.18);
}

.card h3,
.card h4 {
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 14px;
}

.card ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.card ul li {
  color: var(--slate-600);
  font-size: 0.96rem;
}

.section-dark .card ul li {
  color: #d9e4e1;
}

.label {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 6px 11px;
  background: var(--sand-100);
  border: 1px solid var(--sand-300);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-dark .label {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #e4ece9;
}

.stats-band {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-box {
  background: var(--white);
  border: 1px solid rgba(36, 80, 67, 0.12);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.stat-text {
  font-size: 0.86rem;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.problem-solution {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 24px;
}

.problem-list,
.solution-list {
  display: grid;
  gap: 14px;
}

.list-item {
  background: var(--white);
  border: 1px solid rgba(36, 80, 67, 0.14);
  border-radius: var(--radius-sm);
  padding: 16px 16px 16px 18px;
  box-shadow: var(--shadow-sm);
}

.list-item strong {
  display: block;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.list-item.problem {
  border-left: 4px solid #a44e3b;
}

.list-item.solution {
  border-left: 4px solid var(--success);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  background: var(--white);
  border: 1px solid rgba(36, 80, 67, 0.14);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.step-no {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--ink-800);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.impact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 16px;
}

.chart-card,
.testimonial-panel {
  background: var(--white);
  border: 1px solid rgba(36, 80, 67, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.chart-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.chart-row {
  display: grid;
  gap: 6px;
}

.chart-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.92rem;
  color: var(--ink-700);
  font-weight: 700;
}

.track {
  width: 100%;
  height: 13px;
  border-radius: var(--radius-pill);
  background: var(--slate-200);
  overflow: hidden;
}

.fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ink-600), var(--brand-gold));
}

.quote {
  font-size: 1.03rem;
  color: var(--ink-700);
  line-height: 1.75;
}

.person {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
}

.person img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.person strong {
  display: block;
  color: var(--ink-900);
}

.person span {
  color: var(--slate-600);
  font-size: 0.9rem;
}

.rating-text {
  margin-top: 8px;
  color: var(--ink-700);
  font-weight: 700;
  font-size: 0.88rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card img {
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  height: 182px;
  width: 100%;
  object-fit: cover;
}

.product-features {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.product-features li {
  background: var(--sand-100);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-xs);
  padding: 8px 10px;
  font-size: 0.88rem;
}

.split-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.partner-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.partner-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: #e7eeec;
}

.partner-tile strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.form-shell {
  background: var(--white);
  border: 1px solid rgba(36, 80, 67, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-shell label {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--ink-700);
  font-weight: 700;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  border: 1px solid rgba(36, 80, 67, 0.2);
  background: #fff;
  border-radius: var(--radius-xs);
  padding: 12px 13px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-shell input:focus,
.form-shell select:focus,
.form-shell textarea:focus {
  outline: 0;
  border-color: var(--ink-600);
  box-shadow: 0 0 0 3px rgba(47, 103, 88, 0.14);
}

.form-shell textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--slate-600);
}

.form-feedback {
  margin-top: 12px;
  font-size: 0.94rem;
  color: var(--success);
  font-weight: 700;
  display: none;
}

.form-feedback.error {
  color: var(--danger);
}

.waitlist-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline .item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(36, 80, 67, 0.14);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.timeline .item .time {
  background: var(--sand-100);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-xs);
  text-align: center;
  font-size: 0.8rem;
  padding: 8px 4px;
  color: var(--ink-700);
  font-weight: 700;
}

.timeline .item p {
  font-size: 0.92rem;
  margin: 0;
}

.cta-band {
  margin-top: 30px;
  background: linear-gradient(145deg, var(--ink-800) 0%, var(--ink-600) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.cta-band p {
  color: #deebe7;
}

.page-hero {
  padding-top: 152px;
  padding-bottom: 66px;
  background:
    radial-gradient(circle at 12% 20%, rgba(187, 149, 83, 0.22), transparent 50%),
    radial-gradient(circle at 85% 4%, rgba(63, 125, 107, 0.18), transparent 47%),
    linear-gradient(180deg, #f6f2e9, #f2efe8);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 28px;
  align-items: center;
}

.page-hero img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-height: 280px;
  object-fit: cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.83rem;
  color: var(--ink-700);
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--ink-600);
}

.metrics-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid rgba(36, 80, 67, 0.14);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.metrics-table th,
.metrics-table td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(36, 80, 67, 0.11);
}

.metrics-table th {
  background: var(--sand-100);
  color: var(--ink-800);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metrics-table tr:last-child td {
  border-bottom: 0;
}

.article-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
}

.article-card {
  background: var(--white);
  border: 1px solid rgba(36, 80, 67, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.article-card img {
  border-radius: var(--radius-sm);
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  margin-bottom: 16px;
}

.article-meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  margin-bottom: 10px;
  font-weight: 800;
}

.article-card h1,
.article-card h2,
.article-card h3 {
  margin-top: 14px;
  margin-bottom: 10px;
}

.article-card p,
.article-card li {
  font-size: 0.98rem;
  color: var(--slate-600);
}

.article-card ul,
.article-card ol {
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.side-list {
  display: grid;
  gap: 14px;
}

.side-item {
  background: var(--white);
  border: 1px solid rgba(36, 80, 67, 0.14);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.side-item strong {
  display: block;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.side-item p {
  font-size: 0.9rem;
  margin: 0;
}

.contact-panels {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
}

.info-stack {
  display: grid;
  gap: 12px;
}

.info-box {
  background: var(--white);
  border: 1px solid rgba(36, 80, 67, 0.14);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.info-box h4 {
  margin-bottom: 6px;
}

.info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.footer {
  background: linear-gradient(180deg, #112b23 0%, #0d221c 100%);
  color: var(--white);
  margin-top: 90px;
  padding-top: 58px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 22px;
}

.footer p,
.footer li,
.footer a {
  color: #cbddd7;
  font-size: 0.92rem;
}

.footer a:hover {
  color: #f2e3c8;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 24px;
  padding: 16px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-mini-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.footer-mini-form input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xs);
  padding: 10px 12px;
  color: #f5fbf9;
  min-width: 170px;
}

.footer-mini-form input::placeholder {
  color: #d3dfdb;
}

.footer-mini-form button {
  border: 0;
  border-radius: var(--radius-xs);
  background: #c3a068;
  color: #1b271f;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  border-radius: var(--radius-pill);
  background: #d5b17a;
  color: #1d2a22;
  padding: 11px 15px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(17, 43, 35, 0.18);
}

.whatsapp-fab:hover {
  transform: translateY(-1px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

body.is-ready [data-reveal] {
  animation: revealUp 520ms ease forwards;
}

body.is-ready [data-reveal][data-delay="80"] {
  animation-delay: 80ms;
}

body.is-ready [data-reveal][data-delay="160"] {
  animation-delay: 160ms;
}

body.is-ready [data-reveal][data-delay="240"] {
  animation-delay: 240ms;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1150px) {
  .hero-grid,
  .page-hero-grid,
  .article-grid,
  .contact-panels,
  .impact-wrap,
  .waitlist-highlight {
    grid-template-columns: 1fr;
  }

  .hero-visual img,
  .page-hero img {
    min-height: 320px;
  }

  .hero-card.bottom {
    left: 16px;
  }

  .partner-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: rgba(247, 243, 235, 0.98);
    border-top: 1px solid rgba(36, 80, 67, 0.1);
    padding: 16px 20px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .grid-3,
  .grid-2,
  .process-grid,
  .product-grid,
  .split-benefits,
  .problem-solution,
  .stats-band,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer {
    margin-top: 70px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--content-width), 100% - 28px);
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-cta .btn,
  .btn-large {
    width: 100%;
  }

  .hero-card {
    position: static;
    margin-top: 10px;
    max-width: 100%;
  }

  .hero-visual {
    display: grid;
    gap: 8px;
  }

  .whatsapp-fab {
    right: 12px;
    bottom: 12px;
    font-size: 0.84rem;
  }

  .footer-mini-form {
    flex-direction: column;
  }

  .footer-mini-form input,
  .footer-mini-form button {
    width: 100%;
  }
}



