/* ═══════════════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════════════ */
:root {
  --green:       #10B981;
  --green-dark:  #059669;
  --green-light: #D1FAE5;
  --navy:        #1E293B;
  --navy-dark:   #0F172A;
  --slate:       #64748B;
  --slate-50:    #F8FAFC;
  --white:       #FFFFFF;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);
  --transition:  .2s ease;
}

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

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════════ */
.text-green   { color: var(--green); }
.white        { color: var(--white); }
.light        { color: #94A3B8; }
.green        { color: var(--green); }

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-size: .95rem;
  padding: 14px 28px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,.3);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--slate-50); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.6);
}
.btn-sm  { padding: 10px 20px; font-size: .85rem; }
.btn-lg  { padding: 18px 36px; font-size: 1.05rem; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  height: 70px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: 0 2px 8px rgba(0,0,0,.1); }

/* Inner container */
.nb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  gap: 0;
}

/* Logo */
.nb-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 64px;
}
.nb-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nb-logo-text {
  display: none;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}
.nb-logo-text em { color: var(--green); font-style: normal; }

/* Desktop nav links */
.nb-links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 4px;
}
.nb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
}
.nb-link:hover { background: #F9FAFB; transform: translateY(-1px); }
.nb-link.active { background: #ECFDF5; }

/* Flat icon (no circle background) */
.nb-icon {
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  width: 20px; height: 20px; min-width: 20px;
}

/* Link text */
.nb-link-body { display: flex; flex-direction: column; }
.nb-link-title { font-size: 0.9375rem; font-weight: 600; color: var(--navy); line-height: 1.25; }
.nb-link-sub   { font-size: 0.8125rem; color: #64748B; line-height: 1.35; margin-top: 2px; }

/* Desktop CTA */
.nb-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(16,185,129,.25);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.nb-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(16,185,129,.3);
}
.nb-cta:active { transform: translateY(0); }

/* Hamburger */
.nb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nb-hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s ease;
}
.nb-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nb-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nb-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Overlay */
.nb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nb-overlay.show { opacity: 1; pointer-events: auto; }

/* Mobile slide panel */
.nb-panel {
  position: fixed;
  top: 0; right: -300px;
  width: 280px;
  height: 100dvh;
  background: var(--white);
  box-shadow: -4px 0 16px rgba(0,0,0,.15);
  z-index: 2000;
  overflow-y: auto;
  transition: right .3s ease;
  display: flex;
  flex-direction: column;
}
.nb-panel.open { right: 0; }

/* Close button */
.nb-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #F3F4F6;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background .2s ease;
}
.nb-close:hover { background: #E5E7EB; }

/* Panel links */
.nb-panel-links {
  padding: 72px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.nb-panel-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  border-radius: 8px;
  border-bottom: 1px solid #F3F4F6;
  transition: background .2s ease;
}
.nb-panel-link:last-child { border-bottom: none; }
.nb-panel-link:hover { background: #F9FAFB; }
.nb-panel-link .nb-icon { width: 40px; height: 40px; min-width: 40px; }

/* Panel CTA */
.nb-panel-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin: 0 16px 32px;
  padding: 16px 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 2px 8px rgba(16,185,129,.3);
  transition: background .2s ease, transform .2s ease;
}
.nb-panel-cta small { font-size: 0.75rem; font-weight: 400; opacity: .85; }
.nb-panel-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Body scroll lock */
body.nb-open { overflow: hidden; }

/* Large tablet: hide subtitles, tighten gaps */
@media (max-width: 1199px) {
  .nb-container  { padding: 0 24px; }
  .nb-logo       { margin-right: 32px; }
  .nb-links      { gap: 2px; }
  .nb-link       { padding: 8px 8px; gap: 6px; }
  .nb-link-sub   { display: none; }
  .nb-cta        { padding: 8px 16px; }
}

/* Tablet */
@media (max-width: 1023px) {
  .nb-logo       { margin-right: 20px; }
  .nb-link-title { font-size: 0.75rem; }
  .nb-cta        { padding: 8px 14px; font-size: 0.75rem; }
}

/* Mobile: hamburger only */
@media (max-width: 767px) {
  .nb-links      { display: none; }
  .nb-cta        { display: none; }
  .nb-hamburger  { display: flex; }
  .nb-container  { padding: 0 20px; }
  .nb-logo       { margin-right: 0; }
  .nb-logo-img   { height: 28px; }
}

/* ═══════════════════════════════════════════════
   DARK SECTION HELPER
═══════════════════════════════════════════════ */
.dark-section {
  background: var(--navy-dark);
}
.dark-section .section-header h2 { color: var(--white); }

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 102px 0 60px;
  background: var(--white);
  overflow-x: clip;
  max-width: 100%;
}

/* Fixed site header already offsets body — no extra 102px top gap */
body:has(#header-container .nav-container) .hero {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: center;
  margin-bottom: 56px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-grid > * {
  min-width: 0;
  max-width: 100%;
}

.hero-left {
  width: 100%;
  min-width: 0;
}

/* Desktop: copy column compact; graphic column uses remaining width */
@media (min-width: 1025px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(14px, 1.8vw, 28px);
    column-gap: clamp(16px, 2.2vw, 34px);
    max-width: min(1520px, 96vw);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-left {
    max-width: 42rem;
    padding-left: clamp(3rem, 9vw, 11rem);
  }
  .hero-right {
    justify-content: center;
    align-items: center;
    min-width: 0;
    width: 100%;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  color: var(--green);
  font-size: clamp(0.72rem, 2.5vw, 0.82rem);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  max-width: 100%;
  line-height: 1.35;
  text-align: center;
  flex-wrap: wrap;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(.8); }
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Dashboard mockup / hero graphic column */
.hero-right {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
}

.dashboard-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
  width: 100%;
  max-width: 23.333rem;
}

.dash-chrome {
  display: flex;
  align-items: center;
  gap: 0.333rem;
  padding: 0.666rem 0.888rem;
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dot { width: 0.666rem; height: 0.666rem; border-radius: 50%; }
.dot-red    { background: rgba(239,68,68,.7); }
.dot-yellow { background: rgba(250,204,21,.7); }
.dot-green  { background: rgba(16,185,129,.7); }
.dash-title {
  font-size: 0.72rem;
  color: #64748B;
  font-family: monospace;
  margin-left: 0.444rem;
}

.dash-body { padding: 1.111rem; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.555rem;
  margin-bottom: 0.888rem;
}
.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 0.666rem;
  text-align: center;
}
.stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.stat-val.green  { color: var(--green); }
.stat-val.blue   { color: #60A5FA; }
.stat-val.purple { color: #C084FC; }
.stat-label { font-size: 0.7rem; color: #64748B; margin-top: 0.222rem; }

.dash-checklist {
  background: rgba(0,0,0,.2);
  border-radius: 10px;
  padding: 0.777rem;
  margin-bottom: 0.777rem;
}
.checklist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.666rem;
}
.checklist-title { color: var(--white); font-size: 0.85rem; font-weight: 600; }
.checklist-badge {
  background: rgba(16,185,129,.15);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.111rem 0.444rem;
  border-radius: 999px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.555rem;
  color: #CBD5E1;
  font-size: 0.82rem;
  padding: 0.222rem 0;
}
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem; height: 1rem;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.4);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.7rem;
  flex-shrink: 0;
  font-weight: 700;
}

.dash-progress .progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #64748B;
  margin-bottom: 0.333rem;
}
.progress-track {
  height: 0.388rem;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #34D399);
  border-radius: 999px;
  width: 0;
  transition: width 1.2s ease;
}

