/* ===========================
   Renters' Rights Act — Styles
   =========================== */


/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #111827;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ---------- Utility ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 768px; margin: 0 auto; padding: 0 1.5rem; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }


.workflow__title, .impact__title, .demo-cta__title { 
  font-size: clamp(25px,6vw,48px);
 }


/* ---------- HERO ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero {
  min-height: 88vh; display: flex; flex-direction: column; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #f9fafb 0%, #fff 50%, #f9fafb 100%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__bg svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .12; }
.hero__blob {
  position: absolute; border-radius: 9999px; pointer-events: none; filter: blur(48px);
}
.hero__blob--1 { top: 40px; right: 40px; width: 500px; height: 500px; background: rgba(82,155,80,.08); }
.hero__blob--2 { bottom: 0; left: 0; width: 400px; height: 400px; background: rgba(96,165,250,.08); }
.hero__blob--3 { top: 50%; left: 33%; width: 300px; height: 300px; background: rgba(82,155,80,.05); }

.hero__nav-wrap { position: relative; z-index: 10; width: 100%; }
.hero__content {
  position: relative; z-index: 4; flex: 1; display: flex; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 8rem 1.5rem 4rem; width: 100%;
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }

/* Hero left */
.hero__title { font-size: clamp(32px,6vw,58px); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: #030712; margin-bottom: 1.25rem; }
.hero__subtitle { font-size: 17px; margin-bottom: 2rem; line-height: 1.6; max-width: 32rem; color: rgb(107,114,128); }
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: .75rem; }
.hero__cta-primary {
  display: inline-flex; align-items: center; padding: 14px 24px; font-size: 15px; font-weight: 700; color: #fff; border-radius: 12px;
  background: linear-gradient(135deg, #529B50, #3d7a3c); box-shadow: 0 4px 16px rgba(82,155,80,.35); transition: opacity .2s;
}
.hero__cta-primary:hover { opacity: .9; }
.hero__cta-secondary {
  display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 500; color: #4b5563; transition: color .2s;
}
.hero__cta-secondary:hover { color: #529B50; }
.hero__support { font-size: 14px; color: #6b7280; margin-top: 1.5rem; margin-bottom: 2rem; }

/* Hero right — visual */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; height: 480px; }
.hero__image-wrap {
  position: absolute; left: 32px; right: 32px; top: 0; bottom: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,.25);
}
.hero__image {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-image: url('https://images.unsplash.com/photo-1560185007-cde436f6a4d0?w=800&h=900&fit=crop');
}
.hero__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(17,24,39,.6), rgba(17,24,39,.4), rgba(17,24,39,.6));
}
.hero__image-label {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1.5rem;
}
.hero__rra-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; border-radius: 9999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); margin-bottom: .75rem;
}
.hero__rra-dot { width: 8px; height: 8px; border-radius: 50%; background: #529B50; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero__rra-badge span { font-size: 11px; font-weight: 600; color: #fff; letter-spacing: .04em; }
.hero__address { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.3; }
.hero__address-sub { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* Floating cards */
.floating-card {
  position: absolute; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08); z-index: 10; transition: box-shadow .3s, transform .3s, border-color .3s;
}
.floating-card:hover { box-shadow: 0 25px 50px rgba(0,0,0,.15); transform: scale(1.05) !important; border-color: rgba(82,155,80,.3); }
.floating-card--1 { top: 16px; left: 0; width: 224px; animation: float 3s ease-in-out infinite; }
.floating-card--2 { top: 50%; right: 0; transform: translateY(-50%); width: 240px; animation: float 4.2s ease-in-out infinite; animation-delay: 1.2s; }
.floating-card--3 { bottom: 16px; left: 50%; transform: translateX(-50%); width: 224px; animation: float 3.6s ease-in-out infinite; animation-delay: .6s; }
.fc__label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9ca3af; margin-bottom: 8px; }
.fc__row { display: flex; align-items: center; justify-content: space-between; padding: 0; }
.fc__row + .fc__row { margin-top: 8px; }
.fc__row-text { font-size: 12px; color: #374151; }
.fc__badge {
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px;
}
.fc__badge--green { background: #dcfce7; color: #15803d; }
.fc__badge--red { background: #fee2e2; color: #dc2626; }
.fc__badge--yellow { background: #fef9c3; color: #a16207; }

/* ---------- WHATS CHANGING ---------- */
.whats-changing { padding: 12px 0 16px; }
.whats-changing__card {
  background: linear-gradient(to bottom right, #0f172a, #020617, #000); border-radius: 24px; padding: 24px 32px;
  border: 1px solid rgba(255,255,255,.05);
}
.wc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
.wc__title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.65); margin-bottom: .75rem; }
.wc__desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 1.5rem; }
.wc__cta {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8);
  transition: color .2s;
}
.wc__cta:hover { color: #fff; text-decoration: underline; }
.wc__cta .fa { transition: transform .2s; }
.wc__cta:hover .fa { transform: translateX(8px); }
.wc__bullets { display: flex; align-items: center; }
.wc__bullet-list { display: grid; grid-template-columns: 1fr; gap: 8px; width: 100%; }
.wc__bullet {
  display: flex; align-items: flex-start; gap: 8px; padding: 8px 12px; border-radius: 8px; transition: background .2s, transform .2s;
}
.wc__bullet:hover { background: rgba(255,255,255,.05); transform: translateX(4px); }
.wc__bullet .fa { color: #4ade80; margin-top: 2px; font-size: 14px; flex-shrink: 0; }
.wc__bullet span { font-size: 13px; color: rgba(255,255,255,.9); line-height: 1.4; white-space: nowrap; }

/* ---------- WORKFLOW BLOCKS ---------- */
.workflow { padding: 6rem 0; background: #fff; }
.workflow__header { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.workflow__title { font-weight: 700; color: #030712; line-height: 1.15; margin-bottom: .75rem; }
.workflow__subtitle { font-size: 17px; line-height: 1.6; color: rgb(107,114,128); }

.workflow__system {
  background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 16px; box-shadow: 0 1px 3px rgba(0,0,0,.04); padding: 20px;
}
.workflow__sys-label { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #e5e7eb; }
.workflow__sys-dot { width: 8px; height: 8px; border-radius: 50%; background: #529B50; }
.workflow__sys-text { font-size: 11px; font-weight: 700; color: #4b5563; letter-spacing: .1em; text-transform: uppercase; }

.workflow__layout { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 1024px) { .workflow__layout { flex-direction: row; } }

/* Nav cards */
.workflow__nav { display: flex; flex-direction: row; gap: 8px; flex-shrink: 0; }
@media (min-width: 1024px) { .workflow__nav { flex-direction: column; width: 224px; } }
.wf-nav-btn {
  flex: 1; text-align: left; padding: 14px 16px; border-radius: 12px; border: 1px solid #e5e7eb;
  background: rgba(255,255,255,.6); transition: all .2s;
}
@media (min-width: 1024px) { .wf-nav-btn { flex: none; } }
.wf-nav-btn:hover { background: #fff; border-color: #d1d5db; }
.wf-nav-btn.active { background: #fff; border-color: #529B50; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.wf-nav-btn__inner { display: flex; align-items: center; gap: 12px; }
.wf-nav-btn__icon {
  width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s;
  background: #f3f4f6; color: #6b7280; font-size: 14px;
}
.wf-nav-btn.active .wf-nav-btn__icon { background: #529B50; color: #fff; }
.wf-nav-btn__num { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: #9ca3af; }
.wf-nav-btn.active .wf-nav-btn__num { color: #529B50; }
.wf-nav-btn__title { font-size: 13px; font-weight: 700; line-height: 1.2; color: #4b5563; }
.wf-nav-btn.active .wf-nav-btn__title { color: #111827; }

/* Detail panel */
.workflow__detail {
  flex: 1; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column; gap: 1.5rem;
}
@media (min-width: 1024px) { .workflow__detail { flex-direction: row; } }
.wf-detail__text { flex: 1; }
.wf-detail__num { font-size: 10px; font-weight: 700; color: #529B50; letter-spacing: .1em; margin-bottom: 4px; }
.wf-detail__title { font-size: 22px; font-weight: 700; color: #030712; margin-bottom: .75rem; }
.wf-detail__desc { font-size: 14px; color: #6b7280; line-height: 1.6; margin-bottom: 1.25rem; }
.wf-detail__bullets { list-style: none; }
.wf-detail__bullets li { display: flex; align-items: center; gap: 12px; }
.wf-detail__bullets li + li { margin-top: 10px; }
.wf-detail__bullet-dot {
  width: 20px; height: 20px; border-radius: 50%; background: rgba(82,155,80,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wf-detail__bullet-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #529B50; }
.wf-detail__bullets li span { font-size: 14px; font-weight: 500; color: #374151; }

/* Status panel */
.wf-status {
  width: 100%; flex-shrink: 0; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px;
}
@media (min-width: 1024px) { .wf-status { width: 256px; } }
.wf-status__label { font-size: 10px; font-weight: 700; color: #9ca3af; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.wf-status-row {
  display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f3f4f6;
}
.wf-status-row:last-child { border-bottom: none; }
.wf-status-row__left { display: flex; align-items: center; gap: 10px; }
.wf-status-row__left .fa { font-size: 14px; flex-shrink: 0; }
.wf-status-row__left span { font-size: 13px; font-weight: 600; color: #374151; }
.wf-status-badge {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 9999px; border: 1px solid; white-space: nowrap;
}
.badge-green { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.badge-red { background: #fee2e2; color: #dc2626; border-color: #fecaca; }
.badge-yellow { background: #fef3c7; color: #a16207; border-color: #fde68a; }
.badge-blue { background: #dbeafe; color: #1d4ed8; border-color: #bfdbfe; }
.icon-green { color: #22c55e; }
.icon-red { color: #ef4444; }
.icon-yellow { color: #f59e0b; }
.icon-blue { color: #3b82f6; }

/* Compliance bar */
.wf-compliance { padding-top: 8px; }
.wf-compliance__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.wf-compliance__left { display: flex; align-items: center; gap: 8px; }
.wf-compliance__left .fa { font-size: 14px; color: #3b82f6; }
.wf-compliance__left span { font-size: 13px; font-weight: 600; color: #374151; }
.wf-compliance__pct { font-size: 12px; font-weight: 700; color: #1d4ed8; }
.wf-compliance__track { width: 100%; height: 8px; background: #e5e7eb; border-radius: 9999px; overflow: hidden; }
.wf-compliance__fill { height: 100%; background: #3b82f6; border-radius: 9999px; width: 92%; }

.workflow__footer { font-size: 12.5px; color: #9ca3af; text-align: center; margin-top: 1rem; }

/* ---------- DAY TO DAY IMPACT ---------- */
.impact { padding: 6rem 0; background: linear-gradient(160deg, #fff 60%, #EDF4FF 100%); }
.impact__header { max-width: 56rem; margin: 0 auto 2.5rem; text-align: center; }
.impact__title { font-weight: 700; color: #030712; line-height: 1.15; margin-bottom: .75rem; }
.impact__subtitle { font-size: 17px; line-height: 1.6; color: rgb(107,114,128); }

.impact__table { max-width: 48rem; margin: 0 auto; }
.impact__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: .75rem; padding: 0 1rem; }
.impact__col-label { display: flex; align-items: center; gap: 8px; }
.impact__col-dot { width: 8px; height: 8px; border-radius: 50%; }
.impact__col-dot--red { background: #f87171; }
.impact__col-dot--green { background: #529B50; }
.impact__col-text { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #9ca3af; }

.impact__rows { display: flex; flex-direction: column; gap: 8px; }
.impact__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; background: #fff; border: 1px solid #e5e7eb;
  border-radius: 12px; padding: 16px; cursor: default; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.impact__row:hover { border-color: rgba(82,155,80,.4); box-shadow: 0 8px 24px rgba(0,0,0,.06); transform: translateY(-2px); }

.impact__cell { display: flex; align-items: center; gap: 12px; }
.impact__icon-wrap {
  width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.impact__icon-wrap--before { background: #fef2f2; border: 1px solid #fecaca; }
.impact__icon-wrap--before::after {
  content: ''; width: 6px; height: 2px; background: #f87171; border-radius: 9999px;
}
.impact__icon-wrap--after { background: rgba(82,155,80,.1); border: 1px solid rgba(82,155,80,.3); }
.impact__before-text { font-size: 14px; color: #9ca3af; text-decoration: line-through; }
.impact__after-text { font-size: 14px; font-weight: 500; color: #1f2937; }
.impact__check-svg { width: 10px; height: 10px; }
.impact__check-svg path { stroke: #529B50; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; fill: none; }

/* ---------- BUILT AROUND WORKFLOWS ---------- */
.built { padding: 6rem 0; background: #fff; }
.built__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.built__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; border-radius: 9999px;
  background: rgba(82,155,80,.1); border: 1px solid rgba(82,155,80,.2); margin-bottom: 1.5rem;
}
.built__badge span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #529B50; }
.built__title { font-size: 36px; font-weight: 700; color: #030712; line-height: 1.2; margin-bottom: 1.25rem; }
.built__desc { font-size: 17px; line-height: 1.6; color: rgb(107,114,128); margin-bottom: 2rem; }
.built__points li { display: flex; align-items: flex-start; gap: 12px; }
.built__points li + li { margin-top: 12px; }
.built__check-wrap {
  width: 20px; height: 20px; border-radius: 50%; background: rgba(82,155,80,.1); border: 1px solid rgba(82,155,80,.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.built__check-svg { width: 10px; height: 10px; }
.built__check-svg path { stroke: #529B50; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.built__points li span { font-size: 14px; font-weight: 500; color: #374151; }

/* Lifecycle stages */
.built__stages { display: flex; flex-direction: column; gap: 12px; }
.built__stage { position: relative; }
.built__stage-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: #f9fafb; border: 1px solid #e5e7eb;
  border-radius: 12px; cursor: default; transition: all .2s;
}
.built__stage-card:hover { border-color: rgba(82,155,80,.4); background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.06); transform: translateY(-2px); }
.built__stage-num {
  width: 28px; height: 28px; border-radius: 50%; background: #529B50; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 11px; font-weight: 700; color: #fff;
}
.built__stage-content { flex: 1; min-width: 0; }
.built__stage-label { font-size: 14px; font-weight: 700; color: #111827; }
.built__stage-note { font-size: 13px; color: #6b7280; margin-top: 2px; }
.built__stage-badge {
  flex-shrink: 0; font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 9999px;
  background: rgba(82,155,80,.1); color: #529B50; border: 1px solid rgba(82,155,80,.2);
}
.built__connector {
  position: absolute; left: 22px; top: 100%; width: 1px; height: 12px; background: #e5e7eb;
}

/* ---------- TRUST PARTNER ---------- */
.trust { padding: 8rem 0; background: #030712; }
.trust__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.trust__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; border-radius: 9999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); margin-bottom: 1.5rem;
}
.trust__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #529B50; }
.trust__badge span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }
.trust__title { font-size: 36px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 1.25rem; }
.trust__desc { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 1.5rem; }
.trust__link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #529B50; transition: color .2s;
}
.trust__link:hover { color: #7fb877; }
.trust__link .fa { font-size: 14px; }

.trust__cards { display: flex; flex-direction: column; gap: 12px; }
.trust__card {
  display: flex; gap: 16px; padding: 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05); cursor: default; transition: all .2s;
}
.trust__card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.trust__card-check {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(82,155,80,.2); border: 1px solid rgba(82,155,80,.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.trust__card-check svg { width: 12px; height: 12px; }
.trust__card-check svg path { stroke: #529B50; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.trust__card-label { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.trust__card-detail { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ---------- RESOURCES ---------- */
.resources { padding: 6rem 0; background: linear-gradient(160deg, #fff 60%, #EDF4FF 100%); }
.resources__header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .resources__header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.resources__header-left { max-width: 36rem; }
.resources__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; border-radius: 9999px;
  background: rgba(82,155,80,.1); border: 1px solid rgba(82,155,80,.2); margin-bottom: 1rem;
}
.resources__badge span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #529B50; }
.resources__title { font-size: 36px; font-weight: 700; color: #030712; line-height: 1.2; margin-bottom: .75rem; }
.resources__subtitle { font-size: 17px; line-height: 1.6; color: rgb(107,114,128); }
.resources__view-all {
  display: none; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #529B50;
  flex-shrink: 0; padding-bottom: 4px; transition: color .2s;
}
@media (min-width: 640px) { .resources__view-all { display: inline-flex; } }
.resources__view-all:hover { color: #3d7a3b; }
.resources__view-all .fa { font-size: 14px; }

.resources__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .resources__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .resources__grid { grid-template-columns: 1fr 1fr 1fr; } }

.resource-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.resource-card:hover { border-color: #d1d5db; box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.resource-card__img { height: 176px; overflow: hidden; background: #f3f4f6; }
.resource-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.resource-card:hover .resource-card__img img { transform: scale(1.05); }
.resource-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.resource-card__tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #529B50; margin-bottom: 12px; display: block; }
.resource-card__title { font-size: 15px; font-weight: 700; color: #111827; line-height: 1.35; margin-bottom: 8px; transition: color .2s; }
.resource-card:hover .resource-card__title { color: #529B50; }
.resource-card__desc { font-size: 13px; color: #6b7280; line-height: 1.5; flex: 1; }
.resource-card__read {
  display: flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 12px; font-weight: 600; color: #9ca3af; transition: color .2s;
}
.resource-card:hover .resource-card__read { color: #529B50; }
.resource-card__read .fa { font-size: 12px; }

.resources__mobile-cta { margin-top: 2rem; display: flex; justify-content: center; }
@media (min-width: 640px) { .resources__mobile-cta { display: none; } }
.resources__mobile-cta a {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #529B50; transition: color .2s;
}
.resources__mobile-cta a:hover { color: #3d7a3b; }
.resources__mobile-cta .fa { font-size: 14px; }

/* ---------- DEMO CTA ---------- */
.demo-cta { padding: 6rem 0 8rem; background: #fff; }
.demo-cta__inner { max-width: 640px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.demo-cta__title { font-weight: 700; line-height: 1.15; color: #030712; margin-bottom: 1rem; }
.demo-cta__points { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.demo-cta__point { display: flex; align-items: center; gap: 8px; }
.demo-cta__point .fa { font-size: 14px; color: #529B50; }
.demo-cta__point span { font-size: 14px; color: #374151; }
.demo-cta__btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: #529B50; color: #fff;
  font-size: 15px; font-weight: 600; border-radius: 12px; transition: background .2s;
}
.demo-cta__btn:hover { background: #3d7a3c; }
.demo-cta__btn .fa { font-size: 14px; }
.demo-cta__trust { font-size: 14px; color: #9ca3af; margin-top: 2rem; }

/* ---------- ANIMATIONS (scroll reveal) ---------- */
.reveal {
  opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1023px) {
  .hero__grid { grid-template-columns: 1fr; }
  /* .hero__visual { display: none; } */
  
  .wc__grid { grid-template-columns: 1fr; }
  .built__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  
  .built__title, .trust__title, .resources__title { font-size: 28px; }

  /* Workflow nav — 2x2 grid on tablet */
  .workflow__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .wf-nav-btn { flex: none; }
}
@media (max-width: 767px) {
  .top-banner__inner{
    gap:0.5rem;
  }
  .top-banner{
    padding: 1rem;
  }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__mobile-toggle { display: block; }
  .impact__cols, .impact__row { grid-template-columns: 1fr; }
  .impact__row { gap: 8px; }
  .demo-cta__points { flex-direction: column; align-items: flex-start; gap: 8px; padding-left: 1rem; }

  /* Workflow nav — full-width stacked vertical on mobile */
  .workflow__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .wf-nav-btn {
    flex: none;
    width: 100%;
    padding: 12px 14px;
  }
  .wf-nav-btn__num { display: none; }
  .wf-nav-btn__title { font-size: 13px; }
  .wf-nav-btn__icon { width: 28px; height: 28px; font-size: 13px; }
  .workflow__subtitle,.impact__subtitle,.built__desc,
  .trust__desc,.resources__subtitle{
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .hero__visual{
    display: none;
  }
  .built__stage-card{
    flex-direction: column;
  }
  .built__title, .trust__title, .resources__title {
      font-size: 22px;
  }
  .hero__title span{
    white-space: normal!important;
  }
  .whats-changing__card{
    padding: 15px;
  }
  .workflow__system{
    padding: 10px;
  }
}
