/**
 * WISECP · Web Hosting Billing and Digital Services Platform
 *
 * Copyright (c) WISECP LLC — All rights reserved.
 * Unlicensed copying, distribution or use is prohibited.
 *
 * Terms of service: https://wisecp.com/terms-of-service
 */
.about-nav{display:flex;flex-direction:column;margin:0;border-inline-start:1px solid var(--wstyle-border-color)}.about-nav-title{padding-block-end:.65rem;padding-inline-start:1rem;color:var(--wstyle-body-color);font-size:.68rem;font-weight:650;letter-spacing:.08em;line-height:1;text-transform:uppercase;opacity:.7}.about-nav-link{position:relative;padding-block:.5rem;padding-inline-start:1rem;color:var(--wstyle-body-color);font-size:.9rem;font-weight:500;line-height:1.4;text-decoration:none;transition:color .18s ease,padding-inline-start .18s ease}.about-nav-link:before{content:"";position:absolute;inset-block:.15rem;inset-inline-start:-1px;inline-size:2px;background-color:transparent;transition:background-color .18s ease}.about-nav-link:hover{color:var(--wstyle-heading-color);padding-inline-start:1.2rem}.about-nav-link:hover:before{background-color:color-mix(in srgb,var(--wstyle-primary-text) 35%,transparent)}.about-nav-link.active{color:var(--wstyle-heading-color);font-weight:700}.about-nav-link.active:before{inset-inline-start:-2px;inline-size:3px;background-color:var(--wstyle-primary-text)}@media(min-width:992px){.about-nav{position:sticky;inset-block-start:5.5rem}}@media(prefers-reduced-motion:reduce){.about-nav-link{transition:none}}.page-doc-sheet{padding:1.25rem;border:1px solid var(--wstyle-border-color);border-radius:var(--wstyle-radius);background-color:var(--wstyle-surface-bg);box-shadow:var(--wstyle-shadow-sm)}@media(min-width:992px){.page-doc-sheet{padding:2rem 2.25rem}}.about-figure{block-size:100%;min-block-size:14rem;overflow:hidden;border-radius:calc(var(--wstyle-radius) * 1.5);box-shadow:var(--wstyle-shadow-lg)}.about-figure-img{display:block;inline-size:100%;block-size:100%;min-block-size:14rem;object-fit:cover}.about-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(9rem,1fr));gap:1rem;margin:0}.about-stat{padding:1.25rem;border:1px solid var(--wstyle-border-color);border-radius:var(--wstyle-radius);background-color:var(--wstyle-surface-bg);box-shadow:var(--wstyle-shadow-sm);text-align:center}.about-stat-num{display:block;font-size:clamp(1.5rem,3vw,1.875rem);font-weight:800;line-height:1.1;letter-spacing:-.02em;color:var(--wstyle-heading-color)}.about-stat-label{display:block;margin-block-start:.35rem;font-size:.85rem;color:var(--wstyle-muted-color)}


/* --- WSTYLE PAGE DETAIL MODERN ENHANCEMENTS --- */

