/* --- Premium Inner Pages Styles --- */

.inner-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #150a0a 100%);
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(247, 96, 49, 0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.inner-hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.inner-hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.rich-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 80px 0;
}

.rich-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.rich-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(247, 96, 49, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rich-card:hover {
  transform: translateY(-10px);
  border-color: rgba(247, 96, 49, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(247, 96, 49, 0.1);
}

.rich-card:hover::before {
  opacity: 1;
}

.rich-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(247, 96, 49, 0.1);
  color: var(--brand-color);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.rich-card-icon svg {
  width: 32px;
  height: 32px;
}

.rich-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.rich-card p {
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Glass Tabs */
.glass-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.glass-tab {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.glass-tab:hover, .glass-tab.active {
  background: var(--brand-color);
  border-color: var(--brand-color);
  box-shadow: 0 10px 20px rgba(247, 96, 49, 0.3);
  transform: translateY(-2px);
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.2);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-color);
  font-family: var(--font-heading);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(247, 96, 49, 0.4);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
