/* ============================================================
   CareAxes HMIS page-rebuild v2 — fresh-slate widget styles.
   Companion to careaxes-product.css. Loaded only on /careaxes-hmis
   (or wherever the v2 widgets are used).
   ============================================================ */

/* ============================================================
   Section 3 · Outcomes Strip
   3 quantified outcomes, each anchored to a real customer mark.
   Quiet financial-report tone — type-led, no images, restrained.
   ============================================================ */
.suja-pp-outcomes-section {
  background: #ffffff;
  padding: clamp(80px, 8vw, 112px) 0;
}
.suja-pp-outcomes-section .suja-pp-container {
  max-width: 1366px; width: 100%; margin: 0 auto; padding: 0 24px;
}
.suja-pp-outcomes-eyebrow {
  display: inline-block;
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--eco-teal, #0891b2);
  margin: 0 0 36px;
}
.suja-pp-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
.suja-pp-outcome-tile {
  padding: 40px 32px;
  display: flex; flex-direction: column;
  border-left: 1px solid #E2E8F0;
}
.suja-pp-outcome-tile:first-child { border-left: 0; }
.suja-pp-outcome-number {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--eco-ink, #0c1e35);
  margin: 0 0 12px;
}
.suja-pp-outcome-label {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 15px; line-height: 1.55;
  color: var(--eco-text, #475569);
  margin: 0 0 32px;
  max-width: 320px;
  flex: 1 0 auto;
}
.suja-pp-outcome-customer {
  display: flex; flex-direction: column; gap: 8px;
}
.suja-pp-outcome-customer-logo {
  max-height: 32px; width: auto; opacity: 0.75;
}
.suja-pp-outcome-customer-name {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 13px; font-weight: 500;
  color: var(--eco-muted, #64748b);
  margin: 0;
}
.suja-pp-outcomes-footnote {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 13px; line-height: 1.55;
  color: var(--eco-muted, #64748b);
  margin: 24px 0 0;
  text-align: left;
}
.suja-pp-outcomes-methodology {
  color: var(--eco-teal, #0891b2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
  margin-left: 4px;
}
.suja-pp-outcomes-methodology:hover { border-bottom-color: var(--eco-teal, #0891b2); }
@media (max-width: 1099px) {
  .suja-pp-outcomes-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .suja-pp-outcome-tile { border-left: 0; border-bottom: 1px solid #E2E8F0; }
  .suja-pp-outcome-tile:last-child { border-bottom: 0; }
  .suja-pp-outcome-label { max-width: none; }
}

/* ============================================================
   Sections 4 + 6 · Split Showcase
   2-column capability block (type + screenshot). Adjacent
   sections flip panel_order so visual rhythm alternates.
   ============================================================ */
.suja-pp-split-section {
  /* Transparent so the section inherits the page tint (#edf4f9), matching the
     site-wide section-background standard and the neighbouring sections. */
  background: transparent;
  padding: clamp(96px, 9vw, 128px) 0;
}
.suja-pp-split-section.suja-pp-split-section--text-right {
  background: transparent;
}
.suja-pp-split-section .suja-pp-container {
  max-width: 1366px; width: 100%; margin: 0 auto; padding: 0 24px;
}
.suja-pp-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.suja-pp-split-section--text-right .suja-pp-split-grid {
  grid-template-columns: 1.05fr 1fr;
}
.suja-pp-split-section--text-right .suja-pp-split-text  { order: 2; }
.suja-pp-split-section--text-right .suja-pp-split-visual { order: 1; }

.suja-pp-split-text { max-width: 480px; }
.suja-pp-split-eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--eco-teal, #0891b2);
  margin: 0 0 18px;
}
/* Teal dot before the eyebrow — matches the SujaScribe showcase eyebrow. */
.suja-pp-split-eyebrow::before {
  content: ""; flex: 0 0 auto;
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; margin-right: 9px;
}
.suja-pp-split-headline {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15; font-weight: 700; letter-spacing: -0.02em;
  color: var(--eco-ink, #0c1e35);
  margin: 0 0 20px;
}
/* Higher specificity than the global `.suja-pp-page h2 { margin:0 }` reset so
   the heading keeps its gap above the description. */
.suja-pp-split-text .suja-pp-split-headline { margin-bottom: clamp(16px, 1.6vw, 22px); }
.suja-pp-split-text .suja-pp-split-eyebrow  { margin-bottom: 18px; }
.suja-pp-split-subhead {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 17px; line-height: 1.65;
  color: var(--eco-text, #475569);
  margin: 0 0 28px;
}
.suja-pp-split-bullets {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.suja-pp-split-bullet {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid #E2E8F0;
}
.suja-pp-split-bullet:last-child { border-bottom: 1px solid #E2E8F0; }
.suja-pp-split-bullet-marker {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--eco-teal, #0891b2);
  margin-top: 8px;
}
.suja-pp-split-bullet-label {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--eco-ink, #0c1e35);
  margin: 0 0 4px;
}
.suja-pp-split-bullet-body {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 14px; line-height: 1.55;
  color: var(--eco-text, #475569);
  margin: 0;
}
.suja-pp-split-link {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 15px; font-weight: 600;
  color: var(--eco-ink, #0c1e35);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.suja-pp-split-link:hover { border-bottom-color: var(--eco-ink, #0c1e35); }

.suja-pp-split-visual { min-width: 0; }
.suja-pp-split-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  /* Teal glow to match the SujaScribe showcase image (was a heavy grey shadow). */
  box-shadow: 0 30px 60px -30px rgba(8, 145, 178, 0.4);
  background: #eef2f7;
  aspect-ratio: 16 / 11;
}
.suja-pp-split-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .suja-pp-split-text, .suja-pp-split-photo {
    opacity: 0; animation: suja-pp-split-fadein 700ms ease-out forwards;
  }
  .suja-pp-split-text  { animation-delay: 100ms; }
  .suja-pp-split-photo { animation-delay: 240ms; }
}
@keyframes suja-pp-split-fadein {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1099px) {
  .suja-pp-split-grid,
  .suja-pp-split-section--text-right .suja-pp-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .suja-pp-split-section--text-right .suja-pp-split-text  { order: 2; }
  .suja-pp-split-section--text-right .suja-pp-split-visual { order: 1; }
  .suja-pp-split-text { max-width: none; }
  .suja-pp-split-photo { aspect-ratio: 4 / 3; }
}
@media (max-width: 767px) {
  .suja-pp-split-section { padding: 64px 0; }
}

/* AI Suite page (page-id-33401): align the split showcase ("AI Conversation
   Demo") to the SujaScribe showcase above it — same 1120px content width,
   equal 1fr 1fr columns, matching gap and 4/3 image — so the image is the same
   size and its edges line up. Scoped to the page so CareAxes is untouched. */
body.page-id-33401 .suja-pp-split-section .suja-pp-container { max-width: 1168px; }
body.page-id-33401 .suja-pp-split-grid,
body.page-id-33401 .suja-pp-split-section--text-right .suja-pp-split-grid {
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 4.5vw, 60px);
}
body.page-id-33401 .suja-pp-split-text  { max-width: none; }
body.page-id-33401 .suja-pp-split-photo { aspect-ratio: 4 / 3; }

/* (The SujaScribe image LEFT / content RIGHT arrangement on the AI page is now
   a first-class widget option — Layout: "Split (media left, content + bullets
   right)" — which sets .is-media-left. The old page-scoped column-order override
   was removed so that per-section choice is actually honoured.) */

/* ============================================================
   Section 12 · Enterprise CTA
   Split layout: type-led copy left, CTA card right. Ink bg.
   ============================================================ */
.suja-pp-cta-section {
  background: #0c1e35;
  color: #ffffff;
  padding: clamp(112px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.suja-pp-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(8, 145, 178, 0.18), transparent 60%);
  pointer-events: none;
}
.suja-pp-cta-section .suja-pp-container {
  max-width: 1366px; width: 100%; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
}
.suja-pp-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 5vw, 80px);
  align-items: start;
}
.suja-pp-cta-text { max-width: 580px; }
.suja-pp-cta-eyebrow {
  display: inline-block;
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #22d3ee;
  margin: 0 0 18px;
}
.suja-pp-cta-headline {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12; font-weight: 700; letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 20px;
}
.suja-pp-cta-subhead {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 18px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 32px;
}
.suja-pp-cta-checklist {
  list-style: none; padding: 0; margin: 0;
}
.suja-pp-cta-check {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 15px; line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
}
.suja-pp-cta-check-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.18);
  color: #22d3ee;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.suja-pp-cta-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.4);
}
.suja-pp-cta-card-heading {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 19px; line-height: 1.3; font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}
.suja-pp-cta-card-sub {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 14px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px;
}
.suja-pp-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  background: #FF6B35; border: 1px solid #FF6B35;
  color: #ffffff;
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-weight: 600; font-size: 16px;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.suja-pp-cta-btn:hover {
  background: #e85a23; border-color: #e85a23;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px rgba(255, 107, 53, 0.6);
}
.suja-pp-cta-link {
  margin-top: 14px;
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid transparent;
  align-self: center;
  transition: color .2s ease, border-color .2s ease;
}
.suja-pp-cta-link:hover { color: #ffffff; border-bottom-color: rgba(255, 255, 255, 0.4); }
.suja-pp-cta-availability {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}
.suja-pp-cta-availability-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2);
  animation: suja-pp-cta-pulse 2s ease-in-out infinite;
}
@keyframes suja-pp-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.05); }
}

@media (max-width: 1099px) {
  .suja-pp-cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .suja-pp-cta-text { max-width: none; }
}
@media (max-width: 767px) {
  .suja-pp-cta-section { padding: 80px 0; }
  .suja-pp-cta-card { padding: 24px; }
}

/* ============================================================
   Section 5 · Lottie Showcase (AI Copilot)
   Dark ink section with motion graphic + 3 mini-stats.
   ============================================================ */
.suja-pp-lottie-section {
  background: #0c1e35;
  color: #ffffff;
  padding: clamp(96px, 9vw, 128px) 0;
}
.suja-pp-lottie-section .suja-pp-container {
  max-width: 1366px; width: 100%; margin: 0 auto; padding: 0 24px;
}
.suja-pp-lottie-head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.suja-pp-lottie-eyebrow {
  display: inline-block;
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #22d3ee;
  margin: 0 0 18px;
}
.suja-pp-lottie-headline {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15; font-weight: 700; letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 18px;
}
.suja-pp-lottie-subhead {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 17px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.suja-pp-lottie-stage {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
}
.suja-pp-lottie-fallback {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.suja-pp-lottie-fallback img {
  width: 100%; height: auto; display: block;
}
.suja-pp-lottie-fallback-caption {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.suja-pp-lottie-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 720px;
  margin: 48px auto 0;
}
.suja-pp-lottie-stat {
  text-align: center;
}
.suja-pp-lottie-stat-number {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700; letter-spacing: -0.02em;
  color: #22d3ee;
  margin: 0 0 6px;
}
.suja-pp-lottie-stat-label {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 13px; line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
@media (max-width: 767px) {
  .suja-pp-lottie-stats { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   Section 7 · Video Block (90-second tour)
   ============================================================ */
.suja-pp-video-section {
  background: #ffffff;
  padding: clamp(96px, 9vw, 128px) 0;
}
.suja-pp-video-section .suja-pp-container {
  max-width: 1366px; width: 100%; margin: 0 auto; padding: 0 24px;
}
.suja-pp-video-head {
  text-align: center; max-width: 720px; margin: 0 auto 48px;
}
.suja-pp-video-eyebrow {
  display: inline-block;
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--eco-teal, #0891b2);
  margin: 0 0 18px;
}
.suja-pp-video-headline {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15; font-weight: 700; letter-spacing: -0.02em;
  color: var(--eco-ink, #0c1e35);
  margin: 0 0 18px;
}
.suja-pp-video-subhead {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 17px; line-height: 1.65;
  color: var(--eco-text, #475569);
  margin: 0;
}
.suja-pp-video-player {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(15, 23, 42, 0.25);
  background: #eef2f7;
  position: relative;
  aspect-ratio: 16 / 9;
}
.suja-pp-video-player video {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
}
.suja-pp-video-placeholder {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.suja-pp-video-placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.suja-pp-video-play-button {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--eco-ink, #0c1e35);
  font-size: 28px;
  box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.4);
  padding-left: 6px;
}
.suja-pp-video-placeholder-caption {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
}
.suja-pp-video-chapters {
  list-style: none; padding: 0; margin: 32px auto 0;
  display: flex; flex-wrap: wrap; gap: 28px;
  max-width: 1100px;
  justify-content: center;
}
.suja-pp-video-chapter {
  display: flex; align-items: center; gap: 10px;
}
.suja-pp-video-chapter-time {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 13px; font-weight: 700;
  color: var(--eco-teal, #0891b2);
  background: rgba(8, 145, 178, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}
.suja-pp-video-chapter-label {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 14px; font-weight: 500;
  color: var(--eco-text, #475569);
}

/* ============================================================
   Section 8 · Specialty Tabs
   ============================================================ */
.suja-pp-spec-section {
  background: #ffffff;
  padding: clamp(96px, 9vw, 128px) 0;
}
.suja-pp-spec-section .suja-pp-container {
  max-width: 1366px; width: 100%; margin: 0 auto; padding: 0 24px;
}
.suja-pp-spec-head {
  max-width: 720px; margin: 0 0 48px;
}
.suja-pp-spec-eyebrow {
  display: inline-block;
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--eco-teal, #0891b2);
  margin: 0 0 18px;
}
.suja-pp-spec-headline {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15; font-weight: 700; letter-spacing: -0.02em;
  color: var(--eco-ink, #0c1e35);
  margin: 0 0 18px;
}
.suja-pp-spec-subhead {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 17px; line-height: 1.65;
  color: var(--eco-text, #475569);
  margin: 0;
}
.suja-pp-spec-tab-bar {
  display: flex; flex-wrap: wrap; gap: 4px;
  border-bottom: 1px solid #E2E8F0;
  margin: 0 0 40px;
}
.suja-pp-spec-tab {
  background: transparent;
  border: 0;
  padding: 14px 20px;
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 15px; font-weight: 600;
  color: var(--eco-muted, #64748b);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  position: relative;
  margin-bottom: -1px;
}
.suja-pp-spec-tab:hover { color: var(--eco-ink, #0c1e35); }
.suja-pp-spec-tab.is-active {
  color: var(--eco-ink, #0c1e35);
  border-bottom-color: var(--eco-teal, #0891b2);
}
.suja-pp-spec-panel { display: none; }
.suja-pp-spec-panel.is-active { display: block; animation: suja-pp-spec-fadein 280ms ease-out; }
@keyframes suja-pp-spec-fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.suja-pp-spec-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.suja-pp-spec-positioning {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4; font-weight: 600; letter-spacing: -0.01em;
  color: var(--eco-ink, #0c1e35);
  margin: 0 0 24px;
}
.suja-pp-spec-bullets {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.suja-pp-spec-bullet {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 15px; line-height: 1.6;
  color: var(--eco-text, #475569);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #E2E8F0;
}
.suja-pp-spec-bullet:last-child { border-bottom: 0; }
.suja-pp-spec-bullet::before {
  content: "";
  position: absolute;
  left: 0; top: 17px;
  width: 14px; height: 2px;
  background: var(--eco-teal, #0891b2);
  border-radius: 2px;
}
.suja-pp-spec-link {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 15px; font-weight: 600;
  color: var(--eco-ink, #0c1e35);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.suja-pp-spec-link:hover { border-bottom-color: var(--eco-ink, #0c1e35); }
.suja-pp-spec-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.22);
  aspect-ratio: 14 / 9;
  background: #eef2f7;
}
.suja-pp-spec-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
@media (max-width: 1099px) {
  .suja-pp-spec-panel-grid { grid-template-columns: 1fr; gap: 32px; }
  .suja-pp-spec-panel-visual { order: -1; }
}
@media (max-width: 767px) {
  .suja-pp-spec-tab-bar { overflow-x: auto; flex-wrap: nowrap; scroll-snap-type: x mandatory; }
  .suja-pp-spec-tab { white-space: nowrap; scroll-snap-align: start; }
}

/* ============================================================
   Section 9 · Customer Story
   ============================================================ */
.suja-pp-story-section {
  background: #f6f8fb;
  padding: clamp(96px, 9vw, 128px) 0;
}
.suja-pp-story-section .suja-pp-container {
  max-width: 1366px; width: 100%; margin: 0 auto; padding: 0 24px;
}
.suja-pp-story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.suja-pp-story-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #eef2f7;
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.22);
}
.suja-pp-story-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.suja-pp-story-text { max-width: 560px; }
.suja-pp-story-eyebrow {
  display: inline-block;
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--eco-teal, #0891b2);
  margin: 0 0 24px;
}
.suja-pp-story-quote {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.4; font-weight: 600; letter-spacing: -0.015em;
  color: var(--eco-ink, #0c1e35);
  margin: 0 0 24px;
  position: relative;
  padding-left: 28px;
}
.suja-pp-story-quote-mark {
  position: absolute;
  left: 0; top: -10px;
  font-size: 56px;
  line-height: 1;
  color: var(--eco-teal, #0891b2);
  font-family: Georgia, serif;
}
.suja-pp-story-attribution {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 14px; line-height: 1.5;
  color: var(--eco-text, #475569);
  margin: 0 0 28px;
}
.suja-pp-story-attribution strong {
  display: block;
  font-size: 16px;
  color: var(--eco-ink, #0c1e35);
  font-weight: 700;
  margin-bottom: 2px;
}
.suja-pp-story-attribution span {
  display: block;
  color: var(--eco-muted, #64748b);
}
.suja-pp-story-chips {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin: 0 0 24px;
}
.suja-pp-story-chip {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px 20px;
  flex: 1 1 200px;
}
.suja-pp-story-chip-number {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--eco-ink, #0c1e35);
  margin: 0 0 4px;
}
.suja-pp-story-chip-label {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 13px;
  color: var(--eco-muted, #64748b);
  margin: 0;
}
.suja-pp-story-link {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 15px; font-weight: 600;
  color: var(--eco-ink, #0c1e35);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.suja-pp-story-link:hover { border-bottom-color: var(--eco-ink, #0c1e35); }
@media (max-width: 1099px) {
  .suja-pp-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .suja-pp-story-photo { aspect-ratio: 3 / 4; max-width: 480px; margin: 0 auto; }
  .suja-pp-story-text { max-width: none; }
}

/* ============================================================
   Section 10 · Workflow Timeline (Implementation)
   ============================================================ */
.suja-pp-timeline-section {
  background: #ffffff;
  padding: clamp(96px, 9vw, 128px) 0;
}
.suja-pp-timeline-section .suja-pp-container {
  max-width: 1366px; width: 100%; margin: 0 auto; padding: 0 24px;
}
.suja-pp-timeline-head {
  max-width: 720px; margin: 0 0 56px;
}
.suja-pp-timeline-eyebrow {
  display: inline-block;
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--eco-teal, #0891b2);
  margin: 0 0 18px;
}
.suja-pp-timeline-headline {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15; font-weight: 700; letter-spacing: -0.02em;
  color: var(--eco-ink, #0c1e35);
  margin: 0 0 18px;
}
.suja-pp-timeline-subhead {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 17px; line-height: 1.65;
  color: var(--eco-text, #475569);
  margin: 0;
}
.suja-pp-timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}
.suja-pp-timeline-steps::before {
  content: "";
  position: absolute;
  top: 80px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(to right, transparent, #cbd5e1, transparent);
  z-index: 0;
}
.suja-pp-timeline-step {
  position: relative; z-index: 1;
  text-align: center;
}
.suja-pp-timeline-step-illustration {
  margin: 0 auto 20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #eef2f7;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 24px -10px rgba(15, 23, 42, 0.12);
}
.suja-pp-timeline-step-illustration img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.suja-pp-timeline-step-number {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--eco-teal, #0891b2);
  margin: 0 0 8px;
  text-transform: uppercase;
}
.suja-pp-timeline-step-week {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 13px; font-weight: 600;
  color: var(--eco-muted, #64748b);
  margin: 0 0 4px;
}
.suja-pp-timeline-step-name {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--eco-ink, #0c1e35);
  margin: 0 0 8px;
}
.suja-pp-timeline-step-desc {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 14px; line-height: 1.55;
  color: var(--eco-text, #475569);
  margin: 0;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.suja-pp-timeline-support {
  margin: 48px 0 0;
  text-align: center;
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 14px;
  color: var(--eco-muted, #64748b);
  padding: 16px 24px;
  background: #f6f8fb;
  border-radius: 999px;
  display: inline-block;
  width: auto;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
@media (max-width: 1099px) {
  .suja-pp-timeline-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .suja-pp-timeline-steps::before { display: none; }
}
@media (max-width: 767px) {
  .suja-pp-timeline-steps { grid-template-columns: 1fr; }
  .suja-pp-timeline-step-illustration { width: 100px; height: 100px; }
}

/* ============================================================
   Section 11 · Compliance Strip
   Marks row + 3-pillar grid + security brief link.
   ============================================================ */
.suja-pp-comp-section {
  background: #f6f8fb;
  padding: clamp(80px, 7vw, 112px) 0;
}
.suja-pp-comp-section .suja-pp-container {
  max-width: 1366px; width: 100%; margin: 0 auto; padding: 0 24px;
}
.suja-pp-comp-eyebrow {
  display: inline-block;
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--eco-teal, #0891b2);
  margin: 0 0 32px;
}
.suja-pp-comp-marks {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  margin: 0 0 64px;
  padding: 0 0 48px;
  border-bottom: 1px solid #E2E8F0;
}
.suja-pp-comp-mark, .suja-pp-comp-mark-link {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none;
}
.suja-pp-comp-mark-img {
  max-height: 56px; width: auto; opacity: 0.75;
  filter: grayscale(0.4);
  transition: opacity .2s ease, filter .2s ease;
}
.suja-pp-comp-mark-link:hover .suja-pp-comp-mark-img,
.suja-pp-comp-mark:hover .suja-pp-comp-mark-img {
  opacity: 1; filter: grayscale(0);
}
.suja-pp-comp-mark-label {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 12px; font-weight: 500;
  color: var(--eco-muted, #64748b);
  text-align: center;
}
.suja-pp-comp-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0 0 32px;
}
.suja-pp-comp-pillar {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
}
.suja-pp-comp-pillar-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(8, 145, 178, 0.08);
  color: var(--eco-teal, #0891b2);
  margin: 0 0 16px;
}
.suja-pp-comp-pillar-headline {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--eco-ink, #0c1e35);
  margin: 0 0 8px;
}
.suja-pp-comp-pillar-body {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 14px; line-height: 1.55;
  color: var(--eco-text, #475569);
  margin: 0;
}
.suja-pp-comp-link {
  font-family: var(--font-heading, "Plus Jakarta Sans", sans-serif);
  font-size: 14px; font-weight: 600;
  color: var(--eco-teal, #0891b2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.suja-pp-comp-link:hover { border-bottom-color: var(--eco-teal, #0891b2); }
@media (max-width: 1099px) {
  .suja-pp-comp-marks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .suja-pp-comp-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .suja-pp-comp-marks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
