:root {
  --pc-bg: #f3f4f6;
  --pc-bg-alt: #ffffff;
  --pc-bg-soft: #ecf3ff;
  --pc-border: #e2e8f0;
  --pc-text: #0f172a;
  --pc-muted: #64748b;

  --pc-header: #2C4A6B;
  --pc-header-dark: #223954;
  --pc-accent: #3b73a5;
  --pc-accent-2: #3b73a5;
  --pc-accent-hover: #385c83;
  --pc-accent-soft: rgba(58, 123, 213, 0.12);
  --pc-accent-soft-2: rgba(95, 168, 230, 0.12);

  --pc-radius: 16px;
  --pc-shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.12);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #f9fafb);
  color: var(--pc-text);
  line-height: 1.6;
}

/* Layout helpers */

.pc-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.pc-section {
  padding: 3.75rem 0;
}

.pc-section-min {
  min-height: 400px;
}

.pc-section-alt {
  background: transparent;
}

.pc-section-soft {
  position: relative;
}

.pc-section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.04),
    rgba(6, 182, 212, 0.02)
  );
  pointer-events: none;
  z-index: -1;
}

.pc-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.5rem;
  
}

.pc-two-col-stretch {
  align-items: stretch;
}

.pc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

/* =========================================================
   HEADER
   ========================================================= */

.pc-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.pc-header-solid {
  background: linear-gradient(135deg, var(--pc-header), var(--pc-header-dark));
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.25);
}

.pc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.pc-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.pc-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #e0f2fe, #0369a1);
  color: #f9fafb;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.45);
}

.pc-logo-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.pc-logo-mark.small {
  width: 24px;
  height: 24px;
  font-size: 0.75rem;
  box-shadow: none;
}

.pc-logo-text.small {
  font-size: 0.9rem;
}

.pc-logo-img {
  height: 50px;
  display: block;
}

.pc-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.pc-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  transition: color 0.18s ease, transform 0.1s ease, opacity 0.18s ease;
}

.pc-nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.pc-nav a.active {
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.pc-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  margin: 0 auto;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.pc-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pc-btn-header {
  background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-2));
  border-radius: 999px;
  color: #ffffff;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(44, 74, 107, 0.18);
  box-shadow: 0 10px 24px rgba(58, 123, 213, 0.25);
}

.pc-btn-header:hover {
  background: linear-gradient(135deg, #35577d, #2C4A6B);
  color: #ffffff;
}

.pc-nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  color: #e5e7eb;
}

/* =========================================================
   HERO
   ========================================================= */

.pc-hero-carousel {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.pc-hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.pc-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(15, 23, 42, 0.45) 0%,
    rgba(15, 23, 42, 0.35) 40%,
    rgba(15, 23, 42, 0.20) 100%
  );
  z-index: 0;
}

.pc-hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.pc-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pc-hero-overlay .pc-container {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.pc-hero-content {
  max-width: 640px;
}

.pc-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: #dbeafe;
  margin-bottom: 0.3rem;
}

.pc-hero-content h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  margin: 0 0 0.4rem;
  color: #f9fafb;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.pc-hero-sub {
  color: #e5e7eb;
  font-size: 0.95rem;
  max-width: 36rem;
}

.pc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.pc-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 2;
}

.pc-hero-dots button {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.7);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.pc-hero-dots button.active {
  background: #facc15;
  width: 18px;
  transform: translateY(-1px);
}

.pc-hero-carousel-compact {
  height: 300px;
}

.pc-hero-carousel-compact .pc-hero-slide::before {
  background: linear-gradient(
    110deg,
    rgba(15, 23, 42, 0.58) 0%,
    rgba(15, 23, 42, 0.42) 48%,
    rgba(15, 23, 42, 0.22) 100%
  );
}

.pc-hero-carousel-compact .pc-hero-content {
  max-width: 760px;
}

.pc-hero-carousel-compact .pc-hero-content h1 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.pc-hero-carousel-compact .pc-hero-sub {
  max-width: 44rem;
}

