/* components.css — Additional component styles for Pensvyne */

/* ── Case Study Cards ─────────────────────────────────────────── */
.psv-case-study {
  background: var(--psv-bg-white);
  border-radius: var(--psv-radius-card);
  overflow: hidden;
  box-shadow: var(--psv-shadow-card);
  border: 1px solid var(--psv-border-light);
}
.psv-case-study__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--psv-bg-light-alt);
}
.psv-case-study__image img { width: 100%; height: 100%; object-fit: cover; }
.psv-case-study__body { padding: 32px; }
.psv-case-study__company { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--psv-accent-aa-light); margin-bottom: 8px; }
.psv-case-study__title { font-size: 20px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 12px; }
.psv-case-study__problem { font-size: 14px; line-height: 1.6; color: var(--psv-fg-light-secondary); margin-bottom: 16px; }
.psv-case-study__outcomes { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--psv-border-light); }
.psv-case-study__outcome { text-align: center; }
.psv-case-study__outcome-value { font-family: 'DM Serif Display', Georgia, serif; font-size: 28px; color: var(--psv-brand-primary); }
.psv-case-study__outcome-label { font-size: 12px; color: var(--psv-fg-light-muted); }

/* ── Values ───────────────────────────────────────────────────── */
.psv-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.psv-value-card {
  background: var(--psv-bg-light-alt);
  border-radius: var(--psv-radius-card);
  padding: 32px;
  border: 1px solid var(--psv-border-light);
}
.psv-value-card__icon { font-size: 28px; color: var(--psv-accent-aa-light); margin-bottom: 16px; }
.psv-value-card__name { font-size: 18px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 8px; }
.psv-value-card__desc { font-size: 15px; line-height: 1.65; color: var(--psv-fg-light-secondary); }

/* ── Team Cards ───────────────────────────────────────────────── */
.psv-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.psv-team-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--psv-bg-white);
  border-radius: var(--psv-radius-card);
  border: 1px solid var(--psv-border-light);
  box-shadow: var(--psv-shadow-card);
}
.psv-team-card__portrait {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  background: var(--psv-bg-dark);
}
.psv-team-card__portrait img { width: 100%; height: 100%; object-fit: cover; }
.psv-team-card__name { font-size: 16px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 4px; }
.psv-team-card__title { font-size: 13px; color: var(--psv-accent-aa-light); font-weight: 500; margin-bottom: 12px; }
.psv-team-card__bio { font-size: 13px; line-height: 1.6; color: var(--psv-fg-light-secondary); }

/* ── Security & Compliance Pillars ──────────────────────────────── */
.psv-security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.psv-security-item {
  padding: 28px;
  border-radius: var(--psv-radius-card);
  border: 1px solid var(--psv-border-light);
  background: var(--psv-bg-white);
}
.psv-security-item__icon { font-size: 24px; color: var(--psv-accent-aa-light); margin-bottom: 14px; }
.psv-security-item h3 { font-size: 17px; color: var(--psv-fg-light-primary); margin-bottom: 8px; }
.psv-security-item p { font-size: 14px; line-height: 1.6; color: var(--psv-fg-light-secondary); }

/* ── Webinar Cards ────────────────────────────────────────────── */
.psv-webinar-card {
  background: var(--psv-bg-white);
  border-radius: var(--psv-radius-card);
  padding: 28px 32px;
  border: 1px solid var(--psv-border-light);
  box-shadow: var(--psv-shadow-card);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.psv-webinar-card__date-block {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--psv-bg-light-alt);
  border-radius: 8px;
  padding: 10px 8px;
}
.psv-webinar-card__month { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--psv-accent-aa-light); }
.psv-webinar-card__day { font-family: 'DM Serif Display', Georgia, serif; font-size: 28px; color: var(--psv-fg-light-primary); line-height: 1; margin: 4px 0; }
.psv-webinar-card__year { font-size: 11px; color: var(--psv-fg-light-muted); }
.psv-webinar-card__content {}
.psv-webinar-card__status { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 2px 8px; border-radius: 20px; margin-bottom: 8px; display: inline-block; }
.psv-webinar-card__status--upcoming { background: rgba(76,175,125,0.12); color: var(--psv-accent-aa-light); }
.psv-webinar-card__status--past { background: var(--psv-bg-light-alt); color: var(--psv-fg-light-muted); }
.psv-webinar-card__title { font-size: 17px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 8px; }
.psv-webinar-card__desc { font-size: 14px; line-height: 1.6; color: var(--psv-fg-light-secondary); margin-bottom: 16px; }
.psv-webinar-card__speaker { font-size: 13px; color: var(--psv-fg-light-muted); }

