/* ============================================================
   VISTA — Platform Hub & Subpage Styles
   ============================================================ */

/* ── Platform Subnav ── */
.platform-subnav {
  position: sticky;
  top: 76px;
  z-index: 900;
  background: var(--dark-navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.6rem 0;
}
.platform-subnav-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.platform-subnav-inner::-webkit-scrollbar { display: none; }
.subnav-back {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.subnav-back:hover { color: var(--white); }
.subnav-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.subnav-pills {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}
.subnav-pill {
  color: rgba(255,255,255,0.58);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}
.subnav-pill:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.subnav-pill.active {
  color: var(--dark-navy);
  background: var(--accent-green);
  border-color: var(--accent-green);
  font-weight: 700;
}

/* ── Hub 6-Card Grid ── */
.hub-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.hub-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 14px;
  padding: 2.25rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.hub-card:hover {
  border-color: var(--royal-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(34,62,145,0.09);
}
.hub-card.featured {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2845 100%);
  border-color: var(--dark-navy);
}
.hub-card.featured:hover {
  border-color: var(--accent-green);
  box-shadow: 0 14px 40px rgba(17,28,46,0.3);
}
.hub-card-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: rgba(34,62,145,0.08);
  color: var(--royal-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
}
.hub-card.featured .hub-card-icon {
  background: rgba(163,230,75,0.15);
  color: var(--accent-green);
}
.hub-card-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--accent-green);
  color: var(--dark-navy);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}
.hub-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.hub-card.featured h3 { color: var(--white); }
.hub-card > p {
  font-size: 0.91rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.hub-card.featured > p { color: rgba(255,255,255,0.72); }
.hub-card-list {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: grid; gap: 0.35rem;
}
.hub-card-list li {
  font-size: 0.83rem;
  color: var(--text-mid);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.55;
}
.hub-card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.56em;
  width: 5px; height: 5px;
  background: var(--royal-blue);
  border-radius: 50%;
}
.hub-card.featured .hub-card-list li { color: rgba(255,255,255,0.7); }
.hub-card.featured .hub-card-list li::before { background: var(--accent-green); }
.hub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--royal-blue);
  margin-top: auto;
  transition: gap 0.2s;
}
.hub-card.featured .hub-card-link { color: var(--accent-green); }
.hub-card-link:hover { gap: 0.7rem; }

/* ── Feature Sections ── */
.feature-section { padding: 7rem 0; background: var(--white); }
.feature-section.dark { background: var(--dark-navy); }
.feature-section.gray { background: #F7F9FC; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-row.reversed .feature-row-visual { order: -1; }
.feature-row-text.light .section-label { color: var(--accent-green); }
.feature-row-text.light .section-title { color: var(--white); }
.feature-row-text.light .section-title span { color: var(--accent-green); }
.feature-row-text.light .section-body { color: rgba(255,255,255,0.78); }
.feature-checklist {
  list-style: none; padding: 0; margin-top: 2rem;
}
.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.96rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--light-gray);
}
.feature-checklist.light li {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.08);
}
.feature-checklist li:last-child { border-bottom: none; }
.check-icon {
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.6;
}

/* ── Detail Cards Grid ── */
.detail-section { padding: 6rem 0; background: var(--white); }
.detail-section.dark { background: var(--dark-navy); }
.detail-section.gray { background: #F7F9FC; }
.detail-intro {
  max-width: 720px; margin: 0 auto 4rem; text-align: center;
}
.detail-intro.light .section-title { color: var(--white); }
.detail-intro.light .section-title span { color: var(--accent-green); }
.detail-intro.light .section-label { color: var(--accent-green); }
.detail-intro.light .section-body { color: rgba(255,255,255,0.75); }
.detail-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.detail-cards.two-col { grid-template-columns: repeat(2, 1fr); }
.detail-cards.four-col { grid-template-columns: repeat(4, 1fr); }
.detail-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}
.detail-section.dark .detail-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.detail-card:hover {
  border-color: var(--royal-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34,62,145,0.08);
}
.detail-section.dark .detail-card:hover {
  border-color: var(--accent-green);
  box-shadow: none;
}
.detail-card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.detail-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}
.detail-section.dark .detail-card h4 { color: var(--white); }
.detail-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.detail-section.dark .detail-card p { color: rgba(255,255,255,0.62); }