/* Buttons */

.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

.pc-btn-primary {
  background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-2));
  border: 1px solid rgba(44, 74, 107, 0.18);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(58, 123, 213, 0.28);
}

.pc-btn-primary:hover {
  background: linear-gradient(135deg, #35577d, #2C4A6B);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(58, 123, 213, 0.34);
}

.pc-btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

.pc-btn-ghost.pc-btn-ghost-light {
  border-color: rgba(209, 213, 219, 0.8);
  color: #f9fafb;
}

.pc-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.35);
}

.pc-btn-outline {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--pc-text);
}

.pc-btn-outline:hover {
  border-color: var(--pc-accent);
  color: var(--pc-accent);
}

/* Cards & misc */

.pc-card {
  background: var(--pc-bg-alt);
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  padding: 1.6rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.pc-card-accent {
  border-top: 3px solid var(--pc-accent);
}

.pc-card-dark {
  background: #020617;
  border-color: #020617;
  color: #e5e7eb;
}

.pc-card-dark h3 {
  color: #e5e7eb;
}

.pc-integration-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.pc-integration-head h3 {
  margin: 0;
}

.pc-integration-kicker {
  margin-bottom: 0.28rem;
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pc-integration-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(147, 197, 253, 0.35);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  color: #bfdbfe;
  font-size: 0.72rem;
  font-weight: 700;
}

.pc-integration-copy {
  margin: 0 0 0.95rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.65;
}

.pc-integration-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.pc-integration-points span {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  background: rgba(15, 23, 42, 0.8);
  color: #e2e8f0;
  font-size: 0.76rem;
}

.pc-integration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.pc-integration-actions .pc-btn {
  padding: 0.58rem 0.95rem;
  font-size: 0.86rem;
}

.pc-seo-intro {
  max-width: 820px;
  margin-bottom: 1.25rem;
}

.pc-seo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pc-seo-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 1.15rem;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.pc-seo-card h3 {
  margin: 0.7rem 0 0.45rem;
  font-size: 1rem;
}

.pc-seo-card p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.pc-endpoint-match {
  display: grid;
  gap: 0.8rem;
}

.pc-endpoint-match-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.pc-endpoint-match-row strong {
  display: block;
  color: var(--pc-text);
  margin-bottom: 0.2rem;
}

.pc-endpoint-match-row span {
  display: block;
  color: var(--pc-muted);
  font-size: 0.92rem;
}

.pc-endpoint-match-row code {
  display: inline-flex;
  justify-content: center;
  min-width: 180px;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: #eef6ff;
  color: var(--pc-accent);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Text */

.pc-muted {
  color: var(--pc-muted);
}

.small {
  font-size: 0.85rem;
}

.pc-disabled {
  color: #94a3b8;
  text-decoration: line-through;
}

.pc-section-title {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.pc-section-title-sm {
  font-size: 1.3rem;
  margin: 2.2rem 0 0.6rem;
}

.pc-list {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 0;
}

.pc-list li {
  margin-bottom: 0.45rem;
}

.pc-list-check li::before {
  content: "✔";
  margin-right: 0.5rem;
  color: var(--pc-accent);
}

.pc-list-bullet li::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--pc-accent-2);
}

/* Pills */

.pc-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--pc-accent-soft);
  color: var(--pc-accent);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pc-pill-secondary {
  background: var(--pc-accent-soft-2);
  color: var(--pc-accent-2);
}

.pc-pill-tertiary {
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
}

/* Code blocks */

.pc-code-block {
  background: #020617;
  color: #e5e7eb;
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  font-size: 0.82rem;
  overflow-x: auto;
  position: relative;
}

.pc-code-block code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

/* Docs */

.pc-docs {
  max-width: 900px;
}

.pc-docs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.pc-docs-nav a {
  font-size: 0.9rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--pc-border);
  text-decoration: none;
  color: var(--pc-muted);
  background: rgba(255, 255, 255, 0.8);
}