/* ── Guides ───────────────────────────────────────────────────── */
.psv-guide-card {
  background: var(--psv-bg-white);
  border-radius: var(--psv-radius-card);
  padding: 32px;
  border: 1px solid var(--psv-border-light);
  box-shadow: var(--psv-shadow-card);
  display: flex;
  flex-direction: column;
}
.psv-guide-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(26,92,56,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--psv-accent-aa-light);
  margin-bottom: 20px;
}
.psv-guide-card__format { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--psv-fg-light-muted); margin-bottom: 8px; }
.psv-guide-card__title { font-size: 18px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 10px; }
.psv-guide-card__desc { font-size: 14px; line-height: 1.6; color: var(--psv-fg-light-secondary); flex: 1; margin-bottom: 20px; }
.psv-guide-card__cta { margin-top: auto; }

/* ── Timeline (How It Works) ──────────────────────────────────── */
.psv-timeline { position: relative; max-width: 720px; }
.psv-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--psv-border-light);
}
.psv-section--dark .psv-timeline::before { background: var(--psv-border-dark); }
.psv-timeline__item {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}
.psv-timeline__item:last-child { margin-bottom: 0; }
.psv-timeline__marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--psv-bg-dark);
  border: 3px solid var(--psv-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--psv-accent);
  position: relative;
  z-index: 1;
}
.psv-section--cream .psv-timeline__marker,
.psv-section--white .psv-timeline__marker { background: var(--psv-bg-cream); }
.psv-section--cream .psv-timeline::before,
.psv-section--white .psv-timeline::before { background: var(--psv-border-light); }
.psv-timeline__content { padding-top: 10px; }
.psv-timeline__label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--psv-accent-aa-light); margin-bottom: 6px; }
.psv-section--dark .psv-timeline__label { color: var(--psv-accent-aa-dark); }
.psv-timeline__title { font-size: 20px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 8px; }
.psv-section--dark .psv-timeline__title { color: var(--psv-fg-dark-primary); }
.psv-timeline__desc { font-size: 15px; line-height: 1.65; color: var(--psv-fg-light-secondary); }
.psv-section--dark .psv-timeline__desc { color: var(--psv-fg-dark-secondary); }
.psv-timeline__sub-items { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.psv-timeline__sub-item { font-size: 14px; color: var(--psv-fg-light-secondary); display: flex; align-items: flex-start; gap: 8px; }
.psv-timeline__sub-item i { color: var(--psv-accent-aa-light); margin-top: 2px; font-size: 12px; }
.psv-section--dark .psv-timeline__sub-item { color: var(--psv-fg-dark-secondary); }
.psv-section--dark .psv-timeline__sub-item i { color: var(--psv-accent); }

/* ── Contact Form Layout ──────────────────────────────────────── */
.psv-contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.psv-contact-form-col {}
.psv-contact-info-col {}
.psv-contact-info-col h3 { font-size: 20px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 16px; }
.psv-contact-demo-points { margin: 16px 0 28px; }
.psv-contact-demo-point { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--psv-fg-light-secondary); margin-bottom: 12px; }
.psv-contact-demo-point i { color: var(--psv-accent-aa-light); margin-top: 2px; }
.psv-contact-detail { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--psv-fg-light-secondary); margin-bottom: 10px; }
.psv-contact-detail i { color: var(--psv-accent-aa-light); width: 16px; }
.psv-contact-detail a { color: var(--psv-fg-light-secondary); }
.psv-contact-detail a:hover { color: var(--psv-accent-aa-light); }

/* ── Regime Detail Page ───────────────────────────────────────── */
.psv-regime-detail__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.psv-regime-spec {
  background: var(--psv-bg-white);
  border-radius: var(--psv-radius-card);
  padding: 20px 24px;
  border: 1px solid var(--psv-border-light);
}
.psv-regime-spec__label { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--psv-fg-light-muted); margin-bottom: 6px; }
.psv-regime-spec__value { font-size: 16px; font-weight: 600; color: var(--psv-fg-light-primary); }