/* Feature badge grid */
.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  min-height: 52px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.feature-badge:hover {
  border-color: var(--green);
  box-shadow: 0 2px 12px rgba(16,185,129,.12);
}
.feature-badge span {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* Hero image — AI workflow graphic (fills column; scales with viewport) */
.hero-img-wrap {
  position: relative;
  width: min(100%, 94vw);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 3328 / 2217;
}

@media (min-width: 600px) {
  .hero-img-wrap {
    width: min(100%, 88vw);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-img-wrap {
    width: min(100%, 78vw);
    max-width: 44rem;
  }
}

@media (min-width: 1025px) {
  .hero-img-wrap {
    width: 100%;
    max-width: clamp(600px, 46vw, 860px);
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-img-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(ellipse, rgba(16,185,129,.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(2.222rem);
  pointer-events: none;
  z-index: 0;
}
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 1.333rem 2.666rem rgba(0,0,0,.15));
}

/* Float animation */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-0.777rem); }
}
.float-anim { animation: float 4s ease-in-out infinite; }

/* ═══════════════════════════════════════════════
   ROI SECTION
═══════════════════════════════════════════════ */
.roi-section {
  padding: 5.555rem 0;
  background: var(--slate-50);
}

.roi-intro {
  text-align: center;
  margin-bottom: 2.888rem;
}
.roi-intro .section-eyebrow {
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.roi-intro .section-sub {
  font-size: 1.2rem;
  max-width: 640px;
}
.roi-intro h2 {
  font-size: clamp(2.15rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.888rem;
}

.roi-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #E2E8F0;
}

/* ── Header ── */
.roi-header {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 1.2fr;
}

.roi-hcol {
  display: flex;
  align-items: center;
  gap: 0.666rem;
  padding: 1.333rem 1.444rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
}

.roi-hcol--dark     { background: var(--navy-dark); }
.roi-hcol--gradient { background: linear-gradient(to right, #0A1628, #059669); }
.roi-hcol--green    { background: var(--green-dark); }

.roi-hicon {
  width: 1.555rem;
  height: 1.555rem;
  flex-shrink: 0;
  opacity: .9;
}

/* ── Body rows ── */
.roi-body { background: var(--white); }

.roi-row {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 1.2fr;
  border-top: 1px solid #F1F5F9;
  transition: background var(--transition);
}
html.js-reveal .roi-row:not(.visible) {
  opacity: 0;
  transform: translateY(0.888rem);
}
html.js-reveal .roi-row.visible {
  opacity: 1;
  transform: none;
  transition: opacity .45s ease, transform .45s ease;
}
.roi-row:hover { background: #F8FFFE; }

.roi-col {
  padding: 1.333rem;
  display: flex;
  align-items: center;
  gap: 0.888rem;
}

/* Task column */
.roi-col--task { gap: 1rem; }

.roi-task-icon {
  width: 4.444rem;
  height: 4.444rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roi-task-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

/* Before column */
.roi-col--before {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.555rem;
}

.roi-time-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.roi-bar-wrap { width: 100%; }

.roi-bar-track {
  width: 100%;
  height: 0.333rem;
  background: #E2E8F0;
  border-radius: 999px;
  overflow: hidden;
}

.roi-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--green), var(--green-dark));
  border-radius: 999px;
  transition: width 1s ease;
}

/* After column */
.roi-col--after {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.333rem;
}

.roi-arrow {
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 700;
}

.roi-time-after { color: var(--green); }

/* Saved column */
.roi-col--saved {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.222rem;
  background: rgba(16,185,129,.04);
  border-left: 1px solid rgba(16,185,129,.12);
}

/* "Save" label — mobile only (desktop shows hours only) */
.roi-saved-prefix {
  display: none;
}

.roi-saved-num {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--green-dark);
  text-align: center;
}

.roi-saved-sub {
  font-size: 0.85rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
}

/* ── Bottom banner ── */
.roi-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.777rem;
  padding: 1.222rem 1.777rem;
  background: #ECFDF5;
  border-top: 2px solid var(--green);
}

.roi-banner-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.roi-banner-text {
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  gap: 0.333rem;
  align-items: center;
}

.roi-banner-navy  { color: var(--navy); }
.roi-banner-green { color: var(--green-dark); }

/* ═══════════════════════════════════════════════
   PAIN POINTS — "Problems You Face Every Day"
═══════════════════════════════════════════════ */
.pp-section {
  padding: 5.555rem 0;
  background: #F9FAFB;
}

/* Header */
.pp-header {
  text-align: center;
  margin-bottom: 2.666rem;
}

.pp-eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.888rem;
}

.pp-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.888rem;
  line-height: 1.2;
}

.pp-title-green { color: var(--green); }

.pp-subtitle {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 37.777rem;
  margin: 0 auto;
  line-height: 1.65;
}

/* Cards grid */
.pp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.333rem;
}

.pp-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  cursor: default;
}

.pp-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transform: translateY(-0.222rem);
  border-color: var(--green);
}

.pp-card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* Full-width 7th card */
.pp-card--full {
  grid-column: span 2;
}

.pp-card-body {
  flex: 1;
  min-width: 0;
}

/* Icon circle */
.pp-icon-wrap {
  width: 3rem;
  height: 3rem;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-icon-wrap svg {
  width: 26px;
  height: 26px;
}

/* Card text */
.pp-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.pp-card-desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0;
}

/* Stats banner — Cost of Inefficiency */
.pp-stats {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  background: #d1fadf;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4.5vw, 52px);
  margin-top: 2.666rem;
  width: 100%;
  box-sizing: border-box;
}

.pp-stats-intro {
  flex: 0 0 30%;
  max-width: 280px;
  padding-right: clamp(24px, 3vw, 40px);
  margin-right: clamp(24px, 3vw, 40px);
  border-right: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pp-stats-heading {
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pp-stats-desc {
  font-size: 0.9375rem;
  color: #64748b;
  max-width: 16rem;
  line-height: 1.55;
}

.pp-stats-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 28px);
  align-items: start;
  min-width: 0;
}

.pp-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 6px;
  min-height: 100%;
}

.pp-stat-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.pp-stat-icon svg {
  width: 28px;
  height: 28px;
}

.pp-stat-num {
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  min-height: 1.1em;
}

.pp-stat-label {
  font-size: 0.8125rem;
  color: #475569;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.pp-stat-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 400;
  line-height: 1.3;
  margin-top: auto;
}

/* ═══════════════════════════════════════════════
   4-STEP SYSTEM (Solution)
═══════════════════════════════════════════════ */
.sol-section {
  padding: 5.555rem 0;
  background: var(--white);
}

.sol-header {
  text-align: center;
  margin-bottom: 3.555rem;
}

.sol-title {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.666rem;
}

.sol-subtitle {
  font-size: 1.125rem;
  color: var(--slate);
}

