/* ============================================================
   HostGen — Solutions Pages  (solutions.css)
   Modern, clean design for all /solutions/* pages.
   Per-page accent set via CSS custom properties.
   ============================================================ */

/* ── Page Hero ────────────────────────────────────────────── */
.sol-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 0;
  position: relative; overflow: hidden;
  color: #fff;
}
.sol-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent 80%);
}
.sol-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 60% at 70% 20%, rgba(255,255,255,.07) 0%, transparent 60%);
}
.sol-hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 10%, black 0%, transparent 70%);
}

/* Floating orbs for visual interest */
.sol-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.sol-orb-1 {
  width: 500px; height: 500px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
}
.sol-orb-2 {
  width: 350px; height: 350px;
  bottom: -100px; left: -50px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

.sol-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: rgba(255,255,255,.45);
  margin-bottom: 22px;
}
.sol-breadcrumb a { color: rgba(255,255,255,.45); transition: color .15s; }
.sol-breadcrumb a:hover { color: rgba(255,255,255,.8); }
.sol-breadcrumb-sep { color: rgba(255,255,255,.25); }

.sol-hero-inner { max-width: 720px; padding-bottom: 60px; position: relative; z-index: 1; }

.sol-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--sol-accent, #a78bfa);
}
.sol-label::before {
  content: ''; display: block; width: 14px; height: 2px;
  background: var(--sol-accent, #a78bfa); border-radius: 2px;
}

.sol-hero-h1 {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.1; color: #fff; margin-bottom: 18px;
}
.sol-hero-h1 .sol-h1-accent {
  background: var(--sol-h1-gradient, linear-gradient(135deg,#a78bfa,#60a5fa));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sol-hero-desc {
  font-size: 17px; color: rgba(255,255,255,.72);
  line-height: 1.75; margin-bottom: 32px; max-width: 620px;
}

.sol-hero-actions {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px;
}
.sol-btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 26px; font-size: 14.5px; font-weight: 700;
  background: var(--sol-accent, #7c3aed); color: #fff;
  border-radius: 10px; border: 1.5px solid var(--sol-accent, #7c3aed);
  transition: all .18s ease; white-space: nowrap;
  text-decoration: none; font-family: inherit;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.sol-btn-primary:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.sol-btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 22px; font-size: 14.5px; font-weight: 600;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.88);
  border-radius: 10px; border: 1.5px solid rgba(255,255,255,.22);
  transition: all .18s ease; white-space: nowrap;
  text-decoration: none; font-family: inherit;
}
.sol-btn-ghost:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); }

.sol-hero-note {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}
.sol-hero-note svg { color: var(--sol-accent, #a78bfa); flex-shrink: 0; }

/* Stats strip */
.sol-stat-strip {
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative; z-index: 1;
  padding: 24px 0;
}
.sol-stats {
  display: flex; flex-wrap: wrap; gap: 0;
}
.sol-stat {
  flex: 1; min-width: 130px;
  padding: 12px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 4px;
}
.sol-stat:last-child { border-right: none; }
.sol-stat-num {
  font-size: clamp(24px, 3.5vw, 34px); font-weight: 800;
  letter-spacing: -1px; color: var(--sol-accent, #a78bfa);
  line-height: 1; display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.sol-stat-unit {
  font-size: clamp(12px, 2vw, 15px); font-weight: 700;
  color: rgba(255,255,255,.6); letter-spacing: 0;
}
.sol-stat-label {
  font-size: 11.5px; color: rgba(255,255,255,.55); font-weight: 500;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.sol-trust-bar {
  border-top: 1px solid var(--color-border, #e4e4e7);
  border-bottom: 1px solid var(--color-border, #e4e4e7);
  padding: 18px 0; background: #fafafa;
}
.sol-trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px;
}
.sol-trust-label {
  font-size: 13px; font-weight: 500; color: #52525b;
  white-space: nowrap;
}
.sol-trust-logos {
  display: flex; align-items: center; flex-wrap: wrap; gap: 20px;
}
.sol-trust-logo {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600; color: #71717a;
  padding: 6px 14px; background: #fff;
  border: 1px solid var(--color-border, #e4e4e7);
  border-radius: 8px;
}
.sol-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: #52525b;
  padding: 6px 18px;
  border-right: 1px solid var(--color-border, #e4e4e7);
}
.sol-trust-item:last-child { border-right: none; }
.sol-trust-item svg { width: 14px; height: 14px; color: var(--sol-accent, #7c3aed); flex-shrink: 0; }

/* Button size variants */
.sol-btn-lg {
  padding: 15px 30px; font-size: 15.5px; font-weight: 700;
}
.sol-btn-ghost-light {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.25);
}
.sol-btn-ghost-light:hover {
  background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45);
}

/* ── Section Shared ───────────────────────────────────────── */
.sol-section { padding: 84px 0; }
.sol-section-alt { background: #fafafa; }
.sol-section-header {
  text-align: center; max-width: 700px; margin: 0 auto 56px;
}
.sol-section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sol-accent, #7c3aed);
  margin-bottom: 12px;
}
.sol-section-label::before {
  content: ''; display: block; width: 14px; height: 2px;
  background: var(--sol-accent, #7c3aed); border-radius: 2px;
}
.sol-section-title {
  font-size: clamp(24px,3.5vw,40px); font-weight: 800;
  letter-spacing: -1.2px; line-height: 1.1; color: #09090b; margin-bottom: 12px;
}
.sol-section-desc {
  font-size: 16px; color: #71717a; line-height: 1.75;
}

/* ── Enterprise Showcase Grid ────────────────────────────────────────── */
.enterprise-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .enterprise-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.enterprise-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.enterprise-diagram-card {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.enterprise-diagram-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border-bottom: 1px solid #e9d5ff;
  font-size: 13px;
  font-weight: 600;
  color: #6d28d9;
}

.enterprise-diagram-header svg {
  color: #7c3aed;
}

.enterprise-diagram-body {
  padding: 24px;
}

.network-nodes {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 20px;
}

.network-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  transition: all .18s ease;
  min-width: 90px;
}

.network-node:hover {
  border-color: #c4b5fd;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
}

.network-node.primary {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border-color: #ddd6fe;
}

.network-node .node-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #7c3aed;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.network-node.secondary .node-icon,
.network-node.edge .node-icon {
  background: #fff;
  color: #6366f1;
}

.network-node .node-label {
  font-size: 11px;
  font-weight: 600;
  color: #3f3f46;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.network-node .node-status {
  font-size: 10px;
  font-weight: 500;
  color: #16a34a;
  padding: 2px 8px;
  background: #dcfce7;
  border-radius: 10px;
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.network-stat {
  text-align: center;
  padding: 14px 10px;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid #f3f4f6;
}

.network-stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #7c3aed;
  line-height: 1;
  margin-bottom: 4px;
}

.network-stat-label {
  font-size: 10px;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.enterprise-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.enterprise-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 14px;
  transition: all .18s ease;
}

.enterprise-feature-item:hover {
  border-color: #c4b5fd;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.enterprise-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ede9fe 0%, #e9d5ff 100%);
  color: #7c3aed;
}

.enterprise-feature-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #09090b;
  margin-bottom: 6px;
  line-height: 1.3;
}

.enterprise-feature-content p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ── Features Grid ────────────────────────────────────────── */
.sol-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1060px) { .sol-features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .sol-features-grid { grid-template-columns: 1fr; } }

.sol-feature-card {
  background: #fff; border: 1px solid #e4e4e7;
  border-radius: 16px; padding: 24px 20px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.sol-feature-card:hover {
  border-color: var(--sol-border-hover, #c4b5fd);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.sol-feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; flex-shrink: 0;
  background: var(--sol-icon-bg, #ede9fe);
  color: var(--sol-accent, #7c3aed);
}
.sol-feature-title {
  font-size: 14px; font-weight: 700; color: #09090b;
  margin-bottom: 8px; line-height: 1.3;
}
.sol-feature-desc { font-size: 13px; color: #71717a; line-height: 1.65; }

/* ── Split Layout (use cases) ─────────────────────────────── */
.sol-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
@media (max-width: 860px) { .sol-split { grid-template-columns: 1fr; gap: 40px; } }

.sol-split-text { display: flex; flex-direction: column; gap: 16px; }
.sol-split-visual { display: flex; flex-direction: column; gap: 20px; }

.sol-uc-list { display: flex; flex-direction: column; gap: 12px; }
.sol-uc-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; background: #fff;
  border: 1px solid #e4e4e7; border-radius: 14px;
  transition: border-color .18s, box-shadow .18s;
}
.sol-uc-item:hover {
  border-color: var(--sol-border-hover, #c4b5fd);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.sol-uc-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--sol-icon-bg, #ede9fe);
  color: var(--sol-accent, #7c3aed);
}
.sol-uc-title { font-size: 14px; font-weight: 700; color: #09090b; margin-bottom: 4px; }
.sol-uc-desc  { font-size: 12.5px; color: #71717a; line-height: 1.6; }

/* ── Comparison Table ─────────────────────────────────────── */
.sol-table-wrap { overflow-x: auto; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.sol-table-caption {
  font-size: 12px; font-weight: 600; color: #71717a;
  margin-bottom: 12px; text-align: center;
}
.sol-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
  background: #fff;
}
.sol-table thead tr {
  border-bottom: 2px solid #e4e4e7;
}
.sol-table th {
  padding: 14px 16px; font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .08em;
}
.sol-table th:first-child { text-align: left; color: #71717a; width: 30%; }
.sol-table th.sol-th-ours {
  color: var(--sol-accent, #7c3aed);
  background: var(--sol-icon-bg, #ede9fe);
  border-radius: 8px 8px 0 0; text-align: center;
}
.sol-table th.sol-th-other { color: #71717a; text-align: center; }
.sol-table tbody tr { border-bottom: 1px solid #e4e4e7; }
.sol-table tbody tr:last-child { border-bottom: none; }
.sol-table td { padding: 14px 16px; }
.sol-table td:first-child { font-weight: 600; color: #09090b; }
.sol-table td.sol-td-ours {
  text-align: center;
  background: var(--sol-td-bg, rgba(124,58,237,.03));
}
.sol-table td.sol-td-other { text-align: center; color: #52525b; }
.sol-table td.sol-td-accent {
  text-align: center;
  color: var(--sol-accent, #7c3aed);
  font-weight: 700;
  background: var(--sol-td-bg, rgba(124,58,237,.04));
}

/* ── Compliance Grid ────────────────────────────────────────── */
.sol-compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1060px) { .sol-compliance-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .sol-compliance-grid { grid-template-columns: 1fr; } }

.sol-compliance-card {
  background: #fff; border: 1px solid #e4e4e7;
  border-radius: 16px; padding: 24px 20px;
  text-align: center;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.sol-compliance-card:hover {
  border-color: var(--sol-border-hover, #c4b5fd);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.sol-compliance-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: var(--sol-icon-bg, #ede9fe);
  color: var(--sol-accent, #7c3aed);
}
.sol-compliance-title {
  font-size: 15px; font-weight: 700; color: #09090b;
  margin-bottom: 8px; line-height: 1.3;
}
.sol-compliance-desc { font-size: 13px; color: #71717a; line-height: 1.65; }

/* ── Products Grid ────────────────────────────────────────── */
.sol-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px)  { .sol-products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .sol-products-grid { grid-template-columns: 1fr; } }

.sol-product-card {
  background: #fff; border: 1px solid #e4e4e7;
  border-radius: 18px; padding: 26px 22px 22px;
  display: flex; flex-direction: column; position: relative;
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.sol-product-card:hover {
  border-color: var(--sol-border-hover, #c4b5fd);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.sol-product-card-featured {
  border-color: var(--sol-accent, #7c3aed);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
  position: relative;
}
.sol-product-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sol-gradient-primary, linear-gradient(135deg, #6366f1 0%, #8b5cf8 50%, #a855f7 100%));
}
.sol-product-card-featured:hover {
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
  transform: translateY(-4px);
}
.sol-badge-featured {
  display: inline-flex; align-items: center;
  background: var(--sol-gradient-primary, linear-gradient(135deg, #6366f1 0%, #8b5cf8 50%, #a855f7 100%));
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
}
.sol-product-ribbon {
  position: absolute; top: 0; right: 0;
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  padding: 4px 12px; border-radius: 0 18px 0 10px;
  background: var(--sol-icon-bg, #ede9fe);
  color: var(--sol-accent, #7c3aed);
}
.sol-product-icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: var(--sol-icon-bg, #ede9fe);
  color: var(--sol-accent, #7c3aed);
}
.sol-product-name { font-size: 16px; font-weight: 700; color: #09090b; margin-bottom: 7px; }
.sol-product-desc { font-size: 13px; color: #71717a; line-height: 1.65; margin-bottom: 18px; }
.sol-product-specs {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.sol-product-specs li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12.5px; color: #3f3f46; line-height: 1.5;
}
.sol-product-specs li svg {
  color: #22c55e; flex-shrink: 0; margin-top: 1px;
  width: 14px; height: 14px;
}
.sol-product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid #e4e4e7; gap: 10px; margin-top: auto;
}
.sol-product-price { display: flex; align-items: baseline; gap: 3px; flex-wrap: wrap; }
.sol-price-from { font-size: 11px; color: #71717a; font-weight: 500; align-self: center; }
.sol-price-val  { font-size: 24px; font-weight: 800; color: #09090b; letter-spacing: -1px; }
.sol-price-per  { font-size: 12.5px; color: #71717a; align-self: center; }
.sol-btn-card {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  background: var(--sol-icon-bg, #ede9fe); color: var(--sol-accent, #7c3aed);
  border: 1.5px solid var(--sol-border-soft, #e9d5ff); border-radius: 8px;
  transition: all .18s ease; white-space: nowrap; text-decoration: none; flex-shrink: 0;
}
.sol-btn-card:hover {
  background: var(--sol-accent, #7c3aed); color: #fff;
  border-color: var(--sol-accent, #7c3aed);
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.sol-product-btn-featured {
  background: var(--sol-accent, #7c3aed); color: #fff;
  border-color: var(--sol-accent, #7c3aed);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
}
.sol-product-btn-featured:hover {
  background: var(--sol-accent-hover, #6d28d9); color: #fff;
  border-color: var(--sol-accent-hover, #6d28d9);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.sol-faq-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 12px; max-width: 1000px; margin: 0 auto;
}
@media (max-width: 700px) { .sol-faq-grid { grid-template-columns: 1fr; } }

.sol-faq-item {
  background: #fff; border: 1px solid #e4e4e7;
  border-radius: 14px; overflow: hidden; transition: border-color .18s;
}
.sol-faq-item[open] { border-color: var(--sol-border-hover, #c4b5fd); }
.sol-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: #09090b;
  list-style: none; user-select: none; transition: background .18s;
}
.sol-faq-q::-webkit-details-marker { display: none; }
.sol-faq-q::after {
  content: ''; width: 16px; height: 16px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 16px; transition: transform .22s;
}
details[open] .sol-faq-q::after { transform: rotate(180deg); }
.sol-faq-q:hover { background: #faf5ff; }
.sol-faq-a {
  padding: 0 20px 18px; font-size: 13.5px; color: #52525b; line-height: 1.7;
}
.sol-faq-a p { margin: 0; }
.sol-faq-a a { color: var(--sol-accent, #7c3aed); text-decoration: underline; }

/* ── CTA ──────────────────────────────────────────────────── */
.sol-cta {
  position: relative; overflow: hidden;
  padding: 88px 0;
  background: linear-gradient(135deg, #0f0a1f 0%, #1a1040 55%, #2d1b4e 100%);
}
.sol-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.sol-cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 80%);
}
.sol-cta-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.sol-cta-orb-1 {
  width: 500px; height: 500px; top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
}
.sol-cta-orb-2 {
  width: 350px; height: 350px; bottom: -120px; left: -80px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
}
.sol-cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 640px; margin: 0 auto;
}
.sol-cta-title {
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 800;
  color: #fff; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 14px;
}
.sol-cta-desc {
  font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 36px;
}
.sol-cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.sol-cta-btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 26px; font-size: 15px; font-weight: 700;
  background: #fff; color: #7c3aed;
  border: 1.5px solid #fff; border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,.25);
  transition: all .18s ease; white-space: nowrap;
  text-decoration: none; font-family: inherit;
}
.sol-cta-btn-primary:hover { box-shadow: 0 8px 28px rgba(0,0,0,.35); transform: translateY(-2px); background: #faf5ff; }
.sol-cta-btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 22px; font-size: 15px; font-weight: 600;
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.28); border-radius: 10px;
  transition: all .18s ease; white-space: nowrap;
  text-decoration: none; font-family: inherit;
}
.sol-cta-btn-secondary:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

/* ── Shared animation ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 720px) {
  .sol-section { padding: 56px 0; }
  .sol-stat { min-width: 110px; }
  .sol-trust-item { font-size: 12px; padding: 6px 12px; }
}
@media (max-width: 480px) {
  .sol-hero-h1 { letter-spacing: -1px; }
  .sol-stats { flex-wrap: wrap; }
  .sol-stat { flex-basis: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .sol-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
}