/* ── Platform Feature Pages ───────────────────────────────────── */
.psv-feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.psv-feature-section--reverse { direction: rtl; }
.psv-feature-section--reverse > * { direction: ltr; }
.psv-feature-section__content {}
.psv-feature-section__visual {
  border-radius: var(--psv-radius-card);
  overflow: hidden;
  background: var(--psv-bg-light-alt);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.psv-feature-section__visual img { width: 100%; height: 100%; object-fit: cover; }
.psv-feature-section__content h3 { font-size: 24px; margin-bottom: 12px; color: var(--psv-fg-light-primary); }
.psv-section--dark .psv-feature-section__content h3 { color: var(--psv-fg-dark-primary); }
.psv-feature-section__content p { font-size: 16px; line-height: 1.7; color: var(--psv-fg-light-secondary); margin-bottom: 20px; }
.psv-section--dark .psv-feature-section__content p { color: var(--psv-fg-dark-secondary); }
.psv-feature-section__list { display: flex; flex-direction: column; gap: 10px; }
.psv-feature-section__list-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--psv-fg-light-secondary); }
.psv-feature-section__list-item i { color: var(--psv-accent-aa-light); margin-top: 2px; }
.psv-section--dark .psv-feature-section__list-item { color: var(--psv-fg-dark-secondary); }
.psv-section--dark .psv-feature-section__list-item i { color: var(--psv-accent); }

/* ── Module Cards (Platform overview) ────────────────────────── */
.psv-module-card {
  background: var(--psv-bg-white);
  border-radius: var(--psv-radius-card);
  padding: 36px;
  border: 1px solid var(--psv-border-light);
  box-shadow: var(--psv-shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.psv-module-card:hover { box-shadow: 0 6px 30px rgba(26,61,43,0.12); transform: translateY(-2px); }
.psv-module-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(26,92,56,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--psv-accent-aa-light);
}
.psv-module-card__title { font-size: 20px; font-weight: 600; color: var(--psv-fg-light-primary); }
.psv-module-card__desc { font-size: 14px; line-height: 1.6; color: var(--psv-fg-light-secondary); }
.psv-module-card__features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.psv-module-card__feature { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--psv-fg-light-secondary); }
.psv-module-card__feature i { color: var(--psv-accent-aa-light); margin-top: 2px; font-size: 11px; }
.psv-module-card__cta { margin-top: auto; }

/* ── Resource Hub Cards ──────────────────────────────────────── */
.psv-resource-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--psv-bg-white);
  border-radius: var(--psv-radius-card);
  padding: 36px;
  border: 1px solid var(--psv-border-light);
  box-shadow: var(--psv-shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.psv-resource-hub-card:hover { box-shadow: 0 6px 30px rgba(26,61,43,0.12); transform: translateY(-2px); }
.psv-resource-hub-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(26,92,56,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--psv-accent-aa-light);
  margin-bottom: 20px;
}
.psv-resource-hub-card__count { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--psv-fg-light-muted); margin-bottom: 8px; }
.psv-resource-hub-card__title { font-size: 22px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 12px; }
.psv-resource-hub-card__desc { font-size: 15px; line-height: 1.65; color: var(--psv-fg-light-secondary); flex: 1; margin-bottom: 24px; }
.psv-resource-hub-card__cta { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--psv-accent-aa-light); }

/* ── Blog Grid ────────────────────────────────────────────────── */
.psv-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── Article Subhero ──────────────────────────────────────────── */
.psv-article-subhero {
  padding: 64px 0 48px;
  background: var(--psv-bg-light-alt);
}
.psv-article-subhero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 48px);
}
.psv-article-subhero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.psv-article-subhero__meta time {
  font-size: 14px;
  color: var(--psv-fg-light-muted);
}
.psv-article-subhero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: var(--psv-fg-light-primary);
  margin-bottom: 20px;
}
.psv-article-subhero__lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--psv-fg-light-secondary);
  max-width: 720px;
}

