/* Benefit proof blocks — shared across home, landing, pricing */

.proof-strip-section {
  padding: 48px 0;
  background: var(--bg-1, #f8fafc);
  border-block: 1px solid var(--border-0, #e8edf3);
}

.proof-strip-section .section-title {
  text-align: center;
  margin-bottom: 8px;
}

.proof-strip-section .section-subtitle {
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-1, #475569);
  padding-inline: clamp(24px, 10%, 160px);
}

/* Legacy 3-column grid (deprecated — use .proof-blocks) */
.proof-strip-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Stacked proof blocks — full-width media for screenshots / GIF */
.proof-blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.proof-block {
  background: #fff;
  border: 1px solid var(--border-0, #e8edf3);
  border-radius: var(--r-xl, 26px);
  overflow: hidden;
  box-shadow: var(--shadow-md, 0 4px 16px rgba(0, 0, 0, 0.08));
}

.proof-block-media {
  background: #e2e8f0;
  line-height: 0;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-block-media img,
.proof-block-media video {
  width: 100%;
  max-height: 420px;
  height: auto;
  display: block;
  object-fit: contain;
  background: #f1f5f9;
}

.proof-block-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.proof-block-body h3 {
  font-family: var(--font-h, 'Outfit', system-ui, sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-0, #0f172a);
  margin: 0;
}

.proof-block-body p {
  font-size: 0.9375rem;
  color: var(--text-1, #475569);
  line-height: 1.55;
  margin: 0;
}

.proof-block-body .proof-chip {
  margin-top: 4px;
}

.proof-card {
  background: #fff;
  border: 1px solid var(--border-0, #e8edf3);
  border-radius: var(--r-l, 20px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.06));
  transition: box-shadow 0.2s, transform 0.2s;
}

.proof-card:hover {
  box-shadow: var(--shadow-md, 0 4px 16px rgba(0,0,0,0.08));
  transform: translateY(-2px);
}

.proof-card-visual {
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  line-height: 0;
  min-height: 180px;
}

.proof-card-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.proof-card h3 {
  font-family: var(--font-h, 'Outfit', system-ui, sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-0, #0f172a);
}

.proof-card p {
  font-size: 0.875rem;
  color: var(--text-1, #475569);
  line-height: 1.5;
  flex: 1;
}

.proof-card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue, #2196F3);
  text-decoration: none;
}

.proof-card-link:hover {
  text-decoration: underline;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 8px;
}

.proof-chip--demo {
  background: rgba(33, 150, 243, 0.1);
  color: #1565c0;
  border: 1px solid rgba(33, 150, 243, 0.2);
}

.proof-chip--data {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.proof-chip--policy {
  background: rgba(100, 116, 139, 0.1);
  color: #475569;
  border: 1px solid rgba(100, 116, 139, 0.2);
}

/* ROI calculator */
.roi-section {
  padding: 56px 0;
}

.roi-section .section-title {
  text-align: center;
  margin-bottom: 8px;
}

.roi-section .section-subtitle {
  text-align: center;
  margin-bottom: 28px;
  color: var(--text-1, #475569);
  padding-inline: clamp(24px, 10%, 160px);
}

.roi-calculator {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-0, #e8edf3);
  border-radius: var(--r-xl, 26px);
  padding: 28px 32px;
  box-shadow: var(--shadow-md, 0 4px 16px rgba(0,0,0,0.08));
}

.roi-field {
  margin-bottom: 18px;
}

.roi-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-0, #0f172a);
  margin-bottom: 6px;
}

.roi-field input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border-1, #d4dce8);
  border-radius: 10px;
  font-family: var(--font-b, 'Inter', system-ui, sans-serif);
  font-size: 1rem;
}

.roi-field input:focus {
  outline: none;
  border-color: var(--blue, #2196F3);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.15);
}

.roi-field-hint {
  font-size: 0.75rem;
  color: var(--text-2, #64748b);
  margin-top: 4px;
}

.roi-result {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-0, #e8edf3);
}

.roi-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  font-size: 0.9375rem;
}

.roi-result-row strong {
  font-family: var(--font-h, 'Outfit', system-ui, sans-serif);
  font-size: 1.25rem;
  color: var(--text-0, #0f172a);
}

.roi-result-row.roi-savings strong {
  color: var(--green, #16a34a);
}

.roi-disclaimer {
  font-size: 0.72rem;
  color: var(--text-2, #64748b);
  line-height: 1.5;
  margin-top: 16px;
}

/* Mini-drama (without vs with Barberium — SaaS purchase benefits) */
.mini-drama-section {
  padding: 56px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.mini-drama-hook {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-1, #64748b);
  margin: 0 0 12px;
}

.mini-drama-section .section-title {
  text-align: center;
  margin-bottom: 8px;
}

.mini-drama-section .section-subtitle {
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-1, #475569);
  padding-inline: clamp(24px, 10%, 160px);
}

.mini-drama-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.mini-drama-panel {
  border-radius: var(--r-l, 20px);
  padding: 24px 26px;
  border: 1px solid var(--border-0, #e8edf3);
}

.mini-drama-panel--without {
  background: #fff5f5;
  border-color: rgba(239, 68, 68, 0.2);
}

.mini-drama-panel--with {
  background: #f0fdf4;
  border-color: rgba(22, 163, 74, 0.22);
}

.mini-drama-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mini-drama-panel--without .mini-drama-label {
  color: #b91c1c;
}

.mini-drama-panel--with .mini-drama-label {
  color: #15803d;
}

.mini-drama-beats {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mini-drama-beats li {
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-0, #0f172a);
  line-height: 1.55;
  margin: 0 0 12px;
  padding-left: 18px;
}

.mini-drama-beats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mini-drama-panel--without .mini-drama-beats li::before {
  background: #f87171;
}

.mini-drama-panel--with .mini-drama-beats li::before {
  background: #4ade80;
}

.mini-drama-beats li:last-child {
  margin-bottom: 0;
}

.mini-drama-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 24px;
}

.mini-drama-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue, #2196F3);
  text-decoration: none;
}

.mini-drama-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .mini-drama-grid {
    grid-template-columns: 1fr;
  }
}

/* Founder proof block (landing) */
.founder-proof-section {
  padding: 56px 0;
  background: #fff;
}

.founder-proof-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto;
}

.founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1565C0, #42A5F5);
  color: #fff;
  font-family: var(--font-h, 'Outfit', system-ui, sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-proof-inner h2 {
  font-family: var(--font-h, 'Outfit', system-ui, sans-serif);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.founder-proof-inner p {
  color: var(--text-1, #475569);
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.founder-proof-inner a {
  color: var(--blue, #2196F3);
  font-weight: 600;
}

/* Visual features grid (home + landing) — 3 per row, screenshot cards */
.features-grid.features-grid--visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.features-grid--visual .feature-card--visual {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-l, 20px);
  border: 1px solid var(--border-0, #e8edf3);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.features-grid--visual .feature-card--visual:hover {
  box-shadow: var(--shadow-md, 0 4px 16px rgba(0, 0, 0, 0.08));
  transform: translateY(-2px);
}

.feature-card-media {
  background: #f1f5f9;
  line-height: 0;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.feature-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.feature-card-body h3 {
  font-family: var(--font-h, 'Outfit', system-ui, sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-0, #0f172a);
  margin: 0;
}

.feature-card-body p {
  font-size: 0.8125rem;
  color: var(--text-1, #475569);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

/* Feature cards with proof links (home, landing) */
.feature-card--proof {
  display: flex;
  flex-direction: column;
}

.feature-proof-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue, #2196F3);
  text-decoration: none;
  margin-top: 4px;
}

.feature-proof-link:hover {
  text-decoration: underline;
}

.feature-card .proof-chip {
  margin-top: 4px;
  align-self: flex-start;
}

.hero-kicker {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1, #475569);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.setup-after-steps {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}

.setup-help-note {
  margin-top: 0;
}

.setup-cta-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--blue, #2196F3);
  text-decoration: none;
}

.setup-cta-link:hover {
  text-decoration: underline;
}

.instruction-grab {
  font-size: 1.05rem;
  color: var(--text-1, #475569);
  margin-bottom: 8px;
  font-style: italic;
}

.instruction-step-benefit {
  font-size: 0.9375rem;
  color: var(--text-1, #475569);
  margin-bottom: 12px;
}

.instruction-close-recap {
  font-size: 0.9375rem;
  color: var(--text-1, #475569);
  margin-bottom: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing-rhetorical {
  font-size: 1.05rem;
  color: var(--text-1, #475569);
  margin-top: 8px;
  margin-bottom: 0;
  font-style: italic;
  text-align: left;
}

.pricing-proof-callout {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--bg-1, #f8fafc);
  border: 1px solid var(--border-0, #e8edf3);
  border-radius: 12px;
  font-size: 0.875rem;
  color: var(--text-1, #475569);
}

.pricing-proof-callout a {
  color: var(--blue, #2196F3);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .features-grid.features-grid--visual {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .roi-calculator {
    padding: 22px 18px;
  }

  .features-grid.features-grid--visual {
    grid-template-columns: 1fr;
  }

  .feature-card-media {
    aspect-ratio: 16 / 10;
  }

  .proof-block-media {
    min-height: 160px;
  }

  .proof-block-media img,
  .proof-block-media video {
    max-height: 280px;
  }

  .proof-block-body {
    padding: 18px 20px 22px;
  }

  .founder-proof-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