/* Flow row */
.sol-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Individual step */
.sol-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 11.111rem;
}

/* Badge + circle wrapper */
.sol-circle-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.111rem;
}

/* Numbered badge */
.sol-badge {
  position: absolute;
  top: -0.444rem;
  left: -0.444rem;
  width: 1.777rem;
  height: 1.777rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.sol-badge--1 { background: #10B981; }
.sol-badge--2 { background: #3B82F6; }
.sol-badge--3 { background: #A855F7; }
.sol-badge--4 { background: #059669; }

/* Icon circle */
.sol-circle {
  width: 6.666rem;
  height: 6.666rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
}

.sol-circle:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.sol-circle--1 { background: linear-gradient(135deg, #F0FDF4, #FEF3C7); }
.sol-circle--2 { background: linear-gradient(135deg, #DBEAFE, #E0E7FF); }
.sol-circle--3 { background: linear-gradient(135deg, #F3E8FF, #EDE9FE); }
.sol-circle--4 { background: linear-gradient(135deg, #D1FAE5, #ECFDF5); }

/* Step text */
.sol-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.444rem;
}

.sol-step-desc {
  font-size: 0.875rem;
  color: var(--slate);
  max-width: 8.333rem;
  line-height: 1.55;
}

/* Arrow between steps */
.sol-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 2.555rem; /* visual center of 120px circle */
  margin: 0 0.666rem;
  color: #D1D5DB;
  font-size: 2rem;
  line-height: 1;
}

.sol-arrow::before { content: '→'; }

/* ═══════════════════════════════════════════════
   FOUNDER — "Why ProAiMax Works"
═══════════════════════════════════════════════ */
.fn-section {
  padding: 3.333rem 0;
  background: #F9FAFB;
}

.fn-section > .container {
  max-width: 100%;
  padding: 0 5%;
}

/* Two-column card */
.fn-layout {
  display: grid;
  grid-template-columns: minmax(220px, 26%) 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

/* ── Left sidebar ── */
.fn-sidebar {
  background: #0F172A;
  padding: 1.555rem 1.333rem;
}

.fn-sidebar-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.777rem;
  text-align: center;
}

/* Advisors stacked (two rows) */
.fn-advisors-row {
  display: flex;
  flex-direction: column;
}

.fn-advisor { margin-bottom: 1.555rem; text-align: center; }
.fn-advisor:last-child { margin-bottom: 0; }

.fn-advisor-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.1);
  aspect-ratio: 3/4;
  margin-bottom: 1.333rem;
  max-width: 11.111rem;
  margin-left: auto;
  margin-right: auto;
}

.fn-advisor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fn-advisor-img--grey { filter: grayscale(100%); }

.fn-advisor-name,
.fn-advisor-role,
.fn-advisor-loc,
.fn-advisor-bio {
  width: 100%;
  max-width: 17.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  box-sizing: border-box;
}

.fn-advisor-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.444rem;
  line-height: 1.3;
  text-align: center;
}

.fn-advisor-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.444rem;
  text-align: center;
  line-height: 1.4;
}

.fn-advisor-loc {
  font-size: 0.875rem;
  color: #94A3B8;
  font-style: italic;
  margin-bottom: 0.666rem;
  text-align: center;
  line-height: 1.4;
}

.fn-advisor-bio {
  font-size: 0.875rem;
  color: #CBD5E1;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
}

/* ── Right content ── */
.fn-content {
  background: var(--white);
  padding: 1.777rem 3.111rem;
}

/* Label with side lines */
.fn-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.666rem;
  margin-bottom: 0.888rem;
}

.fn-label-line {
  display: block;
  width: 2.222rem;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.fn-label-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fn-heading {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.444rem;
  line-height: 1.15;
  text-align: center;
}

.fn-subheading {
  font-size: 1.25rem;
  color: var(--slate);
  margin-bottom: 1rem;
  text-align: center;
}

/* Quote */
.fn-quote {
  display: flex;
  align-items: flex-start;
  gap: 0.666rem;
  border-left: 4px solid var(--green);
  padding: 0.25rem 0 0.25rem 1.111rem;
  margin: 0 0 1rem;
}

.fn-quote-mark {
  flex-shrink: 0;
  font-size: 3.5rem;
  color: #7DD3FC;
  opacity: .55;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 0.85;
  margin: 0;
  user-select: none;
}

.fn-quote-body {
  flex: 1;
  min-width: 0;
}

.fn-quote p {
  font-size: 1.0625rem;
  color: var(--navy);
  line-height: 1.65;
  margin: 0 0 0.444rem;
}
.fn-quote p:last-child { margin-bottom: 0; }
.fn-quote strong { font-weight: 700; }
.fn-quote-regular { font-weight: 400; }
.fn-quote-bold    { font-weight: 700; }

/* How We Built ProAiMax */
.fn-how-built {
  margin-top: 2.666rem;
  margin-bottom: 1.777rem;
  padding: 1.333rem;
  background: #F0FDF4;
  border-left: 4px solid var(--green);
  border-radius: 8px;
}
.fn-how-built-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.666rem;
}
.fn-how-built-text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}

/* Card rows (problem + value) */
.fn-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.555rem;
  margin-bottom: 1rem;
}

.fn-card {
  background: #F9FAFB;
  border-radius: 12px;
  padding: 1.111rem;
  display: flex;
  align-items: flex-start;
  gap: 0.777rem;
  transition: box-shadow .25s ease, transform .25s ease;
}

.fn-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transform: translateY(-0.111rem);
}

.fn-card-icon {
  width: 2.444rem;
  height: 2.444rem;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fn-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.222rem;
  line-height: 1.3;
}

.fn-card-desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.5;
}

/* Insight box */
.fn-insight {
  background: #FFF7ED;
  border-left: 4px solid #F97316;
  border-radius: 8px;
  padding: 0.888rem 1.111rem;
  margin-bottom: 1.111rem;
  display: flex;
  align-items: center;
  gap: 0.888rem;
}

.fn-insight-icon {
  width: 2.444rem;
  height: 2.444rem;
  background: #FED7AA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fn-insight-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
}

.fn-insight-em {
  color: #F97316;
  font-weight: 700;
}

/* Statement */
.fn-statement {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.111rem;
  line-height: 1.4;
}

/* Objectives section */
.fn-obj-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.888rem;
}

.fn-obj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.888rem;
}

.fn-obj-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 1.111rem 1.333rem;
  display: flex;
  align-items: flex-start;
  gap: 0.666rem;
  transition: box-shadow .25s ease;
}

.fn-obj-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.06); }

.fn-obj-check { flex-shrink: 0; margin-top: 0.055rem; }

.fn-obj-card p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.55;
}

/* Download CTA — bottom right of founder content */
.fn-cta-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

.fn-download-btn {
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
}

