/**
 * 应用级样式（Products 下拉、产品面板等）
 */
.products-dropdown {
  position: relative;
}

.products-dropdown .products-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 4px;
  min-width: 200px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.products-dropdown:hover .products-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.products-dropdown .products-dropdown-menu-inner {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border: 1px solid #e5e7eb;
  padding: 4px 0;
}

.products-dropdown .product-option {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #374151;
  transition: background 0.2s, color 0.2s;
}

.products-dropdown .product-option:hover {
  background: #eff6ff;
  color: #2563eb;
}

.products-dropdown .dropdown-arrow {
  width: 12px;
  height: 12px;
  margin-left: 4px;
  transition: transform 0.2s;
}

.products-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* 防止“产品服务”在导航中折成两行 */
.products-dropdown-button {
  white-space: nowrap;
}

/* ========== 定价页卡片（参考设计） ========== */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.pricing-card {
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s, border-color 0.4s;
  cursor: pointer;
}
.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card-standard {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(99, 102, 241, 0.1);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}
.pricing-card-standard:hover {
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.2);
}

.pricing-card-premium {
  background: linear-gradient(135deg, #113186 0%, #052c80 100%);
  border: 1px solid rgba(168, 85, 247, 0.2);
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.15);
  color: #fff;
}
.pricing-card-premium:hover {
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.25);
  border-color: rgba(168, 85, 247, 0.3);
}

.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: white;
  border-radius: 6px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.pricing-card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card-premium .pricing-card-title {
  background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 24px;
  padding: 12px;
  background: rgba(99, 102, 241, 0.05);
  border-left: 2px solid #6366f1;
  border-radius: 4px;
}
.pricing-card-premium .pricing-card-desc {
  color: #cbd5e1;
  background: rgba(168, 85, 247, 0.1);
  border-left-color: #a855f7;
}

.pricing-price-section { margin-bottom: 32px; }
.pricing-price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
  color: #1f2937;
}
.pricing-card-premium .pricing-price {
  color: #f0f9ff;
}
.pricing-price-sub {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}
.pricing-card-premium .pricing-price-sub {
  color: #94a3b8;
}
.pricing-price-floor-note {
  font-size: 10px;
  line-height: 1.45;
  color: #9ca3af;
  margin-top: 6px;
  max-width: 22em;
}

.pricing-features-section { margin-bottom: 28px; }
.pricing-feature-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
  margin-bottom: 12px;
  opacity: 0.8;
}
.pricing-card-premium .pricing-feature-label {
  color: #cbd5e1;
}
.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-feature-item {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  line-height: 1.5;
}
.pricing-card-premium .pricing-feature-item {
  color: #e2e8f0;
}
.pricing-feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: bold;
  flex-shrink: 0;
}
.pricing-card-premium .pricing-feature-icon {
  background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
}

.pricing-cta {
  width: 100%;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  text-decoration: none;
  font-family: inherit;
}
.pricing-cta-standard {
  background: linear-gradient(135deg,#113186 0%, #052c80 100%);
  color: white;
}
.pricing-cta-standard:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}
.pricing-cta-premium {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: white;
}
.pricing-cta-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}
.pricing-cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.pricing-cta:hover .pricing-cta-arrow {
  transform: translateX(4px);
}

@keyframes pricing-slide-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.pricing-card-standard {
  animation: pricing-slide-in 0.6s ease-out;
}
.pricing-card-premium {
  animation: pricing-slide-in 0.6s ease-out 0.15s backwards;
}

@media (max-width: 480px) {
  .pricing-card { padding: 24px; }
  .pricing-card-title { font-size: 24px; }
  .pricing-price { font-size: 32px; }
  .pricing-card-desc { font-size: 12px; }
}

