/* ============================================
   ProIA Landing Page — Reusable Components
   ============================================ */

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-align: center;
}

.btn--gold {
  background: var(--gradient-gold-btn);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.45);
}

.btn--gold-lg {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--blue {
  background: var(--brand-blue);
  color: var(--white);
}

.btn--blue:hover {
  background: var(--sky-blue);
  transform: translateY(-2px);
}

.btn--outline-blue {
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}

.btn--outline-blue:hover {
  background: var(--brand-blue);
  color: var(--white);
}

/* ── Badge / Pill ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.badge--gold {
  background: var(--gold-bg);
  color: var(--gold-medium);
}

.badge--blue {
  background: rgba(46, 110, 181, 0.1);
  color: var(--bright-blue);
}

.badge--popular {
  background: var(--gradient-gold-btn);
  color: var(--navy-deep);
  font-weight: 700;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card--glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
}

.card--glass:hover {
  border-color: rgba(46, 110, 181, 0.4);
  box-shadow: 0 8px 32px rgba(46, 110, 181, 0.15);
  transform: translateY(-4px);
}

/* ── Icon Circle ── */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 24px;
  flex-shrink: 0;
}

.icon-circle--blue {
  background: rgba(46, 110, 181, 0.1);
  color: var(--bright-blue);
}

.icon-circle--danger {
  background: rgba(220, 38, 38, 0.08);
  color: var(--danger);
}

.icon-circle--gold {
  background: var(--gold-bg);
  color: var(--gold);
}

.icon-circle--lg {
  width: 64px;
  height: 64px;
  font-size: 28px;
}

/* ── Feature List (checkmark list) ── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--dark-text);
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--success);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / contain no-repeat;
  border-radius: 50%;
}

.feature-list li.excluded {
  color: var(--mid-gray);
  opacity: 0.55;
}

.feature-list li.excluded::before {
  background: var(--mid-gray);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") center / contain no-repeat;
}

/* ── Browser Mockup Frame ── */
.browser-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-hero-mockup);
  background: var(--charcoal);
}

.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--charcoal);
}

.browser-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-frame__dot--red { background: #ef4444; }
.browser-frame__dot--yellow { background: #eab308; }
.browser-frame__dot--green { background: #22c55e; }

.browser-frame__url {
  flex: 1;
  margin-left: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--mid-gray);
  font-family: var(--font-body);
}

.browser-frame img {
  display: block;
  width: 100%;
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold-btn);
  border-radius: 2px;
  margin: var(--space-md) auto;
}

/* ── Dot Grid Background Pattern ── */
.dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