.pc-docs-nav a:hover {
  border-color: var(--pc-accent);
  color: var(--pc-accent);
}

/* Forms */

.pc-form {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  padding: 1.6rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.pc-form-group {
  margin-bottom: 1rem;
}

.pc-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pc-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.pc-form-group input,
.pc-form-group select,
.pc-form-group textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--pc-border);
  font: inherit;
  outline: none;
  background: #ffffff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pc-form-group input:focus,
.pc-form-group select:focus,
.pc-form-group textarea:focus {
  border-color: var(--pc-accent);
  box-shadow: 0 0 0 1px rgba(58, 123, 213, 0.18);
  background: #f9fafb;
}

.pc-forgot-link {
  text-decoration: none;
  color: var(--pc-accent);
  font-weight: 500;
}

/* Alerts */

.pc-alert {
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.pc-alert-success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.6);
  color: #166534;
}

.pc-alert-error {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.7);
  color: #b91c1c;
}

.pc-alert-error ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

/* FAQ */

.pc-faq details {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  padding: 0.9rem 1rem;
  margin-bottom: 0.7rem;
}

.pc-faq summary {
  font-weight: 500;
  cursor: pointer;
}

/* CTA */

.pc-cta-section {
  padding-top: 2.8rem;
  padding-bottom: 3.2rem;
}

.pc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}

.pc-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer 


  --pc-header: #2C4A6B;
  --pc-header-dark: #223954;
  --pc-accent: #3b73a5;
  --pc-accent-2: #3b73a5;
  --pc-accent-hover: #385c83;


*/

.pc-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(180deg, #1f2f46, #1a2638);
  padding: 2.4rem 0 0.8rem;
  color: #e5e7eb;
}

.pc-footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.pc-footer-brand-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.pc-footer-logo {
  height: 52px;
  width: auto;
  display: block;
}

.pc-footer-text {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 420px;
}

.pc-footer-col h4 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  color: #ffffff;
}

.pc-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-footer-list li {
  margin-bottom: 0.45rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
}

.pc-footer-list strong {
  color: #ffffff;
  font-weight: 600;
}