/* Typography & Content Resets */
.kb-prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--wstyle-body-color, #1e293b);
}
.kb-prose span[style*="font-size"] {
  font-size: inherit !important;
}
.kb-prose h2, .kb-prose h3, .kb-prose h4 {
  color: var(--wstyle-heading-color, #0f172a);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.kb-prose h2 { font-size: 1.6rem; }
.kb-prose h3 { font-size: 1.3rem; }
.kb-prose h4 { font-size: 1.1rem; }
.kb-prose p {
  margin-bottom: 1.25rem;
}
.kb-prose hr {
  border: none;
  height: 1px;
  background: var(--wstyle-border-color, #e2e8f0);
  margin: 1.75rem 0;
}
.kb-prose ul, .kb-prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.kb-prose li {
  margin-bottom: 0.5rem;
}

/* Bank Accounts Grid & Cards */
.bank-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.bank-card {
  background: var(--wstyle-surface-bg, #ffffff);
  border: 1px solid var(--wstyle-border-color, #e2e8f0);
  border-radius: var(--wstyle-radius, 1rem);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bank-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
  border-color: var(--wstyle-primary, #095174);
}
.bank-card-header {
  padding: 1rem 1.25rem;
  background: rgba(9, 81, 116, 0.03);
  border-bottom: 1px solid var(--wstyle-border-color, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.bank-card-logo img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.bank-card-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  background: rgba(9, 81, 116, 0.08);
  color: var(--wstyle-primary, #095174);
  white-space: nowrap;
}
.bank-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.bank-field-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--wstyle-body-color-subtle, #64748b);
  margin-bottom: 0.25rem;
}
.bank-field-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wstyle-heading-color, #0f172a);
}
.bank-iban-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 81, 116, 0.04);
  border: 1px dashed var(--wstyle-border-color, #cbd5e1);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  gap: 0.5rem;
}
.bank-iban-code {
  font-family: var(--bs-font-monospace, monospace);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wstyle-heading-color, #0f172a);
  letter-spacing: 0.03em;
  word-break: break-all;
}
.btn-copy-iban {
  background: #ffffff;
  border: 1px solid var(--wstyle-border-color, #cbd5e1);
  color: var(--wstyle-primary, #095174);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 0.375rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.btn-copy-iban:hover {
  background: var(--wstyle-primary, #095174);
  color: #ffffff;
  border-color: var(--wstyle-primary, #095174);
}
.bank-card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--wstyle-border-color, #e2e8f0);
}
.bank-meta-item .meta-label {
  display: block;
  font-size: 0.68rem;
  color: var(--wstyle-body-color-subtle, #64748b);
  font-weight: 600;
}
.bank-meta-item .meta-val {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wstyle-heading-color, #0f172a);
}

/* About Us Pillars & Stats */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.about-pillar-card {
  background: var(--wstyle-surface-bg, #ffffff);
  border: 1px solid var(--wstyle-border-color, #e2e8f0);
  border-radius: var(--wstyle-radius, 1rem);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
}
.about-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(9, 81, 116, 0.08);
  color: var(--wstyle-primary, #095174);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.about-pillar-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wstyle-heading-color, #0f172a);
  margin-bottom: 0.5rem;
}
.about-pillar-card p {
  font-size: 0.875rem;
  color: var(--wstyle-body-color-subtle, #64748b);
  margin-bottom: 0;
  line-height: 1.55;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.about-stat-box {
  background: rgba(9, 81, 116, 0.03);
  border: 1px solid var(--wstyle-border-color, #e2e8f0);
  border-radius: var(--wstyle-radius, 0.75rem);
  padding: 1.25rem;
  text-align: center;
}
.about-stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--wstyle-primary, #095174);
  line-height: 1.2;
}
.about-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wstyle-body-color-subtle, #64748b);
  margin-top: 0.25rem;
}

/* Corporate Info Cards */
.corporate-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.corporate-info-card {
  background: var(--wstyle-surface-bg, #ffffff);
  border: 1px solid var(--wstyle-border-color, #e2e8f0);
  border-radius: var(--wstyle-radius, 0.875rem);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.corporate-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(9, 81, 116, 0.08);
  color: var(--wstyle-primary, #095174);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.corporate-info-content {
  flex: 1;
}
.corporate-info-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--wstyle-body-color-subtle, #64748b);
  margin-bottom: 0.25rem;
}
.corporate-info-desc {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wstyle-heading-color, #0f172a);
  margin-bottom: 0;
}

/* Dark Theme Overrides */
[data-bs-theme="dark"] .bank-card,
.dark-theme .bank-card,
[data-bs-theme="dark"] .about-pillar-card,
.dark-theme .about-pillar-card,
[data-bs-theme="dark"] .corporate-info-card,
.dark-theme .corporate-info-card {
  background: #1e293b !important;
  border-color: #334155 !important;
}
[data-bs-theme="dark"] .bank-card-header,
.dark-theme .bank-card-header {
  background: rgba(255, 255, 255, 0.03) !important;
  border-bottom-color: #334155 !important;
}
[data-bs-theme="dark"] .bank-card-meta,
.dark-theme .bank-card-meta {
  border-top-color: #334155 !important;
}
[data-bs-theme="dark"] .bank-iban-wrapper,
.dark-theme .bank-iban-wrapper {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: #475569 !important;
}
[data-bs-theme="dark"] .btn-copy-iban,
.dark-theme .btn-copy-iban {
  background: #334155 !important;
  border-color: #475569 !important;
  color: #f8fafc !important;
}
[data-bs-theme="dark"] .about-stat-box,
.dark-theme .about-stat-box {
  background: #1e293b !important;
  border-color: #334155 !important;
}