/* ── Article Layout ───────────────────────────────────────────── */
.psv-article-layout {
  max-width: 800px;
  margin: 0 auto;
}
.psv-article-layout__cover {
  margin-bottom: 40px;
  border-radius: var(--psv-radius-card);
  overflow: hidden;
}
.psv-blog-article__cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--psv-radius-card);
}
.psv-article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--psv-fg-light-secondary);
}

/* ── Article Body Placeholder ────────────────────────────────── */
/* ARTICLE_BODY_PLACEHOLDER comment renders as empty block — no styles needed */

/* ── Legal Subhero ────────────────────────────────────────────── */
.psv-legal-subhero {
  padding: 48px 0 40px;
  background: var(--psv-bg-light-alt);
}
.psv-legal-subhero__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 48px);
}
.psv-legal-subhero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 36px;
  color: var(--psv-fg-light-primary);
  margin-top: 16px;
}
.psv-legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 72px;
}

/* ── Legal Article ────────────────────────────────────────────── */
.legal-article { color: var(--psv-fg-light-secondary); }
.legal-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--psv-border-light); }
.legal-header h1 { font-size: 32px; font-family: 'DM Serif Display', Georgia, serif; color: var(--psv-fg-light-primary); margin-bottom: 8px; }
.legal-meta { font-size: 14px; color: var(--psv-fg-light-muted); line-height: 1.6; }
.legal-article section { margin-bottom: 40px; }
.legal-article h2 { font-size: 20px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 14px; padding-top: 8px; border-top: 1px solid var(--psv-border-light); }
.legal-article h3 { font-size: 16px; font-weight: 600; color: var(--psv-fg-light-primary); margin: 20px 0 10px; }
.legal-article p { font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.legal-article ul, .legal-article ol { padding-left: 24px; margin-bottom: 14px; }
.legal-article li { font-size: 15px; line-height: 1.7; margin-bottom: 6px; }
.legal-article a { color: var(--psv-accent-aa-light); text-decoration: underline; }
.legal-article address { font-style: normal; font-size: 15px; line-height: 1.8; color: var(--psv-fg-light-secondary); background: var(--psv-bg-light-alt); padding: 20px 24px; border-radius: 8px; margin-top: 12px; }
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
.legal-table th { background: var(--psv-bg-light-alt); color: var(--psv-fg-light-primary); font-weight: 600; padding: 10px 14px; text-align: left; border-bottom: 2px solid var(--psv-border-light); }
.legal-table td { padding: 10px 14px; border-bottom: 1px solid var(--psv-border-light); color: var(--psv-fg-light-secondary); }
.legal-table tr:last-child td { border-bottom: none; }

/* ── Guides Grid ──────────────────────────────────────────────── */
.psv-guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.psv-guide-card__icon { font-size: 32px; margin-bottom: 16px; }
.psv-guide-card__content { display: flex; flex-direction: column; flex: 1; }

/* ── Resources CTA Block ──────────────────────────────────────── */
.psv-resources-cta-block {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.psv-resources-cta-block__text { flex: 1 1 340px; }
.psv-resources-cta-block__text h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: 32px; color: var(--psv-fg-light-primary); margin-bottom: 12px; }
.psv-resources-cta-block__text p { font-size: 16px; line-height: 1.7; color: var(--psv-fg-light-secondary); }
.psv-resources-cta-block__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Webinar Cards (revised for webinars page) ──────────────── */
.psv-webinar-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 900px; }
.psv-webinar-card__date-badge {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: rgba(26,92,56,0.08);
  border-radius: 10px;
  padding: 10px 8px;
}
.psv-webinar-card__play { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 64px; }
.psv-webinar-card__meta { font-size: 13px; color: var(--psv-fg-light-muted); margin-bottom: 10px; }
.psv-webinar-card__meta i { margin-right: 4px; }