.pc-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pc-footer-links a {
  font-size: 0.92rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.pc-footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.pc-footer-bottom {
  margin-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-footer-bottom-inner {
  padding: 1.2rem 0;
  text-align: center;
}

.pc-footer-bottom-inner span {
  display: inline-block;
  color: #94a3b8;
  font-size: 0.85rem;
}

input:focus {
  border-color: var(--pc-accent);
  box-shadow: 0 0 0 2px rgba(58,123,213,0.15);
}

/* responsive */
@media (max-width: 900px) {
  .pc-footer-top {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .pc-footer-logo {
    height: 46px;
  }

  .pc-footer-text {
    max-width: 100%;
  }
}

/* Mobile nav */

.pc-nav-mobile {
  display: none;
  flex-direction: column;
  text-align: right;
  background: linear-gradient(180deg, var(--pc-header), var(--pc-header-dark));
  padding: 1.5rem 1.6rem 2rem;
  gap: 1.2rem;
}

.pc-nav-mobile a {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
}

.pc-nav-mobile.show {
  display: flex;
}

.pc-nav-mobile .pc-mobile-dashboard {
  background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-2));
  color: #ffffff;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  display: inline-block;
  font-weight: 600;
  margin-top: 0.5rem;
  align-self: flex-end;
}

/* Pricing table legacy */

.pricing-table-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 40px;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-table th,
.pricing-table td {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  min-width: 140px;
}

.pricing-table .feature-col {
  text-align: left;
  font-weight: 600;
  min-width: 220px;
}

.pricing-table thead th {
  background: #f7f9fc;
  font-weight: 600;
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-price {
  font-size: 16px;
  color: var(--pc-accent);
  font-weight: 700;
}

.plan-price span {
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

.btn-plan {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 22px;
  background: #e9eef5;
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

.btn-plan.primary {
  background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-2));
  color: #fff;
  transform: scale(1.05);
}

.pricing-table .check {
  color: var(--pc-accent);
  font-size: 18px;
  font-weight: 700;
}

.pricing-table .no-check {
  color: #bbb;
  font-size: 18px;
}

.plan-highlight {
  background: #eef6ff;
}

.pricing-table thead .plan-highlight {
  background: #e3f1fb;
}

.pricing-table td.plan-highlight,
.pricing-table th.plan-highlight {
  border-left: 2px solid var(--pc-accent);
  border-right: 2px solid var(--pc-accent);
}

.badge-popular {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 12px;
  margin-bottom: 6px;
}

.pricing-popular-wrapper {
  position: relative;
  height: 0;
}

.pricing-popular-badge {
  position: absolute;
  left: 58.5%;
  transform: translateX(-50%);
  top: -14px;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.pricing-badge-row th {
  background: transparent;
  border: none;
  padding-bottom: 4px;
  height: 26px;
}

.pricing-badge-row .badge-popular {
  position: relative;
  top: 6px;
}

.pricing-table tbody tr.endpoints-row td {
  vertical-align: top;
  padding-top: 18px;
  padding-bottom: 18px;
}

.pricing-table tbody tr.endpoints-row .feature-col {
  vertical-align: top;
  padding-top: 22px;
}

/* OTP */

.pc-otp {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.pc-otp input {
  width: 48px;
  height: 54px;
  text-align: center;
  font-size: 22px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
}

.pc-otp input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.pc-otp-timer {
  margin-top: 10px;
  font-size: 12px;
  color: #6b7280;
}

/* Endpoint chips */

.pc-plan-endpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  min-height: 70px;
  padding-top: 4px;
}

.pc-endpoint-chip {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f4f8fb;
  border: 1px solid #2C4A6B;
  color: var(--pc-accent);
  font-size: 11px;
  text-decoration: none;
  transition: 0.18s ease;
  cursor: pointer;
}

.pc-endpoint-chip:hover {
  background: var(--pc-accent);
  color: #fff;
  border-color: var(--pc-accent);
}

/* Endpoint explainer */

.pc-endpoints-explainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 25px;
}

.pc-endpoint-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease;
  scroll-margin-top: 110px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pc-endpoint-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.pc-endpoint-card.highlight {
  border-color: #f59e0b;
  background: #fffdf7;
}

.pc-endpoint-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--pc-accent);
  margin-bottom: 6px;
}

.pc-endpoint-card p {
  font-size: 13px;
  color: #334155;
  margin: 0 0 10px;
}

.pc-endpoint-use {
  font-size: 12px;
  color: #475569;
  display: block;
  line-height: 1.55;
}

.pc-endpoint-note {
  margin-top: auto;
  padding-top: 12px;
  font-size: 12px;
  color: #b45309;
  background: #fff7ed;
  padding: 6px 10px;
  border-radius: 8px;
  display: inline-block;
}

/* Advice */

.pc-endpoint-advice {
  margin-top: 40px;
}

.pc-endpoint-advice h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.pc-advice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 15px;
}

.pc-advice-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.pc-advice-card strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
}

.pc-advice-card p {
  margin: 0;
  color: #475569;
  font-size: 13px;
  min-height: 120px;
}

.pc-advice-result {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--pc-accent);
}

/* Pricing cards */

.pc-pricing-intro {
  max-width: 900px;
  margin: 14px 0 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
  text-align: left;
}

.pc-pricing-intro strong {
  color: #0f172a;
  font-weight: 700;
}

.pc-pricing-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible !important;
}

.pricing-table-wrapper {
  overflow: visible !important;
}

.pc-pricing-toggle-inline {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.pc-pricing-toggle-row {
  max-width: 1100px;
  margin: 0 auto 10px;
}

.pricing-toggle {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.pricing-toggle button {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.pricing-toggle button.active {
  background: var(--pc-accent);
  color: #fff;
  border-color: var(--pc-accent);
}

/* =========================================================
   PRICING CARDS – DEFINITIEVE FIX
   ========================================================= */

.pc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  margin-bottom: 42px;
  align-items: stretch;
}

.pc-pricing-card {
  position: relative;
  text-align: center;
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--pc-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
  overflow: visible;
  transform: none !important;
}

.pc-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.14);
}

