/* Platform Landing Pages — Shared Styles */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --pl-dark: #181F28;
  --pl-mid: #394450;
  --pl-light: #6A7582;
  --pl-border: #E6E9EC;
  --pl-bg: #F5F6F7;
  --pl-white: #fff;
  --pl-coral: #E0645C;
  --pl-teal: #14b8a6;
}

/* Override base font for platform pages */
.platform-page {
  font-family: 'IBM Plex Sans', -apple-system, sans-serif;
  color: var(--pl-dark);
  background: var(--pl-white);
}
.platform-page h1, .platform-page h2, .platform-page h3,
.platform-page .pl-btn {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Hero */
.pl-hero {
  background: var(--pl-dark);
  padding: 120px 24px 64px;
  text-align: center;
}
.pl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pl-hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--pl-white);
  max-width: 680px;
  margin: 0 auto 18px;
}
.pl-hero h1 .accent { color: var(--pl-coral); }
.pl-hero-sub {
  font-size: 17px;
  color: #858D97;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}
.pl-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pl-btn {
  display: inline-block;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.pl-btn:hover { opacity: 0.9; text-decoration: none; transform: translateY(-1px); }
.pl-btn-ghost {
  background: transparent;
  color: var(--pl-white);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 14px 28px;
  font-weight: 600;
}
.pl-btn-ghost:hover { border-color: rgba(255,255,255,0.4); }

/* Pain section */
.pl-pain {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px;
}
.pl-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pl-pain .pl-section-label { color: var(--pl-coral); }
.pl-pain h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.pl-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pl-pain-card {
  background: #FEF2F2;
  border: 1px solid #fca5a5;
  border-radius: 12px;
  padding: 18px 20px;
}
.pl-pain-icon { font-size: 20px; margin-bottom: 8px; }
.pl-pain-card h4 { font-size: 14px; font-weight: 700; color: #991b1b; margin-bottom: 6px; }
.pl-pain-card p { font-size: 13px; color: #7f1d1d; line-height: 1.5; }

/* Features section */
.pl-features {
  background: var(--pl-bg);
  border-top: 1px solid var(--pl-border);
  border-bottom: 1px solid var(--pl-border);
}
.pl-features-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px;
}
.pl-features .pl-section-label { color: var(--pl-teal); }
.pl-features h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.pl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pl-feature-card {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-top: 3px solid var(--pl-teal);
  border-radius: 12px;
  padding: 18px;
}
.pl-feature-icon { font-size: 20px; margin-bottom: 8px; }
.pl-feature-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--pl-dark); }
.pl-feature-card p { font-size: 12px; color: var(--pl-light); line-height: 1.5; }

/* Alert */
.pl-alert-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 8px;
}
.pl-alert {
  background: #f0fdfa;
  border: 1.5px solid var(--pl-teal);
  border-radius: 14px;
  padding: 22px 24px;
}
.pl-alert-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pl-teal);
  margin-bottom: 8px;
}
.pl-alert p { font-size: 14px; color: var(--pl-dark); line-height: 1.6; margin: 0; }

/* CTA Band */
.pl-cta-band {
  padding: 56px 24px;
  text-align: center;
  margin-top: 48px;
}
.pl-cta-band h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--pl-white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pl-cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}
.pl-cta-band .pl-btn {
  background: var(--pl-white);
  font-size: 16px;
  padding: 14px 36px;
}

/* FAQ */
.pl-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px;
}
.pl-faq h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
}
.pl-faq-item {
  border-bottom: 1px solid var(--pl-border);
  padding: 16px 0;
}
.pl-faq-item summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--pl-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pl-faq-item summary::-webkit-details-marker { display: none; }
.pl-faq-item summary::after { content: "+"; font-size: 20px; color: var(--pl-light); }
.pl-faq-item[open] summary::after { content: "\2212"; }
.pl-faq-answer {
  font-size: 14px;
  color: var(--pl-light);
  line-height: 1.6;
  padding-top: 10px;
}

/* Hero trust line */
.pl-hero-trust {
  font-size: 13px;
  color: #858D97;
  margin-top: 12px;
}

/* Steps (How It Works) */
.pl-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.pl-steps-3 {
  grid-template-columns: repeat(3, 1fr);
}
.pl-step-card {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-top: 3px solid var(--pl-teal);
  border-radius: 12px;
  padding: 18px;
  position: relative;
}
.pl-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pl-teal);
  color: var(--pl-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pl-step-time {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--pl-teal);
  background: #f0fdfa;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.pl-step-card h4 { font-size: 14px; font-weight: 700; margin: 8px 0 6px; color: var(--pl-dark); }
.pl-step-card p { font-size: 12px; color: var(--pl-light); line-height: 1.5; }

/* Two-Path comparison */
.pl-two-path-section {
  padding: 56px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.pl-two-path-inner h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-align: center;
}
.pl-two-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pl-path-card {
  background: var(--pl-bg);
  border: 1px solid var(--pl-border);
  border-radius: 14px;
  padding: 24px;
}
.pl-path-icon { font-size: 24px; margin-bottom: 10px; }
.pl-path-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 14px; }
.pl-path-card ul { list-style: none; padding: 0; margin: 0; }
.pl-path-card li {
  font-size: 14px;
  color: var(--pl-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--pl-border);
  line-height: 1.4;
}
.pl-path-card li:last-child { border-bottom: none; }
.pl-path-card li::before {
  content: "\2713";
  color: var(--pl-teal);
  font-weight: 700;
  margin-right: 8px;
}
.pl-two-path-note {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--pl-teal);
  margin-top: 18px;
}

/* Single Pricing Card */
.pl-pricing-section {
  padding: 56px 24px;
  display: flex;
  justify-content: center;
}
.pl-pricing-single {
  background: var(--pl-white);
  border: 2px solid var(--pl-teal);
  border-radius: 18px;
  padding: 36px 40px;
  text-align: center;
  max-width: 360px;
  width: 100%;
}
.pl-pricing-single h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.pl-pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--pl-dark);
  margin-bottom: 4px;
}
.pl-pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--pl-light);
}
.pl-pricing-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  text-align: left;
}
.pl-pricing-list li {
  font-size: 14px;
  color: var(--pl-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--pl-border);
}
.pl-pricing-list li:last-child { border-bottom: none; }
.pl-pricing-list li::before {
  content: "\2713";
  color: var(--pl-teal);
  font-weight: 700;
  margin-right: 8px;
}
.pl-pricing-sub {
  font-size: 13px;
  color: var(--pl-light);
  margin-top: 16px;
}
.pl-pricing-guarantee {
  font-size: 12px;
  color: var(--pl-teal);
  font-weight: 600;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .pl-hero { padding: 110px 24px 48px; }
  .pl-hero h1 { font-size: 28px; }
  .pl-pain-grid { grid-template-columns: 1fr; }
  .pl-features-grid { grid-template-columns: 1fr; }
  .pl-hero-cta { flex-direction: column; align-items: center; }
  .pl-steps { grid-template-columns: 1fr; }
  .pl-two-path { grid-template-columns: 1fr; }
  .pl-pricing-single { padding: 28px 24px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pl-features-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-steps { grid-template-columns: repeat(3, 1fr); }
}