/* ── Stats Bar ── */
.stats-section {
  padding: 5rem 0;
  background: var(--royal-blue);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.stat-num em {
  font-style: normal;
  color: var(--accent-green);
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ── Flywheel Diagram ── */
.flywheel-section { padding: 7rem 0; background: var(--dark-navy); }
.flywheel-intro { max-width: 660px; margin: 0 auto 5rem; text-align: center; }
.flywheel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.flywheel-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.flywheel-circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(163,230,75,0.07);
  border: 2px solid rgba(163,230,75,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  position: relative;
}
.flywheel-circle-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--dark-navy);
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flywheel-circle-icon { font-size: 1.75rem; }
.flywheel-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  max-width: 110px;
}
.flywheel-arrow {
  font-size: 1.6rem;
  color: var(--accent-green);
  padding: 0 0.75rem;
  flex-shrink: 0;
}
.flywheel-outcome {
  margin-top: 3.5rem;
  text-align: center;
  padding: 1.75rem 2.5rem;
  background: rgba(163,230,75,0.07);
  border: 1px solid rgba(163,230,75,0.2);
  border-radius: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.flywheel-outcome p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
}
.flywheel-outcome strong { color: var(--accent-green); }

/* ── Comparison Table ── */
.compare-section { padding: 7rem 0; background: var(--white); }
.compare-section.gray { background: #F7F9FC; }
.compare-intro { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.compare-table {
  max-width: 860px; margin: 0 auto;
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(34,62,145,0.07);
}
.compare-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--dark-navy);
  padding: 1.25rem 2rem;
  gap: 1rem;
}
.compare-col-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare-col-label.feat { color: rgba(255,255,255,0.45); }
.compare-col-label.vista { color: var(--accent-green); }
.compare-col-label.others { color: rgba(255,255,255,0.45); text-align: center; }
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 1rem 2rem;
  gap: 1rem;
  border-bottom: 1px solid var(--light-gray);
  align-items: center;
  transition: background 0.2s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: #F9FAFB; }