/* ========== PayHub 产品页（独立样式，避免与定价页冲突） ========== */
.payhub-page { --ph-accent: #3b82f6; --ph-accent-dark: #1e40af; --ph-text: #0f172a; --ph-text-muted: #64748b; --ph-border: #e2e8f0; }
.payhub-hero-wrap { background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%); position: relative; overflow: hidden; }
.payhub-hero-wrap::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.payhub-hero-tag { display: inline-block; padding: 8px 16px; background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.3); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--ph-accent); margin-bottom: 16px; }
.payhub-hero-title .highlight { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.payhub-section-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--ph-text); }
.payhub-section-sub { font-size: 1.125rem; color: var(--ph-text-muted); margin-bottom: 2.5rem; max-width: 36rem; }
.payhub-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.payhub-feature-card { padding: 2rem; background: #fff; border: 1px solid var(--ph-border); border-radius: 12px; transition: all 0.3s ease; }
.payhub-feature-card:hover { border-color: var(--ph-accent); box-shadow: 0 12px 32px rgba(59, 130, 246, 0.1); transform: translateY(-4px); }
.payhub-feature-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(30, 64, 175, 0.1) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.payhub-feature-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--ph-text); }
.payhub-feature-card p { font-size: 0.875rem; color: var(--ph-text-muted); line-height: 1.6; }
.payhub-roles-section { background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #172554 100%); color: #fff; }
.payhub-roles-section .payhub-section-title { color: #fff; }
.payhub-roles-section .payhub-section-sub { color: #e0e7ff; }
.payhub-roles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.payhub-role-card { padding: 2.5rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; backdrop-filter: blur(10px); transition: all 0.3s ease; }
.payhub-role-card:hover { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); transform: translateY(-4px); }
.payhub-role-badge { display: inline-block; padding: 6px 12px; background: rgba(59, 130, 246, 0.2); border: 1px solid rgba(59, 130, 246, 0.4); border-radius: 6px; font-size: 12px; font-weight: 600; color: #60a5fa; margin-bottom: 1rem; }
.payhub-role-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.payhub-role-card .payhub-role-desc { font-size: 0.875rem; color: #cbd5e1; margin-bottom: 1.5rem; line-height: 1.6; }
.payhub-role-features { list-style: none; }
.payhub-role-features li { font-size: 0.875rem; padding: 8px 0; padding-left: 24px; position: relative; color: #e2e8f0; }
.payhub-role-features li::before { content: '✓'; position: absolute; left: 0; color: #60a5fa; font-weight: bold; }
.payhub-capabilities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; margin-top: 2.5rem; }
.payhub-cap-item { padding: 1.5rem; background: #f8fafc; border-radius: 10px; border-left: 4px solid var(--ph-accent); transition: all 0.3s ease; }
.payhub-cap-item:hover { box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1); transform: translateX(4px); }
.payhub-cap-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--ph-text); }
.payhub-cap-item p { font-size: 0.875rem; color: var(--ph-text-muted); }

/* Pillar 适用场景：卡片等高 */
#pillar-capabilities .payhub-capabilities-grid { align-items: stretch; }
#pillar-capabilities .payhub-cap-item {
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
}
#pillar-capabilities .payhub-cap-item p { flex: 1; min-height: 0; }

/* Pillar Odoo — 功能模块区块（与其它产品页同宽：container max-w-6xl） */
.pillar-odoo-modules-section { background: #fff; }
.pillar-odoo-modules-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
.pillar-odoo-modules-header--single {
  grid-template-columns: 1fr;
}
.pillar-odoo-modules-kicker {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ph-accent, #2563eb);
  margin-bottom: 0.875rem;
}
.pillar-odoo-modules-title { margin-bottom: 0.5rem; }
.pillar-odoo-modules-intro {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ph-text-muted);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 36rem;
}
.pillar-odoo-module-count { text-align: right; }
.pillar-odoo-count-number {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ph-border, #e5e7eb);
}
.pillar-odoo-count-suffix { font-size: 2.5rem; }
.pillar-odoo-count-label {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ph-text-muted);
  margin-top: -0.5rem;
}
.pillar-odoo-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pillar-odoo-mod-item {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.pillar-odoo-mod-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ph-accent, #2563eb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pillar-odoo-mod-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 6px 20px rgba(0, 0, 0, 0.04);
  border-color: var(--ph-border);
}
.pillar-odoo-mod-item:hover::after { transform: scaleX(1); }
.pillar-odoo-mod-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  background: var(--ph-border, #f1f5f9);
}
.pillar-odoo-mod-item-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ph-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.pillar-odoo-mod-item-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ph-text-muted);
  line-height: 1.65;
}
.pillar-odoo-mod-item-tag {
  display: inline-block;
  margin-top: 0.875rem;
  font-size: 0.625rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--ph-border, #f1f5f9);
  color: var(--ph-text-muted);
  border: 1px solid var(--ph-border);
}
@media (max-width: 960px) {
  .pillar-odoo-modules-header { grid-template-columns: 1fr; }
  .pillar-odoo-module-count { text-align: left; }
  .pillar-odoo-modules-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pillar-odoo-modules-grid { grid-template-columns: 1fr; gap: 0.875rem; }
}

