/* Participation Studio - Isolated, optimized styles */

/* Reset only for PS */
.ps-body, .ps-body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables */
:root {
  --ps-purple: #7C5CFF;
  --ps-purple-dk: #6a4de6;
  --ps-teal: #19E6C5;
  --ps-dark: #0a0a0a;
  --ps-card: #1a1a1a;
  --ps-border: #2a2a2a;
  --ps-gray: #a0a0a0;
  --ps-gray-lt: #c0c0c0;
  --ps-white: #ffffff;
}

/* Base */
.ps-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--ps-dark);
  color: var(--ps-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Skip link */
.ps-skip {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ps-purple);
  color: white;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
}
.ps-skip:focus { top: 0; }

/* Header */
.ps-header {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--ps-border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.ps-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ps-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.ps-brand > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ps-white);
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

.ps-by {
  display: inline;
  font-size: 14px;
  color: var(--ps-gray);
  white-space: nowrap;
}

.ps-by a {
  color: var(--ps-gray);
  text-decoration: none;
}

.ps-logo {
  width: 40px;
  height: 20px;
  flex-shrink: 0;
}

.ps-nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.ps-nav-menu a {
  text-decoration: none;
  color: var(--ps-white);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.ps-nav-menu a:hover {
  color: var(--ps-purple);
}

.ps-nav-cta {
  background: var(--ps-purple);
  padding: 10px 20px;
  border-radius: 6px;
  color: white !important;
}

.ps-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--ps-white);
  font-weight: 500;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}

.ps-menu-icon {
  width: 20px;
  height: 2px;
  background: var(--ps-white);
  position: relative;
  display: block;
}
.ps-menu-icon::before,
.ps-menu-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--ps-white);
  left: 0;
}
.ps-menu-icon::before { top: -6px; }
.ps-menu-icon::after { top: 6px; }

.ps-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 98;
}

.ps-menu-overlay.open {
  display: block;
}

.ps-menu-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--ps-card);
  z-index: 99;
  transition: right 0.3s;
  padding: 24px;
  overflow-y: auto;
}

.ps-menu-drawer.open {
  right: 0;
}

.ps-menu-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-menu-drawer a {
  text-decoration: none;
  color: var(--ps-white);
  font-weight: 500;
  padding: 8px 0;
}

.ps-menu-close {
  margin-top: 24px;
  background: var(--ps-border);
  border: none;
  padding: 12px;
  border-radius: 6px;
  color: var(--ps-white);
  font-weight: 600;
  width: 100%;
  cursor: pointer;
}

@media (max-width: 900px) {
  .ps-by { display: none; }
}

@media (max-width: 768px) {
  .ps-nav-menu { display: none; }
  .ps-menu-btn { display: flex; }
}

/* Container */
.ps-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.ps-container-sm {
  max-width: 800px;
}

/* Hero */
.ps-hero {
  background: linear-gradient(135deg, #1a0f2e 0%, #0f1a1a 100%);
  padding: 120px 24px 100px;
  position: relative;
  overflow: hidden;
}

.ps-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(124, 92, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(25, 230, 197, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.ps-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ps-teal);
  margin-bottom: 32px;
  border: 1px solid rgba(25, 230, 197, 0.2);
}

.ps-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--ps-teal);
  border-radius: 50%;
  animation: ps-pulse 2s ease-in-out infinite;
}

@keyframes ps-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ps-hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 32px 0;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ps-hero-lead {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.6;
  color: var(--ps-gray-lt);
  margin: 0 0 40px 0;
}

.ps-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 40px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ps-hero-tags span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ps-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ps-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Buttons */
.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  font-size: 15px;
  cursor: pointer;
  background: var(--ps-card);
  color: var(--ps-white);
  white-space: nowrap;
}

.ps-btn:hover {
  transform: translateY(-2px);
}

.ps-btn-primary {
  background: var(--ps-purple);
  color: white;
  border-color: var(--ps-purple);
}

.ps-btn-primary:hover {
  background: var(--ps-purple-dk);
}

.ps-btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
}

.ps-btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.ps-btn-block {
  width: 100%;
}

/* Sections */
.ps-section {
  padding: 80px 0;
}

.ps-section-alt {
  background: var(--ps-card);
  border-top: 1px solid var(--ps-border);
  border-bottom: 1px solid var(--ps-border);
}

.ps-section-intro {
  text-align: center;
  margin-bottom: 64px;
}

.ps-section-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ps-gray-lt);
  margin: 16px auto 0;
  max-width: 700px;
}

.ps-body h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  color: var(--ps-white);
  text-align: center;
}

.ps-body h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin: 0 0 12px 0;
  color: var(--ps-white);
}

.ps-body h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ps-purple);
  margin: 0 0 16px 0;
}

.ps-body strong {
  font-weight: 600;
  color: var(--ps-white);
}

.ps-text-lg {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  color: var(--ps-gray-lt);
  margin-bottom: 24px;
}