/* ── Form Row (2-column layout variant) ──────────────────────── */
.psv-form-row { display: flex; flex-direction: column; }
.psv-form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Contact Split Layout ─────────────────────────────────────── */
.psv-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}
.psv-contact-split__form-panel {
  background: var(--psv-bg-white);
  padding: 64px clamp(32px, 5vw, 80px);
  display: flex;
  align-items: flex-start;
}
.psv-contact-split__form-inner { max-width: 500px; width: 100%; }
.psv-contact-split__headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--psv-fg-light-primary);
  margin-bottom: 12px;
}
.psv-contact-split__lede { font-size: 16px; line-height: 1.7; color: var(--psv-fg-light-secondary); margin-bottom: 36px; }
.psv-contact-split__info-panel {
  background: var(--psv-bg-dark);
  padding: 64px clamp(32px, 5vw, 80px);
  display: flex;
  align-items: flex-start;
}
.psv-contact-split__info-inner { max-width: 440px; width: 100%; }
.psv-contact-split__info-block { margin-bottom: 40px; }
.psv-contact-split__info-title { font-size: 18px; font-weight: 600; color: var(--psv-fg-dark-primary); margin-bottom: 16px; }
.psv-contact-split__checklist { display: flex; flex-direction: column; gap: 12px; list-style: none; padding: 0; }
.psv-contact-split__checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--psv-fg-dark-secondary); line-height: 1.55; }
.psv-contact-split__checklist i { color: var(--psv-accent); margin-top: 2px; flex-shrink: 0; }
.psv-contact-split__contact-list { display: flex; flex-direction: column; gap: 12px; }
.psv-contact-split__contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--psv-fg-dark-secondary); }
.psv-contact-split__contact-item i { color: var(--psv-accent); margin-top: 2px; width: 16px; flex-shrink: 0; }
.psv-contact-split__contact-item a { color: var(--psv-accent-aa-dark); text-decoration: none; }
.psv-contact-split__contact-item a:hover { text-decoration: underline; }
.psv-contact-split__regime-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.psv-contact-split__regime-tag { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--psv-fg-dark-secondary); background: rgba(255,255,255,0.08); border-radius: 20px; padding: 5px 12px; }
.psv-contact-split__regime-tag i { color: var(--psv-accent); font-size: 11px; }
.psv-contact-form { display: flex; flex-direction: column; gap: 0; }
.psv-contact-form__submit { margin-top: 8px; width: 100%; justify-content: center; }
.psv-contact-form__fine { font-size: 13px; color: var(--psv-fg-light-muted); margin-top: 12px; text-align: center; }

/* ── Auth Layout ──────────────────────────────────────────────── */
.psv-auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.psv-auth-layout__form-panel {
  background: var(--psv-bg-white);
  padding: 48px clamp(24px, 5vw, 72px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.psv-auth-form-inner {
  max-width: 400px;
  width: 100%;
  padding-top: 16px;
}
.psv-auth-logo { display: block; margin-bottom: 36px; width: auto; height: 32px; }
.psv-auth-logo-link { display: inline-block; }
.psv-auth-title { font-family: 'DM Serif Display', Georgia, serif; font-size: 30px; color: var(--psv-fg-light-primary); margin-bottom: 8px; }
.psv-auth-sub { font-size: 15px; color: var(--psv-fg-light-secondary); line-height: 1.6; margin-bottom: 28px; }
.psv-auth-form { display: flex; flex-direction: column; gap: 0; }
.psv-auth-submit { margin-top: 8px; width: 100%; justify-content: center; }
.psv-auth-form__forgot { float: right; font-size: 13px; color: var(--psv-accent-aa-light); text-decoration: none; font-weight: 400; }
.psv-auth-form__forgot:hover { text-decoration: underline; }
.psv-auth-form__alt { margin-top: 20px; font-size: 14px; color: var(--psv-fg-light-muted); text-align: center; }
.psv-auth-form__alt a { color: var(--psv-accent-aa-light); text-decoration: none; font-weight: 600; }
.psv-auth-form__alt a:hover { text-decoration: underline; }
.psv-auth-form__legal { margin-top: 16px; font-size: 12px; color: var(--psv-fg-light-muted); text-align: center; line-height: 1.6; }
.psv-auth-form__legal a { color: var(--psv-accent-aa-light); }
.psv-auth-form__divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.psv-auth-form__divider::before,
.psv-auth-form__divider::after { content: ''; flex: 1; height: 1px; background: var(--psv-border-light); }
.psv-auth-form__divider span { font-size: 13px; color: var(--psv-fg-light-muted); }
.psv-auth-demo-btn { width: 100%; justify-content: center; margin-top: 4px; }
.psv-auth-layout__brand-panel {
  background: var(--psv-bg-dark);
  padding: 64px clamp(32px, 5vw, 72px);
  display: flex;
  align-items: flex-start;
}
.psv-auth-brand-inner { max-width: 440px; width: 100%; padding-top: 16px; }
.psv-auth-brand-logo { display: block; margin-bottom: 32px; height: 36px; width: auto; }
.psv-auth-brand-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--psv-fg-dark-primary);
  line-height: 1.25;
  margin-bottom: 32px;
}
.psv-auth-regime-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.psv-auth-regime-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--psv-fg-dark-secondary); line-height: 1.5; }
.psv-auth-regime-item i { color: var(--psv-accent); margin-top: 2px; flex-shrink: 0; }
.psv-auth-quote {
  border-left: 3px solid var(--psv-accent);
  padding-left: 20px;
  margin: 0;
}
.psv-auth-quote p { font-size: 15px; font-style: italic; color: var(--psv-fg-dark-secondary); line-height: 1.65; margin-bottom: 8px; }
.psv-auth-quote cite { font-size: 13px; color: var(--psv-fg-dark-muted); font-style: normal; }
.psv-auth-trust-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.psv-auth-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--psv-fg-dark-muted); }
.psv-auth-trust-item i { color: var(--psv-accent); font-size: 14px; }
.psv-auth-footer { padding: 24px 48px; border-top: 1px solid var(--psv-border-light); text-align: center; background: var(--psv-bg-white); }
.psv-auth-footer__copy { font-size: 13px; color: var(--psv-fg-light-muted); }
.psv-auth-footer__copy a { color: var(--psv-fg-light-muted); text-decoration: underline; margin: 0 4px; }