/* Pillar Odoo — 为什么选择 Pillar Odoo（参考原 HTML，使用 PayHub 角色模块背景） */
.pillar-odoo-adv-section {
  /* 背景由 .payhub-roles-section 提供渐变与文字颜色 */
}
.pillar-odoo-adv-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pillar-odoo-adv-heading {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.pillar-odoo-adv-sub {
  font-size: 0.9375rem;
  color: #e0e7ff;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.8;
}
.pillar-odoo-adv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.pillar-odoo-adv-card {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.pillar-odoo-adv-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.pillar-odoo-adv-num {
  font-size: 0.75rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'SF Mono', ui-monospace, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.pillar-odoo-adv-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.pillar-odoo-adv-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.pillar-odoo-adv-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .pillar-odoo-adv-heading {
    font-size: 1.75rem;
  }
}

/* Pillar Odoo — 与 EggshellifyPay 原生打通（支付集成模块，参考原 HTML） */
.pillar-odoo-payment-section {
  background: #f9fafb;
  border-top: 1px solid var(--ph-border);
}
.pillar-odoo-payment-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.5rem;
  align-items: center;
}
.pillar-odoo-payment-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ph-accent);
  margin-bottom: 0.75rem;
}
.pillar-odoo-payment-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ph-text);
  line-height: 1.4;
  margin-bottom: 1rem;
  max-width: 28em;
}
.pillar-odoo-payment-title-line2 {
  display: block;
  margin-top: 0.25em;
}
.pillar-odoo-payment-desc {
  font-size: 0.9375rem;
  color: var(--ph-text-muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 32rem;
}
.pillar-odoo-payment-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pillar-odoo-payment-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--ph-text);
}
.pillar-odoo-payment-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
  flex-shrink: 0;
}