/* ═══════════════════════════════════════════════
   REAL RESULTS — pr-* (Section 6)
═══════════════════════════════════════════════ */
.pr-section {
  padding: 4.444rem 0;
  background: #F9FAFB;
  overflow-x: clip;
  max-width: 100%;
}
.pr-header {
  text-align: center;
  margin-bottom: 3.555rem;
}
.pr-title {
  font-size: 2.666rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

/* Two-column grid */
.pr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.666rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.pr-grid > * {
  min-width: 0;
  max-width: 100%;
}

/* Cards */
.pr-card {
  background: var(--white);
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 32rem;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  transition: opacity .65s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.pr-card:hover {
  transform: translateY(-0.222rem);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.pr-card-title {
  font-size: 1.555rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1.25rem;
  width: 100%;
  flex-shrink: 0;
}

/* Video wrap */
.pr-video-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 12.5rem;
  background: #F3F4F6;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 1.125rem;
  cursor: pointer;
  flex-shrink: 0;
  align-self: stretch;
}
.pr-thumb {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
}
.pr-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.pr-video-wrap:hover .pr-play-btn { background: rgba(0,0,0,.4); }
.pr-play-btn svg {
  width: 5rem; height: 5rem;
  background: var(--green);
  border-radius: 50%;
  padding: 1.4rem;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(16,185,129,.4);
  animation: pr-pulse 2.6s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.pr-video-wrap:hover .pr-play-btn svg {
  transform: scale(1.1);
  animation: none;
}
@keyframes pr-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(16,185,129,.4), 0 0 0 0 rgba(16,185,129,0); }
  50%       { box-shadow: 0 4px 12px rgba(16,185,129,.4), 0 0 0 0.666rem rgba(16,185,129,.15); }
}

.pr-desc {
  font-size: 1.0625rem;
  color: #64748B;
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.55;
  width: 100%;
  flex-shrink: 0;
}
.pr-link {
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
.pr-link:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* Overlapping avatar circles */
.pr-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.333rem;
}
.pr-av-circle {
  position: relative;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pr-av--sm  { width: 3.555rem;  height: 3.555rem;  z-index: 1; }
.pr-av--lg  { width: 4.444rem;  height: 4.444rem;  z-index: 2; margin: 0 -0.888rem; }
.pr-av--blue  { background: #3B82F6; }
.pr-av--lblue { background: #60A5FA; }

/* Gold star rating */
.pr-stars-rating {
  color: #F59E0B;
  font-size: 1.75rem;
  letter-spacing: 0.222rem;
  margin-bottom: 1.333rem;
  text-align: center;
  width: 100%;
}

/* ── Testimonial Carousel ─────────────────────── */

/* Card override: needs relative positioning for arrows */
.pr-carousel-card {
  position: relative;
  width: 100%;
}

.pr-carousel-card .pr-card-title {
  margin-bottom: 1rem;
}

/* Arrow buttons — absolute over the full card */
.tc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.444rem;
  height: 2.444rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #E5E7EB;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: background .25s ease, border-color .25s ease,
              color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.tc-arrow--left  { left: 0.666rem; }
.tc-arrow--right { right: 0.666rem; }
.tc-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(16,185,129,.3);
}
.tc-arrow:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* Slide viewport — fixed height so absolute children have a parent */
.tc-slides {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 26rem;
  align-self: stretch;
}

/* Individual slide — all stacked via absolute; active fades in */
.tc-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 2.75rem 0.25rem;
  gap: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease-in-out;
  z-index: 0;
}
.tc-slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Avatar initial circle */
.tc-avatar {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto;
  flex-shrink: 0;
}

/* Star rating */
.tc-stars {
  color: #F59E0B;
  font-size: 1.625rem;
  letter-spacing: 0.2rem;
  margin: 0;
  line-height: 1;
}

/* Quote text */
.tc-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: #64748B;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 96%;
}

/* Author */
.tc-author  { width: 100%; flex-shrink: 0; }
.tc-name    { font-size: 1.1875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.tc-role    { font-size: 0.9375rem; color: #64748B; margin-bottom: 0.15rem; }
.tc-company { font-size: 0.9375rem; color: var(--green); font-weight: 600; }

/* Indicator dots */
.tc-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.444rem;
  margin-top: 1rem;
  flex-shrink: 0;
}
.tc-dot {
  width: 0.555rem;
  height: 0.555rem;
  border-radius: 50%;
  background: #D1D5DB;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: width .3s ease, background .3s ease;
}
.tc-dot--active       { width: 1.333rem; background: var(--green); }
.tc-dot:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* ── pr-* responsive ─────────────────────────── */
/* Responsive */
@media (max-width: 1023px) {
  .pr-grid  { gap: 1.777rem; }
  .pr-title { font-size: 2.222rem; }
  .pr-card  { padding: 1.777rem 1.333rem; }
  .tc-arrow { width: 2.111rem; height: 2.111rem; }
  .tc-arrow--left  { left: 0.444rem; }
  .tc-arrow--right { right: 0.444rem; }
  .tc-slides { min-height: 24rem; }
  .tc-slide  { padding: 0.5rem 2.25rem 0.25rem; }
}
@media (max-width: 767px) {
  .pr-section {
    padding: 2.5rem 0 3rem;
  }
  .pr-section > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }
  .pr-header {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  .pr-title {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  html.js-reveal #proof-section .fade-in-left:not(.visible),
  html.js-reveal #proof-section .fade-in-right:not(.visible) {
    transform: translateY(0.75rem);
  }
  .pr-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .pr-title {
    font-size: clamp(1.5rem, 5.5vw, 1.75rem);
  }
  .pr-header {
    margin-bottom: 1.5rem;
  }
  .pr-card {
    width: 100%;
    box-sizing: border-box;
    padding: 1.125rem 0.875rem 1rem;
    min-height: unset;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
  }
  .pr-card:hover {
    transform: none;
  }
  .pr-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }
  .pr-video-wrap {
    width: 100%;
    max-width: 100%;
    min-height: clamp(10rem, 56vw, 13.5rem);
    margin-bottom: 0.75rem;
    border-radius: 10px;
  }
  .pr-play-btn svg {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.95rem;
  }
  .pr-desc {
    font-size: 0.9375rem;
    margin-bottom: 0;
    padding: 0 0.25rem;
  }
  .pr-av--sm  { width: 3.111rem; height: 3.111rem; }
  .pr-av--lg  { width: 4rem; height: 4rem; }
  .pr-carousel-card {
    min-height: unset;
    padding-bottom: 0.625rem;
  }
  .tc-slides {
    min-height: clamp(15.5rem, 48vh, 19.5rem);
  }
  .tc-slide {
    padding: 0.35rem 2rem 0.15rem;
    gap: 0.5rem;
    justify-content: flex-start;
  }
  .tc-arrow {
    width: 1.875rem;
    height: 1.875rem;
    border-width: 1px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  }
  .tc-arrow--left  { left: 0.125rem; }
  .tc-arrow--right { right: 0.125rem; }
  .tc-arrow svg {
    width: 14px;
    height: 14px;
  }
  .tc-avatar {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }
  .tc-quote {
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: 100%;
  }
  .tc-stars {
    font-size: 1.25rem;
    letter-spacing: 0.12rem;
  }
  .tc-name {
    font-size: 1.0625rem;
  }
  .tc-role,
  .tc-company {
    font-size: 0.8125rem;
  }
  .tc-dots {
    margin-top: 0.625rem;
  }
}

@media (max-width: 480px) {
  .pr-section > .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .pr-card {
    padding: 1rem 0.75rem 0.875rem;
  }
  .tc-slide {
    padding-left: 1.65rem;
    padding-right: 1.65rem;
  }
  .tc-slides {
    min-height: clamp(14.5rem, 50vh, 18rem);
  }
}

/* ═══════════════════════════════════════════════
   BENEFITS — "What You Get With ProAiMax"
═══════════════════════════════════════════════ */
.bx-section {
  padding: 4.444rem 0;
  background: var(--white);
}

.bx-header {
  text-align: center;
  margin-bottom: 3.111rem;
}

.bx-title {
  font-size: 2.222rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

/* Grid */
.bx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.333rem;
  align-items: stretch;
}

/* Cards */
.bx-card {
  background: #F9FAFB;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 1.777rem 1.333rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: default;
  transition: opacity .65s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bx-card:hover {
  transform: translateY(-0.444rem);
  box-shadow: 0 0.666rem 1.333rem rgba(0,0,0,0.1);
}

.bx-card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.bx-card--green:hover  { border-color: #10B981; }
.bx-card--blue:hover   { border-color: #3B82F6; }
.bx-card--purple:hover { border-color: #A855F7; }
.bx-card--orange:hover { border-color: #F97316; }

/* Icon circles */
.bx-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.111rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.bx-card:hover .bx-icon-wrap { transform: scale(1.1); }

.bx-icon-wrap--green  { background: #ECFDF5; }
.bx-icon-wrap--blue   { background: #DBEAFE; }
.bx-icon-wrap--purple { background: #F3E8FF; }
.bx-icon-wrap--orange { background: #FFF7ED; }

/* Card text */
.bx-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.444rem;
  line-height: 1.3;
}

.bx-card-desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1199px) {
  .bx-grid  { grid-template-columns: repeat(2, 1fr); gap: 1.111rem; }
  .bx-title { font-size: 1.888rem; }
}

@media (max-width: 767px) {
  .bx-section { padding: 3.555rem 0; }
  .bx-header  { margin-bottom: 2.222rem; }
  .bx-grid    { grid-template-columns: 1fr; gap: 0.888rem; }
  .bx-title   { font-size: 1.555rem; }
  .bx-icon-wrap { width: 3.555rem; height: 3.555rem; }
  .bx-icon-wrap svg { width: 2.222rem; height: 2.222rem; }
}

/* ═══════════════════════════════════════════════
   AUDIENCE QUALIFICATION — "This Is For You"
═══════════════════════════════════════════════ */
.aq-section {
  padding: 4.444rem 0;
  background: var(--white);
}

.aq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.777rem;
  align-items: stretch;
}

/* Cards */
.aq-card {
  position: relative;
  border-radius: 16px;
  padding: 2.222rem 1.777rem;
  box-shadow: 0 0.111rem 0.666rem rgba(0,0,0,.04);
  transition: opacity .65s ease, transform .35s ease, box-shadow .3s ease;
}

.aq-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0.666rem 1.777rem rgba(0,0,0,.1);
}

.aq-card--green { background: #ECFDF5; border: 2px solid #10B981; }
.aq-card--red   { background: #FEF2F2; border: 2px solid #EF4444; }

/* Corner icon */
.aq-corner-icon {
  position: absolute;
  top: -1.333rem;
  right: -1.333rem;
  width: 3.555rem;
  height: 3.555rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.222rem 0.666rem rgba(0,0,0,.15);
  border: 4px solid var(--white);
}

.aq-corner-icon--green { background: #10B981; }
.aq-corner-icon--red   { background: #EF4444; }

.aq-heading {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.333rem;
  line-height: 1.25;
}

/* List */
.aq-list {
  display: flex;
  flex-direction: column;
  gap: 0.888rem;
}

.aq-item {
  display: flex;
  align-items: flex-start;
  gap: 0.888rem;
}

.aq-marker {
  width: 1.555rem;
  height: 1.555rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.111rem;
}

.aq-marker--green { background: #D1FAE5; }
.aq-marker--red   { background: #FEE2E2; }

.aq-item-text {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1023px) {
  .aq-grid { grid-template-columns: 1fr; gap: 2.666rem; }
  .aq-corner-icon { right: 1.333rem; }
}

@media (max-width: 767px) {
  .aq-section { padding: 3.555rem 0; }
  .aq-card    { padding: 1.777rem 1.333rem; }
  .aq-heading { font-size: 1.222rem; }
}

/* ═══════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════ */
.fc-section {
  padding: 0 0 5.555rem;
  background: var(--white);
}
.fc-section .container { max-width: 100%; }

.fc-inner {
  background: var(--navy-dark);
  border-radius: 24px;
  padding: 3.555rem 2.666rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.222rem;
  box-shadow: 0 1.111rem 2.222rem rgba(15,23,42,.15);
}

/* Background glow */
.fc-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(16,185,129,.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Message (Left) */
.fc-message {
  flex: 0 0 50%;
  position: relative;
  z-index: 1;
}

.fc-heading {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.888rem;
}

.fc-heading-em { color: var(--green); }

.fc-sub {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.5;
  max-width: none;
  letter-spacing: 0.01em;
}

@media (min-width: 1100px) {
  .fc-sub {
    white-space: nowrap;
  }
}

/* Actions (Middle) */
.fc-actions {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  padding: 0.5625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
  text-align: center;
  white-space: nowrap;
}

.fc-btn--primary {
  background: var(--green);
  color: var(--white);
  border: 1px solid transparent;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.35);
}

.fc-btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.fc-btn--secondary {
  background: transparent;
  color: #E2E8F0;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.fc-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

/* Trust Badges (Right) */
.fc-trust {
  flex: 0 0 18%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.888rem;
  padding-left: 1.333rem;
  border-left: 1px solid rgba(255,255,255,.1);
}

.fc-badge {
  display: flex;
  align-items: center;
  gap: 0.666rem;
  color: #CBD5E1;
}

.fc-badge svg { color: var(--green); flex-shrink: 0; }
.fc-badge span { font-size: 0.875rem; font-weight: 500; }

/* Responsive */
@media (max-width: 1023px) {
  .fc-inner { flex-direction: column; text-align: center; padding: 2.666rem 1.777rem; gap: 1.777rem; }
  .fc-message, .fc-actions, .fc-trust { flex: 0 0 auto; width: 100%; }
  .fc-sub {
    margin: 0 auto;
    white-space: normal;
    max-width: 28rem;
  }
  .fc-actions {
    justify-content: center;
    margin: 0 auto;
  }
  .fc-trust { border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding-left: 0; padding-top: 1.333rem; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1.333rem; }
}

@media (max-width: 1099px) and (min-width: 1024px) {
  .fc-sub { white-space: normal; max-width: 22rem; }
}

@media (max-width: 767px) {
  .fc-section { padding: 0 0 3.555rem; }
  .fc-trust { flex-direction: column; gap: 0.666rem; align-items: center; }
}

/* ═══════════════════════════════════════════════
   CHOOSE NEXT STEP (Section 10)
═══════════════════════════════════════════════ */
.cns-section {
  padding: 5.555rem 0;
  background: #F8FAFC;
}

.cns-header {
  text-align: center;
  margin-bottom: 3.111rem;
}
.cns-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.888rem;
  line-height: 1.2;
}
.cns-title-em { color: var(--green); }

.cns-sub {
  font-size: 1.125rem;
  color: var(--slate);
  margin-bottom: 0.444rem;
}
.cns-sub:last-child { margin-bottom: 0; }
.cns-sub-em { color: var(--navy); font-weight: 700; }

.cns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.777rem;
}

/* Cards */
.cns-card {
  display: flex;
  align-items: flex-start;
  gap: 1.333rem;
  background: var(--white);
  border-radius: 20px;
  padding: 2.222rem;
  box-shadow: 0 0.222rem 1.111rem rgba(0,0,0,.04);
  border: 1px solid #E2E8F0;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.cns-card:hover {
  transform: translateY(-0.222rem);
  box-shadow: 0 0.666rem 1.777rem rgba(0,0,0,.08);
}

.cns-card--green:hover { border-color: var(--green); }
.cns-card--navy:hover  { border-color: var(--navy); }

/* Icons */
.cns-icon-wrap {
  width: 4.444rem; height: 4.444rem;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cns-card--green .cns-icon-wrap { background: #ECFDF5; }
.cns-card--navy .cns-icon-wrap  { background: #F1F5F9; }

/* Content */
.cns-content { flex: 1; }

.cns-card-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.666rem;
  line-height: 1.3;
}

.cns-card-desc {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.333rem;
}

/* Badges list */
.cns-badges {
  display: flex;
  flex-direction: column;
  gap: 0.666rem;
  margin-bottom: 1.777rem;
}

.cns-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.666rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.45;
}

.cns-badge-text {
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  color: inherit;
  line-height: inherit;
}

.cns-badge-text strong {
  font-weight: 700;
}

.cns-check {
  width: 1.333rem; height: 1.333rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cns-check--green { background: #D1FAE5; }
.cns-check--navy  { background: #E2E8F0; }

/* Buttons */
.cns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.777rem 1.555rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .25s ease;
  width: 100%;
}

.cns-btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 0.222rem 0.666rem rgba(16,185,129,.25);
}
.cns-btn--green:hover { background: var(--green-dark); box-shadow: 0 0.333rem 0.888rem rgba(16,185,129,.35); }

.cns-btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 0.222rem 0.666rem rgba(30,41,59,.25);
}
.cns-btn--navy:hover { background: #0F172A; box-shadow: 0 0.333rem 0.888rem rgba(30,41,59,.35); }

/* Responsive */
@media (max-width: 1023px) {
  .cns-grid { grid-template-columns: 1fr; }
  .cns-card { padding: 1.777rem; }
}

@media (max-width: 767px) {
  .cns-section { padding: 3.555rem 0; }
  .cns-card { flex-direction: column; align-items: center; text-align: center; gap: 1.111rem; padding: 1.333rem; }
  .cns-icon-wrap { width: 3.555rem; height: 3.555rem; border-radius: 16px; margin: 0 auto; }
  .cns-badges { align-items: center; }
  .cns-badge { justify-content: center; }
}

/* ═══════════════════════════════════════════════
   FOOTER (Updated exact styling)
═══════════════════════════════════════════════ */
.site-footer {
  background: #111827;
  color: #D1D5DB;
  font-family: 'Inter', sans-serif;
  padding: 4.444rem 0 0;
  line-height: 1.6;
}

.ft-inner {
  max-width: 71.111rem;
  margin: 0 auto;
  padding: 0 1.333rem;
}

/* 5-column grid */
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 2.222rem;
  margin-bottom: 3.555rem;
}

/* Branding */
.ft-logo {
  font-size: 1.333rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.666rem;
  letter-spacing: -0.02em;
}

.ft-logo-em { color: #10B981; }

.ft-tagline {
  font-size: 0.777rem;
  color: #9CA3AF;
  margin-bottom: 1.333rem;
  max-width: 13.333rem;
}

/* Social icons */
.ft-socials {
  display: flex;
  gap: 0.666rem;
}

.ft-social {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D1D5DB;
  transition: all 0.2s ease;
}

.ft-social:hover {
  background: #10B981;
  color: #FFFFFF;
  transform: translateY(-0.111rem);
}

/* Columns headings */
.ft-col-heading {
  font-size: 0.722rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.333rem;
}

/* Links */
.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.666rem;
}

.ft-link {
  font-size: 0.777rem;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ft-link:hover { color: #10B981; }

/* Contact info boxes */
.ft-contact-box {
  display: flex;
  align-items: center;
  gap: 0.555rem;
  font-size: 0.833rem;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255,255,255,0.05);
  padding: 0.666rem 0.888rem;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 0.888rem;
  transition: background 0.2s ease;
}

.ft-contact-box:hover { background: rgba(255,255,255,0.1); }

.ft-contact-box svg { color: #10B981; }

.ft-contact-box--phone {
  background: #10B981;
  color: #FFFFFF;
}

.ft-contact-box--phone:hover {
  background: #059669;
}

.ft-contact-box--phone svg { color: #FFFFFF; }

/* Info notes under text messages */
.ft-info-note {
  display: flex;
  flex-direction: column;
  gap: 0.444rem;
}

.ft-info-row {
  display: flex;
  align-items: center;
  gap: 0.444rem;
  font-size: 0.722rem;
  color: #9CA3AF;
}

.ft-info-row svg {
  color: #6B7280;
  flex-shrink: 0;
}

/* Platform buttons under voice calls */
.ft-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.444rem;
}

.ft-platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.333rem;
  font-size: 0.722rem;
  font-weight: 500;
  color: #D1D5DB;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.444rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ft-platform-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #10B981;
  color: #FFFFFF;
}

.ft-platform-btn svg { width: 0.777rem; height: 0.777rem; }

/* Bottom bar */
.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.333rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.722rem;
}

.ft-copy { color: #6B7280; }

.ft-legal {
  display: flex;
  align-items: center;
  gap: 0.888rem;
}

.ft-legal-link {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ft-legal-link:hover { color: #10B981; }

.ft-dot { color: #4B5563; font-size: 0.555rem; }

/* Responsive adjustments */
@media (max-width: 1023px) {
  .ft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.222rem 1.777rem;
  }
  .ft-brand { grid-column: span 2; }
}

@media (max-width: 639px) {
  .ft-section { padding: 3.555rem 0 0; }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 1.777rem;
  }
  .ft-brand { grid-column: 1; text-align: center; }
  .ft-tagline { margin: 0 auto 1.333rem; }
  .ft-socials { justify-content: center; }

  .ft-col { text-align: center; }
  .ft-links { align-items: center; }
  .ft-info-note { align-items: center; }

  .ft-bottom {
    flex-direction: column;
    gap: 0.888rem;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════
   BACK TO TOP BUTTON
═══════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 1.333rem;
  right: 1.333rem;
  width: 2.444rem;
  height: 2.444rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0.222rem 0.666rem rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.888rem);
  transition: all .3s ease;
  z-index: 1000;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green);
  transform: translateY(-0.222rem);
}

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS (index.html)
   Hidden only after js/homepage-reveal.js sets html.js-reveal.
   Without JS, content stays visible (see index.html noscript block).
═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal,
  html.js-reveal .fade-in-left,
  html.js-reveal .fade-in-right,
  html.js-reveal .stagger-reveal,
  html.js-reveal .stagger-fade,
  html.js-reveal .stagger-reveal > *,
  html.js-reveal .stagger-fade > *,
  html.js-reveal .roi-row {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
html.js-reveal .reveal:not(.visible),
html.js-reveal .fade-in-left:not(.visible),
html.js-reveal .fade-in-right:not(.visible) {
  opacity: 0;
  transform: translateY(1.333rem);
  transition: opacity .65s ease, transform .65s ease;
}
html.js-reveal .fade-in-left:not(.visible)  { transform: translateX(-1.333rem); }
html.js-reveal .fade-in-right:not(.visible) { transform: translateX(1.333rem); }

html.js-reveal .reveal.visible,
html.js-reveal .fade-in-left.visible,
html.js-reveal .fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger reveals */
html.js-reveal .stagger-reveal:not(.visible) > * {
  opacity: 0;
  transform: translateY(1.333rem);
  transition: opacity .65s ease, transform .65s ease;
}
html.js-reveal .stagger-reveal.visible > * { opacity: 1; transform: translateY(0); }

html.js-reveal .stagger-fade:not(.visible) > * {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .5s ease, transform .5s ease;
}
html.js-reveal .stagger-fade.visible > * { opacity: 1; transform: scale(1); }

/* Apply delays using child selectors for generic grids */
.stagger-reveal.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-reveal.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-reveal.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-reveal.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-reveal.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-reveal.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-fade.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-fade.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-fade.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-fade.visible > *:nth-child(4) { transition-delay: 0.4s; }

.roi-row.visible:nth-child(1) { transition-delay: 0.1s; }
.roi-row.visible:nth-child(2) { transition-delay: 0.2s; }
.roi-row.visible:nth-child(3) { transition-delay: 0.3s; }
.roi-row.visible:nth-child(4) { transition-delay: 0.4s; }


/* Modern Footer Premium Overrides */
.footer-section {
  position: relative;
  background: #0c121e !important; /* Exact deep dark blue matching the image */
  border-top: none !important;
  color: #8392a5;
  font-family: 'Inter', -apple-system, sans-serif;
  margin: 0;
  padding: 0;
}

.footer-main {
  width: 100%;
  box-sizing: border-box;
  padding: 3.33rem 5% 2.22rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 1.67rem;
  margin-bottom: 1.11rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid .col-brand { grid-column: 1 / -1; }
}

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

/* Typography */
.footer-logo {
  font-size: 1.67rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.89rem;
  display: flex;
  align-items: center;
  letter-spacing: -0.5px;
}
.footer-logo sup {
  font-size: 0.78rem;
  margin-left: 0.11rem;
  font-weight: 500;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #232d3f;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8392a5;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: #3b4b68;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Buttons and Action Boxes */
.action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #182233; /* Darker grey-blue card background */
  border: 1px solid #263346;
  border-radius: 6px;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
}

.action-btn:hover {
  background: #233045;
  border-color: #384860;
}

.action-btn i, .action-btn svg {
  color: #a0aec0;
  font-size: 15px;
}

/* Specific grids */
.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.info-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #a0aec0;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 8px;
}
.info-note i {
  color: #a0aec0;
  margin-top: 2px;
  font-size: 11px;
}

/* Bottom Bar */
.footer-bottom-wrapper {
  border-top: 1px solid #1c2638;
  position: relative;
}

.footer-bottom {
  padding: 24px 5%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #5c6e8a;
  font-size: 13px;
}

.legal-links {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-right: 40px; /* Space for the floating button */
}

.legal-links a {
  color: #8392a5;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: #ffffff;
}

.legal-separator {
  color: #3b4b68;
  font-size: 18px;
  line-height: 1;
}

/* Floating Back to Top Button */
.back-to-top {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #00d084;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
}
.back-to-top:hover {
  background: #00e691;
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-bottom: 30px;
  }
  .legal-links {
    padding-right: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .back-to-top {
    position: absolute;
    right: 5%;
    bottom: 20px;
    top: auto;
    transform: none;
    margin-top: 0;
  }
  .back-to-top:hover {
    transform: scale(1.05);
  }
}


/* -----------------------------------------------
   MOBILE RESPONSIVENESS (RECOVERED)
----------------------------------------------- */

/* Tablets & Smaller Desktop */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
  }
  .hero-headline {
    font-size: clamp(1.85rem, 5.5vw, 2.75rem);
    width: 100%;
  }
  .hero-sub {
    margin: 0 auto 1.5rem;
    max-width: 32rem;
  }
  .hero-btns {
    justify-content: center;
    margin-bottom: 0;
  }
  .hero-badges-row {
    justify-content: center;
  }
  .hero-feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
    min-width: 0;
  }
  .feature-badge {
    padding: 0.875rem 1rem;
    min-height: 48px;
  }
  .hero-right {
    justify-content: center;
    margin-top: 0.5rem;
    width: 100%;
  }
  .hero-img-wrap {
    width: min(100%, 88vw);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }
  html.js-reveal #hero .fade-in-left:not(.visible),
  html.js-reveal #hero .fade-in-right:not(.visible) {
    transform: translateY(0.65rem);
  }
  
  .roi-header, .roi-row {
    grid-template-columns: 1fr;
  }
  
  .pr-grid, .bx-grid, .cns-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .roi-intro h2 {
    font-size: 2.25rem;
  }

  .roi-intro .section-sub {
    font-size: 1.1rem;
  }
  
  .hero {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero-grid {
    margin-bottom: 2rem;
    gap: 1.25rem;
  }

  .hero-badge {
    margin-bottom: 1rem;
    padding: 7px 12px;
  }

  .hero-headline {
    font-size: clamp(1.65rem, 8.5vw, 2.15rem);
    margin-bottom: 0.75rem;
    line-height: 1.12;
  }

  .hero-sub {
    font-size: 0.975rem;
    margin-bottom: 1.25rem;
    padding: 0 0.25rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 18.5rem;
    margin-left: auto;
    margin-right: auto;
    gap: 0.625rem;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-img-wrap {
    width: 100%;
    max-width: min(100%, 21rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-right {
    margin-top: 0.25rem;
  }
  
  .hero-feature-grid {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

  .feature-badge {
    width: 100%;
    box-sizing: border-box;
    padding: 0.8rem 1rem;
    min-height: 46px;
  }

  .feature-badge span {
    font-size: 0.875rem;
  }

  /* Hero copy always visible on mobile (no horizontal slide-off) */
  html.js-reveal #hero .fade-in-left,
  html.js-reveal #hero .fade-in-right {
    opacity: 1;
    transform: none;
  }

  /* ROI Section Mobile Stack */
  .roi-header {
    display: none;
  }
  .roi-wrap {
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .roi-row {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    padding: 0;
    gap: 0;
    opacity: 1;
    transform: none;
  }
  .roi-row.visible {
    opacity: 1;
    transform: none;
  }
  .roi-col {
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .roi-col--task {
    border-bottom: 1px solid #F1F5F9;
    flex-direction: row;
  }
  .roi-col--before,
  .roi-col--after {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F1F5F9;
  }
  .roi-col--saved {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: end;
    gap: 2px 12px;
    border-bottom: none;
    border-left: none;
    background: rgba(16,185,129,.04);
    border-radius: 0 0 12px 12px;
  }
  .roi-saved-prefix {
    display: block;
    grid-column: 1;
    grid-row: 1;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
  }
  .roi-bar-wrap { display: none; }
  .roi-saved-num {
    grid-column: 1;
    grid-row: 2;
    font-size: 1.75rem;
    text-align: left;
    line-height: 1.1;
  }
  .roi-saved-sub {
    grid-column: 2;
    grid-row: 2;
    text-align: right;
    align-self: end;
    margin: 0;
  }

  .roi-task-text,
  .roi-time-val {
    font-size: 1rem;
  }

  .roi-banner-text {
    font-size: 1.2rem;
  }
  
  /* Feature cards */
  .bx-card, .cns-card {
    padding: 24px;
  }
  .cns-card {
    flex-direction: column;
  }
  .cns-icon-wrap {
    margin-bottom: 16px;
  }
  
  /* Footer grid */
  .ft-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  /* Make sure container doesn't force width */
  .container {
    padding: 0 16px;
  }
  
  /* Dash card scaling */
  .dashboard-card {
    max-width: 100%;
  }
  .dash-stats {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------
   MOBILE RESPONSIVENESS (SUBAGENT FIXES)
----------------------------------------------- */

/* Footer mobile — keep 2×2 grid so Call Us aligns with other action buttons */
@media (max-width: 600px) {
  .footer-links,
  .info-note {
    display: flex !important;
  }
  .footer-section .action-grid,
  .action-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    justify-items: stretch !important;
  }
  .footer-section .action-grid > .action-btn,
  .footer .action-grid > .action-btn {
    display: flex !important;
    width: 100% !important;
    min-height: 44px !important;
    align-self: stretch !important;
    justify-self: stretch !important;
  }
  .footer-section .action-btn:not(.action-grid > .action-btn),
  .footer .action-btn:not(.action-grid > .action-btn) {
    display: flex !important;
  }
}

@media (max-width: 1100px) {
  .fn-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 1024px) {
  .pp-grid, .pp-stats-grid, .fn-layout, .fn-obj-grid {
    grid-template-columns: 1fr !important;
  }

  /* Founder Section Tablet Responsiveness */
  .fn-content {
    padding: 32px 24px !important;
  }
  .fn-cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .fn-sidebar {
    padding: 32px 20px !important;
  }
  .fn-advisors-row {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
  }
  .fn-advisor {
    flex: 1 1 240px !important;
    max-width: 280px !important;
    margin-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .fn-advisor-name,
  .fn-advisor-role,
  .fn-advisor-loc,
  .fn-advisor-bio {
    max-width: 16.5rem !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .fn-quote {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .fn-quote-body {
    text-align: left !important;
    width: 100% !important;
  }
  
  /* 4-Step System Responsiveness */
  .sol-flow {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }
  .sol-step {
    max-width: 280px !important;
  }
  .sol-step-desc {
    max-width: 100% !important;
  }
  .sol-arrow {
    padding-top: 0 !important;
    margin: 8px 0 !important;
  }
  .sol-arrow::before {
    content: '↓' !important;
  }
}

@media (max-width: 768px) {
  body:has(#header-container .nav-container) section {
    padding-top: clamp(2.5rem, 6vw, 3.5rem) !important;
    padding-bottom: 60px !important;
  }

  body:has(#header-container .nav-container) .hero {
    padding-top: clamp(1.25rem, 4vw, 2rem) !important;
  }

  /* Fix ROI Table missing labels */
  .roi-col--before::before {
    content: 'Before AI:';
    font-size: 1rem;
    color: #64748B;
    font-weight: 700;
    margin-right: auto;
  }
  .roi-col--after::before {
    content: 'After AI:';
    font-size: 1rem;
    color: #10B981;
    font-weight: 700;
    margin-right: auto;
  }
  .roi-bar-wrap {
    width: 60% !important;
  }
  
  /* Fix "Problems You Face Every Day" */
  .pp-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Cost of Inefficiency — stack on small screens */
  .pp-stats {
    flex-direction: column !important;
    padding: 28px 24px !important;
  }
  .pp-stats-intro {
    flex: none !important;
    max-width: none !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1) !important;
    padding-bottom: 24px !important;
    margin-bottom: 8px !important;
    text-align: center;
  }
  .pp-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
  }
  .pp-stat-card {
    text-align: center;
  }
  
  /* Fix "The ProAiMax 4-Step System" (Inherited vertical column layout from 1024px) */
  
  /* Fix "Why ProAiMax Works" Mobile Responsiveness */
  .fn-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .fn-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 32px 20px !important;
  }
  .fn-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 32px 20px !important;
  }
  .fn-advisors-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 28px !important;
    width: 100% !important;
  }
  .fn-advisor {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 0 !important;
  }
  .fn-advisor-name,
  .fn-advisor-role,
  .fn-advisor-loc,
  .fn-advisor-bio {
    max-width: 17rem !important;
    text-align: center !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .fn-advisor-img-wrap {
    max-width: 9.5rem !important;
  }
  .fn-heading {
    font-size: 1.8rem !important;
  }
  .fn-subheading {
    font-size: 1rem !important;
  }
  .fn-quote {
    display: flex !important;
    align-items: flex-start !important;
    padding-left: 14px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .fn-quote-mark {
    font-size: 2.25rem !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
  }
  .fn-quote-body {
    flex: 1 !important;
    min-width: 0 !important;
    text-align: left !important;
  }
  .fn-quote p {
    font-size: 0.9375rem !important;
    line-height: 1.55 !important;
  }
  .fn-cta-row {
    justify-content: center !important;
  }
  .fn-cards {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
  .fn-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix "Our Objective is Simple" */
  .fn-obj-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Desktop Frame fix */
  .dashboard-card {
    max-width: 100% !important;
    margin-top: 20px;
  }
  .hero-right {
    margin-top: 20px !important;
    padding: 0 12px;
  }

  .hero-img-wrap {
    max-width: 100%;
  }
  
  /* General containers */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
  }
}

/* Problems grid — 7th card spans one column on tablet/mobile */
@media (max-width: 1024px) {
  .pp-card--full {
    grid-column: span 1 !important;
  }
}

/* Cost of Inefficiency — tablet & mobile */
@media (max-width: 1024px) {
  .pp-stats {
    flex-direction: column !important;
    padding: 28px 20px !important;
    border-radius: 20px !important;
  }

  .pp-stats-intro {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1) !important;
    padding-bottom: 24px !important;
    margin-bottom: 20px !important;
    text-align: center;
  }

  .pp-stats-desc {
    max-width: 22rem !important;
    margin: 0 auto !important;
  }

  .pp-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px 20px !important;
    width: 100% !important;
  }

  .pp-stat {
    padding: 0 4px !important;
  }

  .pp-stat-icon {
    margin-bottom: 12px !important;
  }

  .pp-stat-num {
    font-size: 1.75rem !important;
  }
}

@media (max-width: 520px) {
  .pp-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