/* Auth reset page (centered card) */
.psv-auth-reset-layout {
  min-height: 100vh;
  background: var(--psv-bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.psv-auth-reset-card {
  background: var(--psv-bg-white);
  border-radius: var(--psv-radius-card);
  border: 1px solid var(--psv-border-light);
  box-shadow: var(--psv-shadow-card);
  padding: 48px;
  max-width: 440px;
  width: 100%;
}

/* ── Responsive additions ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .psv-team-grid { grid-template-columns: repeat(2, 1fr); }
  .psv-values-grid { grid-template-columns: 1fr; }
  .psv-security-grid { grid-template-columns: repeat(2, 1fr); }
  .psv-contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .psv-feature-section { grid-template-columns: 1fr; gap: 40px; }
  .psv-feature-section--reverse { direction: ltr; }
  .psv-regime-detail__specs { grid-template-columns: repeat(2, 1fr); }
  /* New components */
  .psv-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .psv-guides-grid { grid-template-columns: 1fr; }
  .psv-contact-split { grid-template-columns: 1fr; }
  .psv-auth-layout { grid-template-columns: 1fr; }
  .psv-auth-layout__brand-panel { display: none; }
}

@media (max-width: 768px) {
  .psv-team-grid { grid-template-columns: repeat(2, 1fr); }
  .psv-security-grid { grid-template-columns: 1fr; }
  .psv-regime-detail__specs { grid-template-columns: 1fr; }
  /* New components */
  .psv-blog-grid { grid-template-columns: 1fr; }
  .psv-contact-split { grid-template-columns: 1fr; }
  .psv-contact-split__form-panel { padding: 40px 24px; }
  .psv-contact-split__info-panel { padding: 40px 24px; }
  .psv-auth-layout__form-panel { padding: 40px 24px; }
  .psv-auth-reset-card { padding: 32px 24px; }
  .psv-resources-cta-block { flex-direction: column; gap: 24px; }
  .psv-case-study-card { grid-template-columns: 1fr; }
  .psv-regime-index-grid { grid-template-columns: 1fr; }
  .psv-form-row--2col { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   ADDITIONAL COMPONENT DEFINITIONS (orphan-fix)
   ══════════════════════════════════════════════════════════════ */

/* ── Blog Card extended classes ──────────────────────────────── */
/* psv-blog-card__content = alias for psv-blog-card__body */
.psv-blog-card__content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.psv-blog-card__img-link { display: block; overflow: hidden; aspect-ratio: 16/9; }
.psv-blog-card__img-link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.psv-blog-card:hover .psv-blog-card__img-link img { transform: scale(1.03); }
.psv-blog-card__date { font-size: 13px; color: var(--psv-fg-light-muted); }
.psv-blog-card__excerpt { font-size: 14px; line-height: 1.6; color: var(--psv-fg-light-secondary); flex: 1; margin-bottom: 16px; }

/* ── Pricing Card extended classes ───────────────────────────── */
/* These are aliases/extensions of psv-pricing-card__ base */
.psv-pricing-card__header { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--psv-border-light); }
.psv-pricing-card--featured .psv-pricing-card__header { border-bottom-color: var(--psv-border-dark); }
.psv-pricing-card__tier { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--psv-fg-light-muted); margin-bottom: 12px; }
.psv-pricing-card--featured .psv-pricing-card__tier { color: var(--psv-fg-dark-muted); }
.psv-pricing-card__amount { font-size: 44px; font-weight: 700; color: var(--psv-fg-light-primary); line-height: 1; }
.psv-pricing-card--featured .psv-pricing-card__amount { color: var(--psv-fg-dark-primary); }
.psv-pricing-card__unit { font-size: 14px; color: var(--psv-fg-light-muted); }
.psv-pricing-card--featured .psv-pricing-card__unit { color: var(--psv-fg-dark-muted); }
.psv-pricing-card__billing { font-size: 13px; color: var(--psv-fg-light-muted); margin-top: 6px; }
.psv-pricing-card--featured .psv-pricing-card__billing { color: var(--psv-fg-dark-muted); }
.psv-pricing-card__body { flex: 1; display: flex; flex-direction: column; }
.psv-pricing-card__cta { display: flex; align-items: center; justify-content: center; margin-top: auto; }

/* ── FAQ Icon ─────────────────────────────────────────────────── */
.psv-faq__icon { transition: transform 0.2s ease; flex-shrink: 0; }
.psv-faq__item.is-open .psv-faq__icon { transform: rotate(180deg); }

/* ── Team Card role ───────────────────────────────────────────── */
.psv-team-card__role { font-size: 14px; color: var(--psv-fg-light-muted); margin-top: 4px; }

/* ── Values Cards ─────────────────────────────────────────────── */
.psv-values-card {
  padding: 32px;
  border-radius: var(--psv-radius-card);
  background: var(--psv-bg-white);
  border: 1px solid var(--psv-border-light);
  box-shadow: var(--psv-shadow-card);
}
.psv-values-card__number { font-size: 48px; font-weight: 800; line-height: 1; color: rgba(26,92,56,0.12); margin-bottom: 16px; font-variant-numeric: tabular-nums; }
.psv-values-card__title { font-size: 18px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 12px; line-height: 1.35; }
.psv-values-card__body { font-size: 15px; line-height: 1.7; color: var(--psv-fg-light-secondary); }

/* ── Security Pillars ─────────────────────────────────────────── */
.psv-security-pillar {
  padding: 28px;
  border-radius: var(--psv-radius-card);
  background: var(--psv-bg-white);
  border: 1px solid var(--psv-border-light);
}
.psv-security-pillar__icon { font-size: 28px; color: var(--psv-accent-aa-light); margin-bottom: 16px; }
.psv-security-pillar__title { font-size: 16px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 10px; }
.psv-security-pillar__body { font-size: 14px; line-height: 1.7; color: var(--psv-fg-light-secondary); }

/* ── Case Study Cards ─────────────────────────────────────────── */
.psv-case-study-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--psv-bg-white);
  border-radius: var(--psv-radius-card);
  border: 1px solid var(--psv-border-light);
  box-shadow: var(--psv-shadow-card);
  overflow: hidden;
  margin-bottom: 32px;
}
.psv-case-study-card__visual { background: var(--psv-bg-dark); display: flex; align-items: center; justify-content: center; padding: 40px 32px; }
.psv-case-study-card__content { padding: 40px 44px; }
.psv-case-study-card__company-name { font-size: 22px; font-weight: 700; color: var(--psv-fg-light-primary); margin-bottom: 8px; }
.psv-case-study-card__detail { font-size: 14px; color: var(--psv-fg-light-muted); margin-bottom: 20px; }
.psv-case-study-card__detail i { margin-right: 4px; }
.psv-case-study-card__quote { font-size: 16px; font-style: italic; line-height: 1.7; color: var(--psv-fg-light-secondary); margin-bottom: 16px; border-left: 3px solid var(--psv-accent); padding-left: 16px; }
.psv-case-study-card__attribution { font-size: 13px; color: var(--psv-fg-light-muted); margin-bottom: 28px; }
.psv-case-study-card__outcomes { display: flex; gap: 24px; flex-wrap: wrap; }
.psv-case-study-card__outcome { display: flex; flex-direction: column; gap: 4px; }
.psv-case-study-card__outcome-stat { font-size: 28px; font-weight: 700; color: var(--psv-accent-aa-light); line-height: 1; }
.psv-case-study-card__outcome-label { font-size: 13px; color: var(--psv-fg-light-muted); max-width: 120px; line-height: 1.4; }