.pillar-odoo-payment-visual {
  /* 仅作为布局容器，视觉样式交给 .pillar-odoo-modal */
  background: transparent;
  border: none;
  box-shadow: none;
}
.pillar-odoo-modal {
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.07);
  width: 100%;
  max-width: 580px;
}
.pillar-odoo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px 14px;
  border-bottom: 1px solid #edeaf5;
}
.pillar-odoo-modal-title {
  font-size: 16px;
  font-weight: 600;
  color: #1c1a28;
}
.pillar-odoo-modal-close {
  font-size: 20px;
  color: #b0aac4;
  line-height: 1;
}
.pillar-odoo-modal-body {
  padding: 22px 22px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
}
.pillar-odoo-modal-divider {
  background: #edeaf5;
  margin: 0 22px;
}
.pillar-odoo-modal-col {
  display: flex;
  flex-direction: column;
}
.pillar-odoo-modal-field {
  display: flex;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #f4f2f9;
}
.pillar-odoo-modal-field:last-child {
  border-bottom: none;
}
.pillar-odoo-modal-field .f-label {
  font-size: 12.5px;
  color: #8c87a6;
  min-width: 108px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.pillar-odoo-modal-field .f-label .q {
  font-size: 10px;
  color: #b0aac4;
}
.pillar-odoo-modal-field .f-val {
  font-size: 13px;
  color: #2a2740;
  flex: 1;
}
.pillar-odoo-modal-field .f-val.muted {
  color: #5a5472;
}
.pillar-odoo-modal-field .f-val.select {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pillar-odoo-modal-field .f-val.select::after {
  content: '▾';
  font-size: 10px;
  color: #b0aac4;
}
.pillar-odoo-modal-field .f-val.amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pillar-odoo-modal-field .currency-tag {
  font-size: 11px;
  color: #b0aac4;
  font-weight: 500;
}
.pillar-odoo-modal-field .masked {
  letter-spacing: .05em;
}
.pillar-odoo-modal-footer {
  padding: 12px 22px 16px;
  border-top: 1px solid #f4f2f9;
  display: flex;
  gap: 8px;
}
.pillar-odoo-modal-footer .btn-primary {
  background: #714b67;
  color: white;
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
}
.pillar-odoo-modal-footer .btn-secondary {
  background: #f4f2f9;
  color: #4a4465;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid #e2dff0;
  border-radius: 5px;
  padding: 8px 16px;
}
@media (max-width: 640px) {
  .pillar-odoo-modal-body {
    grid-template-columns: minmax(0, 1fr);
  }
  .pillar-odoo-modal-divider {
    display: none;
  }
}

@media (max-width: 768px) { .payhub-capabilities-grid { grid-template-columns: 1fr; gap: 1rem; } }
.payhub-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.payhub-pricing-card { padding: 2rem; border: 1px solid var(--ph-border); border-radius: 12px; background: #fff; transition: all 0.3s ease; position: relative; }
.payhub-pricing-card.featured { border: 2px solid var(--ph-accent); box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2); transform: scale(1.02); }
.payhub-pricing-card:hover { box-shadow: 0 12px 32px rgba(59, 130, 246, 0.1); transform: translateY(-4px); }
.payhub-pricing-badge { position: absolute; top: -12px; left: 24px; padding: 4px 12px; background: var(--ph-accent); color: #fff; border-radius: 4px; font-size: 12px; font-weight: 600; }
.payhub-pricing-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--ph-text); }
.payhub-pricing-desc { font-size: 0.875rem; color: var(--ph-text-muted); margin-bottom: 1.5rem; }
.payhub-pricing-price { font-size: 1.75rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--ph-text); }
.payhub-pricing-features { list-style: none; margin-bottom: 1.5rem; }
.payhub-pricing-features li { font-size: 13px; padding: 8px 0; padding-left: 20px; position: relative; color: var(--ph-text-muted); }
.payhub-pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--ph-accent); font-weight: bold; }
.payhub-btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s ease; width: 100%; }
.payhub-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3); }
.payhub-btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; background: transparent; color: var(--ph-accent); border: 2px solid var(--ph-accent); border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s ease; width: 100%; }
.payhub-btn-secondary:hover { background: rgba(59, 130, 246, 0.1); transform: translateY(-2px); }
.payhub-faq-list { max-width: 48rem; margin-top: 2rem; }
.payhub-faq-item { padding: 1.5rem; border: 1px solid var(--ph-border); border-radius: 10px; margin-bottom: 1rem; }
.payhub-faq-item summary { font-size: 1rem; font-weight: 600; color: var(--ph-text); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.payhub-faq-item summary::-webkit-details-marker { display: none; }
.payhub-faq-item summary::after { content: '▼'; font-size: 12px; color: var(--ph-accent); transition: transform 0.3s; }
.payhub-faq-item[open] summary::after { transform: rotate(180deg); }
.payhub-faq-answer { margin-top: 1rem; color: var(--ph-text-muted); font-size: 0.875rem; line-height: 1.6; }
.payhub-cta-section { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); color: #fff; padding: 3rem 1.5rem; border-radius: 16px; text-align: center; margin-top: 3rem; }
.payhub-cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.payhub-cta-section .payhub-cta-sub { font-size: 1.125rem; margin-bottom: 1.5rem; opacity: 0.9; }
.payhub-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.payhub-cta-btn-light { padding: 12px 32px; background: #fff; color: var(--ph-accent); border: none; border-radius: 8px; font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; transition: all 0.3s ease; }
.payhub-cta-btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }
@media (max-width: 768px) { .payhub-hero-title { font-size: 2rem; } .payhub-cta-buttons { flex-direction: column; } }

/* ========== Pillar 产品页：产品优势聊天窗口（参考设计） ========== */
.pillar-advantages-section { background: #f0f2f7; }
.pillar-chat-section-header { text-align: center; margin-bottom: 40px; }
.pillar-chat-section-title { font-size: 2rem; font-weight: 800; color: #0d0d1a; letter-spacing: -0.5px; margin-bottom: 8px; }
.pillar-chat-section-sub { font-size: 0.9375rem; color: #888; font-weight: 300; }

.pillar-chat-window {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* 顶栏为微信式居中标题；外框尺寸与背景仍与原先 .pillar-chat-window / .pillar-chat-body 一致 */
.pillar-chat-topbar--wx {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #f0f0f4;
  flex-shrink: 0;
}
.pillar-chat-wx-side {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #191919;
}
.pillar-chat-wx-side--end { justify-content: flex-end; }
.pillar-chat-wx-back {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  margin-left: 4px;
  color: #191919;
  opacity: 0.88;
}
.pillar-chat-wx-more {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #191919;
  padding-right: 6px;
  opacity: 0.75;
}
.pillar-chat-wx-center {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pillar-chat-wx-titles {
  text-align: center;
  max-width: 100%;
}
.pillar-chat-wx-title {
  font-size: 16px;
  font-weight: 600;
  color: #191919;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.pillar-chat-wx-sub {
  font-size: 11px;
  color: #888;
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.3;
}

.pillar-chat-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f8f8fc;
  min-height: 420px;
}

.pillar-msg-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  animation: pillar-msg-in .45s ease forwards;
}
.pillar-msg-row.pillar-msg-user { flex-direction: row-reverse; }
@keyframes pillar-msg-in { to { opacity:1; transform:none; } }

.pillar-msg-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b5bfa, #7b61ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: white;
  flex-shrink: 0;
}
.pillar-msg-avatar-user { background: linear-gradient(135deg, #f97316, #fb923c); }

.pillar-msg-bubble {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #1a1a2e;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.pillar-msg-row.pillar-msg-bot .pillar-msg-bubble { border-bottom-left-radius: 4px; }
.pillar-msg-row.pillar-msg-user .pillar-msg-bubble {
  background: linear-gradient(135deg, #3b5bfa, #5c78ff);
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 16px rgba(59,91,250,0.30);
}

.pillar-chat-cards-group {
  max-width: 90%;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  overflow: hidden;
}
.pillar-chat-card-item {
  display: flex; align-items: flex-start;
  gap: 12px; padding: 14px 18px;
  border-bottom: 1px solid #f2f2f7;
  transition: background .2s;
}
.pillar-chat-card-item:last-child { border-bottom: none; }
.pillar-chat-card-item:hover { background: #fafafe; }
.pillar-chat-card-icon {
  font-size: 20px;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: #f3f4fd;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-chat-card-title { font-size: 13.5px; font-weight: 600; color: #0d0d1a; margin-bottom: 3px; }
.pillar-chat-card-desc { font-size: 12px; color: #777; line-height: 1.55; font-weight: 300; }

.pillar-msg-d1 { animation-delay: .15s; }
.pillar-msg-d2 { animation-delay: .5s; }
.pillar-msg-d3 { animation-delay: 1s; }
.pillar-msg-d4 { animation-delay: 1.6s; }
.pillar-msg-d5 { animation-delay: 2.2s; }
.pillar-msg-d6 { animation-delay: 2.8s; }

.pillar-chat-input {
  padding: 14px 20px;
  border-top: 1px solid #f0f0f4;
  display: flex; align-items: center; gap: 10px;
  background: #fff;
}
.pillar-chat-input-field {
  flex: 1;
  background: #f4f5fb;
  border: none; outline: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13.5px; color: #0d0d1a;
}
.pillar-chat-input-field::placeholder { color: #aaa; }
.pillar-chat-input-send {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3b5bfa, #5c78ff);
  border: none; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(59,91,250,0.30);
}
.pillar-chat-input-send:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(59,91,250,0.40); }

/* 底部工具条：微信式（灰底 + 语音 / 输入 / 表情 / +） */
.pillar-chat-input--wxbar {
  background: #f7f7f7;
  border-top: 1px solid #d6d6d6;
  padding: 8px 8px 10px;
  gap: 6px;
  align-items: center;
  flex-wrap: nowrap;
}
.pillar-chat-wxbar-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: #191919;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  padding: 0;
  opacity: 0.88;
  pointer-events: none;
}
.pillar-chat-input--wxbar .pillar-chat-input-field {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 15px;
  color: #191919;
}
.pillar-chat-input--wxbar .pillar-chat-input-field::placeholder {
  color: #9a9a9a;
  font-size: 14px;
}

@media (max-width: 380px) {
  .pillar-chat-input--wxbar { padding-left: 4px; padding-right: 4px; gap: 4px; }
  .pillar-chat-wxbar-btn { width: 32px; height: 32px; }
}

/* ========== Pillar SAP 产品页：关于插件（intro band） ========== */
.pillar-sap-intro-band {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #172554 100%);
  color: #fff;
}
.pillar-sap-intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: start;
}
.pillar-sap-intro-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #93c5fd;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pillar-sap-intro-heading {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}
.pillar-sap-intro-body {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #e0e7ff;
  line-height: 1.8;
}
.pillar-sap-intro-body p { margin-bottom: 1rem; }
.pillar-sap-intro-body p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .pillar-sap-intro-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Pillar SAP 产品页：整体间距与正文可读性 */
.pillar-sap-page .pillar-sap-section { padding-top: 5rem; padding-bottom: 5rem; }
.pillar-sap-page .pillar-sap-intro-body { line-height: 1.85; }
.pillar-sap-page .pillar-sap-intro-body p { margin-bottom: 1.35rem; }
.pillar-sap-page .pillar-sap-intro-inner { gap: 3.5rem; }
.pillar-sap-flow-header { margin-bottom: 3rem; }
.pillar-sap-flow-steps { gap: 2rem; }
.pillar-sap-flow-step { padding: 1.75rem 1.5rem; }
.pillar-sap-flow-step-desc { line-height: 1.7; }
.pillar-sap-page #pillar-sap-features .payhub-section-title { margin-bottom: 0.75rem; }
.pillar-sap-page #pillar-sap-features .payhub-section-sub,
.pillar-sap-page #pillar-sap-sap .payhub-section-sub { margin-bottom: 3rem; line-height: 1.7; max-width: 40rem; }
.pillar-sap-features-with-image { display: grid; grid-template-columns: 1fr 1.35fr; gap: 0; align-items: center; overflow: visible; position: relative; }
.pillar-sap-features-list { display: flex; flex-direction: column; gap: 1.25rem; position: relative; z-index: 2; padding-right: 1rem; }
.pillar-sap-features-list .payhub-feature-card { display: flex; align-items: flex-start; gap: 1.25rem; text-align: left; background: #fff; }
.pillar-sap-features-list .payhub-feature-icon { flex-shrink: 0; margin-bottom: 0; }
.pillar-sap-features-list .payhub-feature-card h3 { margin-bottom: 0.375rem; }
.pillar-sap-features-list .payhub-feature-card p { margin: 0; }
.pillar-sap-features-image-wrap { position: relative; z-index: 1; margin-left: -28%; width: 128%; border-radius: 12px; overflow: hidden; border: 1px solid var(--ph-border); box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08); }
.pillar-sap-features-image { width: 100%; height: auto; max-height: 460px; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .pillar-sap-features-with-image { grid-template-columns: 1fr; gap: 1.5rem; }
  .pillar-sap-features-list { padding-right: 0; }
  .pillar-sap-features-image-wrap { margin-left: 0; width: 100%; max-height: 240px; }
  .pillar-sap-features-image { max-height: 240px; }
}
.pillar-sap-page .payhub-feature-card { padding: 2.25rem 2rem; }
.pillar-sap-page .payhub-feature-card h3 { margin-bottom: 0.875rem; }
.pillar-sap-page .payhub-feature-card p { line-height: 1.75; font-size: 0.9375rem; }
.pillar-sap-page #pillar-sap-sap .payhub-section-title { margin-bottom: 0.75rem; }
.pillar-sap-page #pillar-sap-sap .payhub-cap-item { padding: 1.5rem 1.75rem; min-width: 0; }
.pillar-sap-page #pillar-sap-sap .payhub-cap-item h4 { margin-bottom: 0.5rem; }
.pillar-sap-page #pillar-sap-sap .payhub-cap-item p { line-height: 1.75; font-size: 0.9375rem; margin-top: 0; }
.pillar-sap-page #pillar-sap-sap .payhub-capabilities-grid { margin-top: 2.5rem !important; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
@media (max-width: 768px) {
  .pillar-sap-page .pillar-sap-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .pillar-sap-page .pillar-sap-intro-inner { gap: 2rem; }
}

/* ========== Pillar SAP 产品页：工作流程 / 端到端支付链路 ========== */
.pillar-sap-flow-section {
  background: #fff;
  border-top: 1px solid var(--ph-border);
}
.pillar-sap-flow-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.pillar-sap-flow-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ph-accent);
  margin-bottom: 0.5rem;
}
.pillar-sap-flow-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ph-text);
  margin: 0;
}
.pillar-sap-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pillar-sap-flow-step {
  background: #f8fafc;
  border: 1px solid var(--ph-border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pillar-sap-flow-step:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
}
.pillar-sap-flow-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin-bottom: 1rem;
}
.pillar-sap-flow-step-icon {
  font-size: 1.25rem;
}
.pillar-sap-flow-step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ph-accent);
}
.pillar-sap-flow-step-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ph-text);
  margin-bottom: 0.5rem;
}
.pillar-sap-flow-step-desc {
  font-size: 0.8125rem;
  color: var(--ph-text-muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1024px) {
  .pillar-sap-flow-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pillar-sap-flow-steps { grid-template-columns: 1fr; }
}

/* ========== Pillar SAP 产品页：架构图（浅色风格，与整站一致） ========== */
.pillar-sap-arch-diagram {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08);
}
.pillar-sap-arch-title {
  font-size: 0.75rem;
  color: var(--ph-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ph-border);
}
.pillar-sap-arch-nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.pillar-sap-arch-node {
  flex: 1;
  min-width: 100px;
  background: #f8fafc;
  border: 1px solid var(--ph-border);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color .25s, box-shadow .25s;
}
.pillar-sap-arch-node:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}
.pillar-sap-arch-node-plugin {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}
.pillar-sap-arch-node-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}
.pillar-sap-arch-node-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ph-text);
}
.pillar-sap-arch-node:first-child .pillar-sap-arch-node-label { color: #2563eb; }
.pillar-sap-arch-node-plugin .pillar-sap-arch-node-label { color: var(--ph-accent); }
.pillar-sap-arch-node:last-child .pillar-sap-arch-node-label { color: #ea580c; }
.pillar-sap-arch-node-sub {
  font-size: 0.7rem;
  color: var(--ph-text-muted);
  margin-top: 4px;
}
.pillar-sap-arch-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.pillar-sap-arch-arrow-line {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  border-radius: 1px;
  position: relative;
}
.pillar-sap-arch-arrow-line::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 6px solid #10b981;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.pillar-sap-arch-arrow-label {
  font-size: 0.65rem;
  color: var(--ph-text-muted);
  text-align: center;
  white-space: nowrap;
}
.pillar-sap-arch-flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pillar-sap-flow-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
}
.pillar-sap-flow-tag-green {
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
}
.pillar-sap-flow-tag-blue {
  color: #2563eb;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25);
}
.pillar-sap-flow-tag-orange {
  color: #ea580c;
  background: rgba(234, 88, 12, 0.1);
  border-color: rgba(234, 88, 12, 0.25);
}
.pillar-sap-arch-status {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.pillar-sap-status-item {
  flex: 1;
  background: #f8fafc;
  border: 1px solid var(--ph-border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pillar-sap-status-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pillar-sap-pulse 2s infinite;
}
.pillar-sap-status-led-green { background: #10b981; }
.pillar-sap-status-led-blue { background: #3b82f6; animation-delay: 0.4s; }
.pillar-sap-status-led-orange { background: #ea580c; animation-delay: 0.8s; }
.pillar-sap-status-text {
  font-size: 0.7rem;
  color: var(--ph-text-muted);
}
@keyframes pillar-sap-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@media (max-width: 768px) {
  .pillar-sap-arch-nodes {
    flex-direction: column;
    align-items: stretch;
  }
  .pillar-sap-arch-arrow {
    flex-direction: row;
    justify-content: center;
  }
  .pillar-sap-arch-arrow-line {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, #3b82f6, #10b981);
  }
  .pillar-sap-arch-arrow-line::after {
    right: -3px;
    top: auto;
    bottom: -2px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #10b981;
  }
}
