/* ============================================================
   SISONKE MARKETING SITE — styles.css
   Self-contained. No external dependencies.
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --forest:       #0F2419;
  --forest-mid:   #1b5a40;
  --forest-light: #2d6a3b;
  --sage:         #4A7C5C;
  --gold:         #C9922A;
  --gold-light:   #E8B84B;
  --gold-pale:    #FBF0D9;
  --cream:        #FAF7F2;
  --cream-alt:    #F2EDE4;
  --white:        #FFFFFF;
  --text:         #1A1A1A;
  --muted:        #6B7280;
  --border:       #E2D9CE;
  --shadow-sm:    0 1px 4px rgba(15,36,25,.07), 0 1px 2px rgba(15,36,25,.04);
  --shadow:       0 4px 16px rgba(15,36,25,.09), 0 2px 6px rgba(15,36,25,.05);
  --shadow-md:    0 10px 36px rgba(15,36,25,.13), 0 4px 12px rgba(15,36,25,.07);
  --radius:       1rem;
  --radius-sm:    0.5rem;
  --max-w:        1200px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont,
               'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
ul    { list-style: none; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
em    { font-style: italic; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}
.section        { padding: 5.5rem 0; }
.section-white  { background: var(--white); }
.section-forest {
  background:
    radial-gradient(circle at 20% 80%, rgba(201,146,42,.13), transparent 50%),
    linear-gradient(135deg, var(--forest) 0%, #1a3c2a 100%);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.section-white .section-header h2,
.section-forest .section-header h2 {
  color: inherit;
}
.section-forest .section-header h2 { color: #fff; }
.section-forest .section-header p  { color: rgba(255,255,255,.72); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.5rem;
  border-radius: .5rem;
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-lg   { padding: .95rem 2.25rem; font-size: 1rem; border-radius: .625rem; }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(201,146,42,.38);
}
.btn-light {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btn-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}
.btn-forest {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.btn-forest:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  transform: translateY(-1px);
}

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: .3rem .85rem;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.badge-gold {
  background: rgba(201,146,42,.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,146,42,.32);
}

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--forest);
  color: #fff;
  padding: .5rem 1rem;
  font-size: .9rem;
  z-index: 9999;
  border-radius: 0 0 .5rem 0;
}
.skip-link:focus { top: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,247,242,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.nav-logo {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--forest);
  border-radius: .45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  user-select: none;
}
.nav-name {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
}
.nav-tagline {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-links a {
  padding: .475rem .8rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: .4rem;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--forest); background: var(--cream-alt); }
.nav-cta {
  background: var(--forest) !important;
  color: #fff !important;
  padding: .475rem 1.1rem !important;
  border-radius: .45rem !important;
  font-weight: 700 !important;
  margin-left: .4rem;
}
.nav-cta:hover { background: var(--forest-mid) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(ellipse at 85% 15%, rgba(201,146,42,.18) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 85%, rgba(45,106,59,.35) 0%, transparent 50%),
    linear-gradient(145deg, var(--forest) 0%, #1a3c2a 55%, #0d2218 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.5rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  color: #fff;
}
.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.45;
  color: rgba(255,255,255,.9);
  max-width: 480px;
}
.hero-subtitle em { color: var(--gold-light); }
.hero-copy {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,.68);
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: .5rem;
}

/* Mock workspace visual */
.mock-workspace {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.25rem;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}
.mock-titlebar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}
.mock-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}
.mock-dot.r { background: #fc5454; }
.mock-dot.y { background: #febc2e; }
.mock-dot.g { background: #28c840; }
.mock-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}
.mock-stat {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  padding: .875rem 1rem;
}
.mock-stat-label {
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.5);
  margin-bottom: .3rem;
}
.mock-stat-value {
  font-size: 1.625rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.mock-stat-value.accent { color: var(--gold-light); }
.mock-task {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .55rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.mock-pip {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-pip.warn   { background: var(--gold-light); }
.mock-pip.ok     { background: #4ade80; }
.mock-pip.info   { background: #60a5fa; }

/* ============================================================
   TRUST / PROBLEM
   ============================================================ */
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}
.trust-text h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.trust-text p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}
.trust-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trust-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}
.trust-num {
  display: block;
  font-family: Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: .35rem;
}
.trust-lbl {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(201,146,42,.35);
}
.feature-icon {
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.feature-card h3 {
  font-family: Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: .625rem;
  line-height: 1.3;
}
.feature-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   ROLES
   ============================================================ */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.role-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.role-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(201,146,42,.35);
  transform: translateY(-2px);
}
.role-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 1rem;
}
.role-card h3 {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: .5rem;
}
.role-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   WORKFLOW
   ============================================================ */
.workflow-track {
  display: flex;
  position: relative;
  padding-bottom: 1rem;
}
/* Horizontal connector line through all circles */
.workflow-track::before {
  content: '';
  position: absolute;
  top: 1.5rem;          /* half of 3rem circle */
  left: calc(10% + 1.5rem);
  right: calc(10% + 1.5rem);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.workflow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
  padding: 0 .5rem;
}
.wf-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--forest);
}
.wf-circle-final {
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 0 0 2px var(--gold);
}
.wf-body strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: .3rem;
  line-height: 1.3;
}
.wf-body span {
  display: block;
  font-size: .8375rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   WHY SISONKE
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.why-item:hover {
  border-color: rgba(201,146,42,.4);
  box-shadow: var(--shadow);
}
.why-check {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background: var(--gold-pale);
  border: 2px solid rgba(201,146,42,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 900;
  font-size: .875rem;
}
.why-item h3 {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: .45rem;
  line-height: 1.3;
}
.why-item p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.pricing-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pricing-featured {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  transform: scale(1.03);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-3px); }
.pricing-ribbon {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .22rem .7rem;
  border-radius: 99px;
  margin-bottom: .875rem;
}
.pricing-tier {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.pricing-amount {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 1rem;
  line-height: 1;
}
.pricing-featured .pricing-amount { color: var(--gold-light); }
.pricing-desc {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.pricing-featured .pricing-desc { color: rgba(255,255,255,.68); }
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.pricing-list li {
  font-size: .9rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.45;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
  font-size: .85rem;
}
.pricing-featured .pricing-list li { color: rgba(255,255,255,.78); }
.pricing-featured .pricing-list li::before { color: var(--gold-light); }

/* ============================================================
   CTA
   ============================================================ */
.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.cta-inner > p {
  color: rgba(255,255,255,.72);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.cta-email-line {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
}
.cta-email-line a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: .2em;
}
.cta-email-line a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest);
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.footer-logo {
  width: 2rem;
  height: 2rem;
  background: var(--gold);
  border-radius: .35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--forest);
  flex-shrink: 0;
}
.footer-name {
  display: block;
  font-family: Georgia, serif;
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.footer-tag {
  display: block;
  font-size: .6375rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.footer-copy {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .roles-grid    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .trust-inner      { grid-template-columns: 1fr; }
  .trust-stats      { flex-direction: row; flex-wrap: wrap; }
  .trust-stat       { flex: 1; min-width: 140px; }
  .why-grid         { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-3px); }
}

@media (max-width: 768px) {
  .section   { padding: 3.75rem 0; }
  .container { padding: 0 1.125rem; }

  .features-grid { grid-template-columns: 1fr; }
  .roles-grid    { grid-template-columns: repeat(2, 1fr); }

  /* Workflow → vertical on mobile */
  .workflow-track { flex-direction: column; gap: 0; }
  .workflow-track::before { display: none; }
  .workflow-step {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    padding: 0 0 2rem;
    position: relative;
  }
  .workflow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.4375rem;   /* centre of 3rem circle */
    top: 3rem;
    width: 2px;
    bottom: 0;
    background: var(--border);
    z-index: 0;
  }
  .wf-circle { flex-shrink: 0; }
  .wf-body   { padding-top: .5rem; }

  /* Nav: hide text links, keep CTA */
  .nav-links a:not(.nav-cta) { display: none; }

  .hero { padding: 4rem 0 3.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .roles-grid   { grid-template-columns: 1fr; }
  .trust-stats  { flex-direction: column; }
  .cta-actions  { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}

/* ============================================================
   SOLUTION MODELS SECTION
   ============================================================ */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.model-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--forest);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow .22s, transform .22s;
}

.model-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Distinct top-border accent per model type */
.model-card:nth-child(2) { border-top-color: var(--gold); }
.model-card:nth-child(3) { border-top-color: #4A7C5C; }
.model-card:nth-child(4) { border-top-color: #2563EB; }
.model-card:nth-child(5) { border-top-color: #7C3AED; }
.model-card:nth-child(6) { border-top-color: #0F766E; }

.model-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .22rem .7rem;
  border-radius: 99px;
  margin-bottom: .875rem;
}

.model-tag-active {
  background: var(--gold-pale);
  color: #7b5209;
  border: 1px solid rgba(201,146,42,.32);
}

.model-tag-future {
  background: #f1f2f4;
  color: var(--muted);
  border: 1px solid var(--border);
}

.model-icon {
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: .875rem;
  display: block;
}

.model-card h3 {
  font-family: Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: .5rem;
  line-height: 1.25;
}

.model-card > p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.model-features {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.model-features li {
  font-size: .84rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.45;
}

.model-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Footer: PEO Capital Holdings ───────────────────────── */
.footer-right {
  text-align: right;
}

.footer-peo {
  font-size: .875rem;
  color: rgba(255,255,255,.68);
  margin-bottom: .2rem;
}

/* ── Responsive additions ───────────────────────────────── */
@media (max-width: 900px) {
  .models-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .models-grid { grid-template-columns: 1fr; }
}