/* ── Testimonial Cards ────────────────────────────────────────── */
.psv-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.psv-testimonial-card {
  background: var(--psv-bg-white);
  border-radius: var(--psv-radius-card);
  border: 1px solid var(--psv-border-light);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--psv-shadow-card);
}
.psv-testimonial-card__quote { font-size: 15px; font-style: italic; line-height: 1.7; color: var(--psv-fg-light-secondary); flex: 1; margin-bottom: 20px; }
.psv-testimonial-card__author { display: flex; flex-direction: column; gap: 2px; }
.psv-testimonial-card__name { font-size: 14px; font-weight: 600; color: var(--psv-fg-light-primary); }
.psv-testimonial-card__title { font-size: 13px; color: var(--psv-fg-light-muted); }
.psv-testimonial-card__role { font-size: 13px; color: var(--psv-fg-light-muted); }
.psv-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26,92,56,0.12);
  color: var(--psv-accent-aa-light);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Regime Index Grid ────────────────────────────────────────── */
.psv-regime-index-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.psv-regime-index-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--psv-bg-white);
  border-radius: var(--psv-radius-card);
  border: 1px solid var(--psv-border-light);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--psv-shadow-card);
}
.psv-regime-index-card:hover { box-shadow: 0 6px 24px rgba(26,61,43,0.12); transform: translateY(-2px); }
.psv-regime-index-card__flag { font-size: 32px; flex-shrink: 0; line-height: 1; }
.psv-regime-index-card__country { font-size: 16px; font-weight: 600; color: var(--psv-fg-light-primary); margin-bottom: 4px; }
.psv-regime-index-card__framework { font-size: 13px; color: var(--psv-accent-aa-light); font-weight: 500; margin-bottom: 8px; }
.psv-regime-index-card__desc { font-size: 14px; color: var(--psv-fg-light-secondary); line-height: 1.5; margin-bottom: 12px; }
.psv-regime-index-card__link { font-size: 13px; font-weight: 600; color: var(--psv-accent-aa-light); display: flex; align-items: center; gap: 4px; }