/* Problem section */
.ps-problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.ps-problem-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ps-stat-card {
  background: rgba(124, 92, 255, 0.08);
  border: 2px solid rgba(124, 92, 255, 0.2);
  padding: 32px;
  border-radius: 12px;
}

.ps-stat-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--ps-purple);
  line-height: 1;
  margin-bottom: 12px;
}

.ps-stat-label {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ps-gray-lt);
}

/* Methods */
.ps-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.ps-method {
  background: var(--ps-card);
  border: 1px solid var(--ps-border);
  padding: 32px;
  border-radius: 12px;
  transition: all 0.3s;
}

.ps-method:hover {
  border-color: var(--ps-purple);
  transform: translateY(-4px);
}

.ps-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(124, 92, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ps-method-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--ps-purple);
}

.ps-method p {
  color: var(--ps-gray-lt);
  margin-bottom: 20px;
}

.ps-method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ps-method-tags span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ps-gray);
}

/* Equity */
.ps-section-equity {
  background: linear-gradient(135deg, rgba(25, 230, 197, 0.05) 0%, rgba(124, 92, 255, 0.05) 100%);
  border-top: 1px solid var(--ps-border);
  border-bottom: 1px solid var(--ps-border);
}

.ps-equity-content .ps-section-lead {
  max-width: 800px;
  margin-bottom: 48px;
}

.ps-equity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

.ps-equity-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.ps-equity-item p {
  color: var(--ps-gray-lt);
  line-height: 1.6;
}

.ps-equity-note {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--ps-teal);
  margin-top: 48px;
  padding: 24px;
  background: rgba(25, 230, 197, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(25, 230, 197, 0.2);
}

/* Pricing */
.ps-pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  background: var(--ps-card);
  padding: 6px;
  border-radius: 6px;
  border: 1px solid var(--ps-border);
  max-width: 300px;
  margin: 0 auto 48px;
}

.ps-pricing-toggle button {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ps-gray);
  cursor: pointer;
  transition: all 0.2s;
}

.ps-pricing-toggle button.active {
  background: var(--ps-purple);
  color: white;
}

/* Packages */
.ps-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.ps-package {
  background: var(--ps-card);
  border: 2px solid var(--ps-border);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.ps-package:hover {
  transform: translateY(-8px);
  border-color: var(--ps-purple);
}

.ps-package-featured {
  border-color: var(--ps-purple);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.08) 0%, var(--ps-card) 100%);
}

.ps-package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ps-purple);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.ps-package-tagline {
  font-size: 16px;
  color: var(--ps-gray-lt);
  margin-bottom: 24px;
}

.ps-package-price {
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid var(--ps-border);
  border-bottom: 1px solid var(--ps-border);
}

.ps-price-from {
  font-size: 13px;
  color: var(--ps-gray);
  font-weight: 600;
  text-transform: uppercase;
}

.ps-price-value {
  font-size: 48px;
  font-weight: 900;
  color: var(--ps-white);
  line-height: 1;
  margin: 12px 0;
}

.ps-price-period {
  font-size: 15px;
  color: var(--ps-gray-lt);
}

.ps-package-desc {
  color: var(--ps-gray-lt);
  margin-bottom: 24px;
}

.ps-package-includes {
  margin-bottom: 24px;
  flex-grow: 1;
}

.ps-package-includes ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.ps-package-includes li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--ps-gray-lt);
}

.ps-check-icon {
  color: var(--ps-teal);
  font-weight: 700;
  flex-shrink: 0;
}

.ps-package-ideal {
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ps-border);
}

.ps-package-ideal p {
  color: var(--ps-gray-lt);
  font-size: 14px;
}

.ps-bespoke {
  text-align: center;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid var(--ps-border);
}

.ps-budget-note {
  background: linear-gradient(135deg, rgba(25, 230, 197, 0.05) 0%, rgba(124, 92, 255, 0.05) 100%);
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
}

.ps-budget-note h3 {
  text-align: center;
  margin-bottom: 24px;
}

.ps-budget-note p {
  color: var(--ps-gray-lt);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ps-budget-note p:last-child {
  margin-bottom: 0;
}

.ps-budget-note strong {
  color: var(--ps-white);
}

.ps-bespoke h3 {
  margin-bottom: 16px;
}

.ps-bespoke p {
  color: var(--ps-gray-lt);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Sectors */
.ps-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
  justify-content: center;
}

.ps-sector {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--ps-border);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ps-white);
  transition: all 0.2s;
}

.ps-sector:hover {
  background: rgba(124, 92, 255, 0.1);
  border-color: var(--ps-purple);
  transform: translateY(-2px);
}

.ps-sector-primary {
  background: rgba(124, 92, 255, 0.15);
  border-color: rgba(124, 92, 255, 0.3);
  color: var(--ps-purple);
}

/* Approach */
.ps-approach {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.ps-approach-item {
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid var(--ps-border);
  transition: all 0.3s;
}

.ps-approach-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--ps-purple);
}