.pc-pricing-card-featured {
  border: 2px solid var(--pc-accent) !important;
  box-shadow: 0 22px 48px rgba(58, 123, 213, 0.18) !important;
  transform: none !important;
  z-index: 2;
}

.pc-pricing-card-featured:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 28px 54px rgba(58, 123, 213, 0.22) !important;
}

.pc-pricing-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.pc-pricing-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.26);
  z-index: 3;
  white-space: nowrap;
}

.pc-price {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 6px 0 2px;
  color: #0f172a;
}

.pc-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
}

.pc-price-sub {
  min-height: 20px;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 10px;
}

.pc-pricing-list {
  text-align: left;
  margin: 10px 0 14px;
}

.pc-pricing-list li {
  font-size: 13px;
}

.pc-plan-endpoints-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.pc-pricing-btn {
  margin-top: 24px;
}

.pc-pricing-card .pc-btn {
  margin-top: auto;
}

/* Responsive */

@media (max-width: 980px) {
  .pc-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .pc-two-col,
  .pc-grid-3,
  .pc-seo-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pc-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .pricing-table {
    font-size: 13px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 10px;
    white-space: nowrap;
  }

  .pricing-table th.feature-col,
  .pricing-table td.feature-col {
    position: sticky;
    left: 0;
    z-index: 10;
    background: #fff;
    white-space: normal;
    box-shadow: 12px 0 16px rgba(0, 0, 0, 0.08);
  }

  .pricing-table thead th {
    position: sticky;
    top: 0;
    z-index: 9;
    background: #f7f9fc;
  }

  .pricing-table thead th.feature-col {
    z-index: 11;
  }

  .pc-endpoint-chip {
    font-size: 11px;
    padding: 4px 8px;
  }

  .pc-plan-endpoints {
    gap: 5px;
    justify-content: flex-start;
  }

  .pc-pricing-trust,
  .pc-pricing-reassurance {
    flex-direction: column;
    align-items: flex-start;
  }

  .pc-pricing-mid-cta {
    text-align: left;
  }

  .pc-pricing-mid-cta-buttons {
    justify-content: flex-start;
  }

  .pc-plan-usecase {
    min-height: auto;
  }

  .pc-advice-card p {
    min-height: auto;
  }
}

@media (min-width: 769px) {
  .pc-nav {
    margin-left: auto;
    margin-right: 20px;
    display: flex;
    align-items: center;
    gap: 1.8rem;
  }
}

@media (max-width: 830px) {
  .pc-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem 0.7rem;
    background: linear-gradient(180deg, var(--pc-header), var(--pc-header-dark));
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45);
    border-radius: 0 0 14px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .pc-nav.show {
    display: flex;
    animation: pc-nav-slide-down 0.18s ease-out;
  }

  .pc-nav a {
    width: 100%;
    padding: 0.25rem 0;
    color: #eff6ff;
    font-size: 0.95rem;
    text-align: right;
  }

  .pc-nav a:hover,
  .pc-nav a.active {
    background: rgba(15, 23, 42, 0.22);
    border-radius: 999px;
    padding-right: 0.75rem;
  }

  .pc-nav-toggle {
    display: inline-flex;
    font-size: 1.5rem;
    color: #fff;
  }

  .pc-header-actions {
    display: none;
  }

  .pc-hero-carousel {
    height: 260px;
  }

  .pc-hero-content h1 {
    font-size: 1.6rem;
  }

  .pc-hero-sub {
    font-size: 0.9rem;
  }

  .pc-hero-actions {
    flex-wrap: wrap;
  }


  .pc-form-row {
    grid-template-columns: minmax(0, 1fr);
  }


  .pc-logo-img {
    height: 42px;
    width: auto;
  }
}