/* ── Regime Spec Grid ─────────────────────────────────────────── */
.psv-regime-spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ── Subhero Wide Inner ───────────────────────────────────────── */
.psv-subhero__inner--wide { max-width: 1100px; }
.psv-subhero__lede { font-size: 18px; line-height: 1.7; color: var(--psv-fg-light-secondary); max-width: 680px; margin-top: 16px; }

/* ── Outline Button ───────────────────────────────────────────── */
.psv-btn--outline {
  background: transparent;
  border: 2px solid var(--psv-forest);
  color: var(--psv-forest);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s, color 0.15s;
}
.psv-btn--outline:hover { background: var(--psv-forest); color: white; }

/* ── Timeline extensions ──────────────────────────────────────── */
.psv-timeline__week { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--psv-accent-aa-light); margin-bottom: 8px; display: block; }
.psv-timeline__items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }

/* ── Utility Grid ─────────────────────────────────────────────── */
.psv-grid-1 { display: grid; grid-template-columns: 1fr; gap: 20px; }

/* ── Auth Page (body class — no visual styling needed) ────────── */
.psv-auth-page { margin: 0; padding: 0; }

/* ── Webinar Card upcoming modifier ───────────────────────────── */
.psv-webinar-card--upcoming { border-left: 3px solid var(--psv-accent-aa-light); }

/* ── Compliance subhero wide ──────────────────────────────────── */
/* psv-subhero__inner--wide already defined above */