.ps-approach-item p {
  color: var(--ps-gray-lt);
  line-height: 1.6;
}

/* Contact */
.ps-contact {
  background: var(--ps-card);
  padding: 80px 24px;
  border-top: 1px solid var(--ps-border);
}

.ps-contact h2 {
  margin-bottom: 16px;
}

.ps-contact-lead {
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ps-gray-lt);
  margin: 0 auto 40px;
  max-width: 600px;
}

.ps-contact form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.ps-contact label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ps-contact label > span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ps-white);
}

/* IMPORTANT: do not style checkboxes like text inputs */
.ps-contact input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.ps-contact select,
.ps-contact textarea {
  padding: 14px;
  border: 2px solid var(--ps-border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: var(--ps-dark);
  color: var(--ps-white);
  width: 100%;
}


.ps-contact input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
.ps-contact select:focus,
.ps-contact textarea:focus {
  outline: none;
  border-color: var(--ps-purple);
}


.ps-contact textarea {
  min-height: 120px;
  resize: vertical;
}

.ps-hint {
  font-size: 13px;
  color: var(--ps-gray);
  margin-top: 4px;
}

/* Consent checkbox - PROPERLY FIXED */
.ps-consent {
  display: flex;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-top: 4px;
}

/* Custom checkbox */
.ps-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  padding: 0;
  margin-top: 1px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.35);
  background: transparent;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.ps-consent input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: transform 0.12s ease-in-out;
  background: var(--ps-purple);
  border-radius: 2px;
}

.ps-consent input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.ps-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--ps-purple);
  outline-offset: 2px;
}

.ps-consent > span {
  flex: 1;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 600;
  color: var(--ps-white);
}


.ps-form-note {
  font-size: 14px;
  color: var(--ps-gray-lt);
  text-align: center;
  margin-top: 8px;
}

.ps-form-legal {
  font-size: 12px;
  color: var(--ps-gray);
  line-height: 1.5;
  text-align: center;
}

.ps-visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#formError {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

#contactThanks {
  background: var(--ps-dark);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--ps-border);
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
.ps-footer {
  background: var(--ps-dark);
  color: var(--ps-gray);
  padding: 48px 24px;
  border-top: 1px solid var(--ps-border);
}

.ps-footer-brand {
  font-weight: 900;
  color: var(--ps-white);
  margin-bottom: 8px;
  font-size: 18px;
}

.ps-footer-text {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 16px;
}

.ps-footer a {
  color: var(--ps-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.ps-footer a:hover {
  color: var(--ps-teal);
}

.ps-footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ps-problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .ps-hero {
    padding: 80px 20px 60px;
  }

  .ps-section {
    padding: 60px 0;
  }

  .ps-container {
    padding: 0 20px;
  }

  .ps-hero-tags {
    flex-direction: column;
    text-align: center;
  }

  .ps-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .ps-hero-actions .ps-btn {
    width: 100%;
  }

  .ps-methods,
  .ps-packages,
  .ps-approach {
    grid-template-columns: 1fr;
  }

  .ps-equity-grid {
    grid-template-columns: 1fr;
  }

  .ps-stat-number {
    font-size: 48px;
  }

  .ps-contact {
    padding: 60px 20px;
  }
}

/* Remove native bullets and align custom check icon cleanly */
.ps-package ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.ps-package li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0.65rem 0;
}

.ps-check-icon {
  flex: 0 0 auto;
  line-height: 1;
  margin-top: 0.15rem;
}

/* If you ever add a plain bullet list elsewhere, you can opt it back in with a class */
.ps-list-bullets {
  list-style: disc;
  padding-left: 1.25rem;
}

 
      /* Additional styles for the trust section */
    .ps-section-trust {
      background: linear-gradient(135deg, rgba(124, 92, 255, 0.06) 0%, rgba(25, 230, 197, 0.04) 100%);
      border-top: 1px solid var(--ps-border);
      border-bottom: 1px solid var(--ps-border);
    }
    
    .ps-trust-content {
      text-align: center;
    }
    
    .ps-trust-content .ps-section-lead {
      max-width: 700px;
      margin-bottom: 40px;
    }
    
    .ps-trust-logo-link {
      display: block;
      margin: 40px auto;
      max-width: 500px;
      text-decoration: none;
      cursor: pointer;
    }
    
    .ps-trust-logo {
      padding: 32px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 12px;
      border: 1px solid var(--ps-border);
      transition: all 0.3s;
    }
    
    .ps-trust-logo-link:hover .ps-trust-logo {
      background: rgba(255, 255, 255, 1);
      border-color: var(--ps-purple);
      transform: translateY(-4px);
    }
    
    .ps-trust-logo img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .ps-trust-note {
      font-size: 15px;
      color: var(--ps-gray-lt);
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.7;
    }
    
    @media (max-width: 768px) {
      .ps-trust-logo-link {
        max-width: 100%;
      }
      
      .ps-trust-logo {
        padding: 24px;
      }
    }