@media (max-width: 640px) {
  .pc-hero-content {
    max-width: 100%;
  }

  .pc-section-min {
    min-height: 500px;
  }

  .pc-pricing-grid {
    grid-template-columns: 1fr;
  }

  .pc-pricing-badge {
    top: 12px;
    right: 12px;
  }

  .pc-endpoint-match-row {
    grid-template-columns: 1fr;
  }

  .pc-endpoint-match-row code {
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 500px) {
  .pc-hero-carousel {
    height: 350px;
  }

  .pc-hero-carousel-compact {
    height: 330px;
  }
}

@keyframes pc-nav-slide-down {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   PRICING PAGE – CONVERSIE VERBETERINGEN
   ========================================================= */

.pc-pricing-hero-copy {
  margin-bottom: 14px;
}

.pc-pricing-intro-secondary {
  margin-top: 10px;
  font-size: 16px;
}

.pc-pricing-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pc-pricing-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #dbe7f2;
  color: #0f172a;
  font-size: 13px;
  font-weight: 500;
}

.pc-pricing-toggle-note {
  margin-top: 8px;
  color: #64748b;
  font-size: 13px;
}

.pc-plan-usecase {
  margin: 0 0 12px;
  min-height: 42px;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.pc-plan-feature-copy {
  margin: 0 0 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(58, 123, 213, 0.1);
  color: var(--pc-accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.pc-pricing-note {
  margin-top: -8px;
  margin-bottom: 28px;
  font-size: 13px;
}

.pc-pricing-mid-cta {
  margin: 10px 0 28px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(58, 123, 213, 0.08),
    rgba(95, 168, 230, 0.04)
  );
  border: 1px solid #dbe7f2;
  text-align: center;
}

.pc-pricing-mid-cta h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.pc-pricing-mid-cta p {
  margin: 0 auto;
  max-width: 720px;
  color: #475569;
}

.pc-pricing-mid-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.pc-endpoint-intro {
  max-width: 760px;
  margin-bottom: 4px;
}

.pc-endpoint-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--pc-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pc-pricing-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 10px;
}

.pc-pricing-reassurance span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--pc-border);
  color: #334155;
  font-size: 13px;
  font-weight: 500;
}

/* Account menu */
.pc-account-menu {
  position: relative;
}

.pc-account-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2C4A6B;
  cursor: pointer;
  transition: 0.2s;
}

.pc-account-btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.pc-account-dropdown {
  position: absolute;
  right: 0;
  top: 48px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  min-width: 160px;
  overflow: hidden;
  z-index: 100;
}

.pc-account-dropdown a {
  padding: 10px 14px;
  text-decoration: none;
  color: #0f172a;
  font-size: 14px;
  transition: 0.2s;
}

.pc-account-dropdown a:hover {
  background: #f1f5f9;
}

.pc-account-dropdown.show {
  display: flex;
}

input::placeholder {
  color: #94a3b8;
}

.pc-form-actions {
  display: flex;
  gap: 0.75rem; /* afstand tussen knoppen */
  margin-top: 0.8rem;
}

.pc-form-actions .pc-btn {
  flex: 1; /* beide even breed */
}

.pc-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 18px;
}

.pc-hero-badges span {
  background: rgba(255,255,255,0.15);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: #fff;
}
.pc-home-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

.pc-home-intro-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px;
}

.pc-home-intro-right {
  display: flex;
  justify-content: flex-start;
}

.pc-feature-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-feature-badges span {
  display: flex;
  align-items: center;
  gap: 8px;

  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 12px;

  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  transition: all 0.2s ease;
  border: 1px solid #e2e8f0;
}

.pc-feature-badges span {
  transition: all 0.2s ease;
}

.pc-feature-badges span:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.pc-home-intro-right {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.2);
}



@media (max-width: 768px) {
  .pc-home-intro {
    grid-template-columns: 1fr;
  }

  .pc-home-intro-right {
    margin-top: 20px;
  }
}