.compare-feature {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
}
.compare-vista-cell {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a7a3f;
}
.compare-others-cell {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.yes-icon { color: #1a7a3f; font-size: 1.05rem; }
.no-icon { color: #b91c1c; font-size: 1.05rem; }
.partial-icon { color: #c2770a; font-size: 0.85rem; }

/* ── Device Frames ── */

/* Laptop */
.laptop-wrap {
  filter: drop-shadow(0 25px 55px rgba(0,0,0,0.22));
}
.laptop-frame {
  background: #2a2a2e;
  border-radius: 14px 14px 4px 4px;
  padding: 10px 10px 0;
}
.laptop-camera-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  margin-bottom: 6px;
}
.laptop-camera {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.laptop-screen {
  background: #f4f6fa;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  min-height: 260px;
}
.laptop-base {
  background: #3a3a3e;
  height: 12px;
  border-radius: 0 0 6px 6px;
  position: relative;
}
.laptop-base::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 55px; height: 5px;
  background: #222225;
  border-radius: 3px 3px 0 0;
}

/* iPad Portrait */
.ipad-duo {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
}
.ipad-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.ipad-mode-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-green);
  text-align: center;
}
.ipad-frame {
  background: #1c1c1e;
  border-radius: 24px;
  padding: 16px 11px 22px;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.5),
    inset 0 0 0 1.5px rgba(255,255,255,0.07);
  width: 260px;
  flex-shrink: 0;
}
.ipad-camera {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3a3a3c;
  margin: 0 auto 8px;
}
.ipad-screen {
  background: #f5f6fa;
  border-radius: 12px;
  overflow: hidden;
  min-height: 356px;
}
.ipad-home-bar {
  width: 60px; height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* iPhone */
.phone-wrap {
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
  display: flex;
  justify-content: center;
}
.phone-frame {
  background: #1c1c1e;
  border-radius: 44px;
  padding: 14px 9px 18px;
  width: 220px;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.08);
}
.phone-island {
  width: 80px; height: 26px;
  background: #000;
  border-radius: 18px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: #f5f6fa;
  border-radius: 34px;
  overflow: hidden;
  min-height: 400px;
}
.phone-home-bar {
  width: 90px; height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ── App UI Components (inside device frames) ── */
.app-topbar {
  background: var(--royal-blue);
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-topbar-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.app-topbar-date {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
}
.app-topbar-badge {
  background: var(--accent-green);
  color: var(--dark-navy);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
}
.app-body { padding: 0.65rem; }
.app-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  padding: 0 0.1rem;
}
.app-appt-card {
  background: var(--white);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.4rem;
  border: 1px solid var(--light-gray);
}
.app-appt-card.active {
  border-color: var(--royal-blue);
  background: rgba(34,62,145,0.03);
}
.app-appt-time {
  font-size: 0.6rem;
  color: var(--text-mid);
  margin-bottom: 0.15rem;
}
.app-appt-name {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.1rem;
}
.app-appt-service {
  font-size: 0.65rem;
  color: var(--text-mid);
}
.app-status-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-right: 3px;
  vertical-align: middle;
}
.dot-green { background: #2D8A4E; }
.dot-amber { background: #E67E22; }
.dot-blue  { background: var(--royal-blue); }
.app-chart-btn {
  display: block;
  background: var(--royal-blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  padding: 0.4rem;
  border-radius: 5px;
  margin-top: 0.45rem;
}
.app-divider {
  height: 1px;
  background: var(--light-gray);
  margin: 0.4rem 0;
}

/* Kiosk screen */
.kiosk-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 356px;
  background: var(--white);
  text-align: center;
  padding: 1.75rem 1.25rem;
}
.kiosk-logo-circle {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--royal-blue);
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kiosk-welcome {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.kiosk-sub {
  font-size: 0.68rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.kiosk-btn {
  background: var(--royal-blue);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
  width: 100%;
}
.kiosk-forms-notice {
  background: rgba(230,126,34,0.09);
  border: 1px solid rgba(230,126,34,0.3);
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  font-size: 0.66rem;
  color: #c2770a;
  font-weight: 600;
  width: 100%;
  text-align: left;
  line-height: 1.5;
}
.kiosk-checked-in {
  background: rgba(45,138,78,0.09);
  border: 1px solid rgba(45,138,78,0.3);
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  font-size: 0.66rem;
  color: #1a7a3f;
  font-weight: 600;
  width: 100%;
  text-align: left;
  margin-top: 0.5rem;
}

/* Connect app screen */
.connect-topbar {
  background: var(--dark-navy);
  padding: 0.7rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.connect-brand-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.connect-notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
}
.connect-home-block {
  background: var(--white);
  margin: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}
.connect-block-header {
  background: var(--royal-blue);
  padding: 0.55rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--white);
}
.connect-block-body {
  padding: 0.55rem 0.75rem;
  font-size: 0.66rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.connect-block-cta {
  display: block;
  background: var(--royal-blue);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
  padding: 0.4rem;
  border-radius: 4px;
  margin: 0.4rem 0.75rem 0.65rem;
}
.connect-product-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--light-gray);
}
.connect-product-row:last-child { border-bottom: none; }
.connect-product-thumb {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: rgba(34,62,145,0.1);
  flex-shrink: 0;
}
.connect-product-info { flex: 1; }
.connect-product-name {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.1rem;
}
.connect-product-price { font-size: 0.62rem; color: var(--royal-blue); font-weight: 600; }
.connect-rec-badge {
  font-size: 0.52rem;
  background: rgba(163,230,75,0.18);
  color: #2D6A00;
  padding: 0.12rem 0.35rem;
  border-radius: 3px;
  font-weight: 700;
  white-space: nowrap;
}
.connect-nav-bar {
  display: flex;
  border-top: 1px solid var(--light-gray);
  background: var(--white);
}
.connect-nav-item {
  flex: 1;
  text-align: center;
  padding: 0.55rem 0.2rem;
  font-size: 0.55rem;
  color: var(--text-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.connect-nav-item.active { color: var(--royal-blue); font-weight: 700; }
.connect-nav-icon { font-size: 1rem; }

/* Booking portal screen */
.portal-topbar {
  background: var(--royal-blue);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portal-brand { font-size: 0.82rem; font-weight: 800; color: var(--white); }
.portal-book-now {
  background: var(--accent-green);
  color: var(--dark-navy);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 4px;
}
.portal-service-card {
  background: var(--white);
  margin: 0.5rem;
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--light-gray);
}
.portal-service-name { font-size: 0.78rem; font-weight: 700; color: var(--dark-navy); margin-bottom: 0.25rem; }
.portal-service-meta { display: flex; justify-content: space-between; font-size: 0.66rem; color: var(--text-mid); }
.portal-service-price { color: var(--royal-blue); font-weight: 600; }
.portal-tag {
  display: inline-block;
  font-size: 0.58rem;
  background: rgba(34,62,145,0.08);
  color: var(--royal-blue);
  padding: 0.12rem 0.4rem;
  border-radius: 3px;
  font-weight: 600;
  margin-top: 0.35rem;
}
.portal-rec-strip {
  margin: 0 0.5rem 0.5rem;
  padding: 0.6rem 0.75rem;
  background: rgba(163,230,75,0.09);
  border: 1px solid rgba(163,230,75,0.28);
  border-radius: 8px;
}
.portal-rec-title { font-size: 0.65rem; font-weight: 700; color: #2D6A00; margin-bottom: 0.25rem; }
.portal-rec-item { font-size: 0.65rem; color: var(--dark-navy); font-weight: 500; }

/* EHR / Chart screen */
.chart-topbar {
  background: #2a2a2e;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chart-topbar-title { font-size: 0.72rem; font-weight: 700; color: var(--white); }
.chart-lock-badge {
  background: rgba(163,230,75,0.15);
  color: var(--accent-green);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.18rem 0.45rem;
  border-radius: 3px;
}
.chart-body { padding: 0.65rem; background: #f5f6fa; }
.chart-section-head {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin: 0.6rem 0 0.3rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--light-gray);
}
.chart-field {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  padding: 0.45rem 0.6rem;
  margin-bottom: 0.35rem;
}
.chart-field-label { font-size: 0.58rem; color: var(--text-mid); margin-bottom: 0.1rem; }
.chart-field-value { font-size: 0.7rem; color: var(--dark-navy); font-weight: 500; }
.chart-sign-row {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.chart-btn-lock {
  flex: 1;
  background: var(--royal-blue);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.45rem;
  border-radius: 5px;
  text-align: center;
}
.chart-btn-review {
  flex: 1;
  background: rgba(34,62,145,0.08);
  color: var(--royal-blue);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.45rem;
  border-radius: 5px;
  text-align: center;
  border: 1px solid var(--royal-blue);
}

/* ── Callout Box ── */
.callout-box {
  background: rgba(34,62,145,0.06);
  border-left: 4px solid var(--royal-blue);
  border-radius: 0 10px 10px 0;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}
.callout-box.green {
  background: rgba(163,230,75,0.08);
  border-color: #5cb85c;
}
.callout-box.dark {
  background: rgba(255,255,255,0.04);
  border-color: var(--accent-green);
}
.callout-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 0.6rem;
}
.callout-box.green .callout-title { color: #2D6A00; }
.callout-box.dark .callout-title { color: var(--accent-green); }
.callout-body {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--text-mid);
}
.callout-box.dark .callout-body { color: rgba(255,255,255,0.78); }

/* ── CTA Section (subpage variant) ── */
.subpage-cta {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #1a3078 100%);
  padding: 6rem 0;
  text-align: center;
  color: var(--white);
}
.subpage-cta h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.subpage-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.subpage-cta .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page intro block ── */
.page-intro-section { padding: 5.5rem 0; background: var(--white); }
.page-intro-section.gray { background: #F7F9FC; }
.page-intro-inner { max-width: 780px; margin: 0 auto; text-align: center; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hub-cards { grid-template-columns: repeat(2, 1fr); }
  .ipad-duo { gap: 1.5rem; }
  .ipad-frame { width: 230px; }
}
@media (max-width: 900px) {
  .hub-cards { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 3rem; }
  .feature-row.reversed .feature-row-visual { order: 0; }
  .detail-cards { grid-template-columns: repeat(2, 1fr); }
  .detail-cards.four-col { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .flywheel { gap: 0.5rem; }
  .flywheel-arrow { padding: 0 0.25rem; }
  .ipad-duo { gap: 1rem; }
  .ipad-frame { width: 200px; }
  .ipad-screen { min-height: 295px; }
  .kiosk-screen { min-height: 295px; }
  .compare-header,
  .compare-row { padding: 0.85rem 1.25rem; }
}
@media (max-width: 680px) {
  .hub-cards { grid-template-columns: 1fr; }
  .ipad-duo { flex-direction: column; align-items: center; }
  .ipad-frame { width: 260px; }
  .ipad-screen { min-height: 356px; }
  .kiosk-screen { min-height: 356px; }
  .detail-cards { grid-template-columns: 1fr; }
  .detail-cards.two-col { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .flywheel { flex-direction: column; align-items: center; }
  .flywheel-arrow { transform: rotate(90deg); }
  .compare-header { grid-template-columns: 1.5fr 1fr 1fr; }
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .feature-section { padding: 5rem 0; }
  .detail-section { padding: 4rem 0; }
  .flywheel-section { padding: 5rem 0; }
  .compare-section { padding: 5rem 0; }
}
