/* === ABOUT PAGE === */

.about-hero {
  min-height: 35vh;
  background: linear-gradient(135deg, #05051a, #0a1030);
  display: flex;
  align-items: center;
  padding: 120px 40px 60px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 500px;
}

/* LEARN SECTION */
.learn-section {
  padding: 80px 20px;
  background: var(--bg-dark);
}

.learn-header {
  margin-bottom: 50px;
}

.learn-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.learn-header p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 700px;
}

/* SKILL BARS */
.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.skill-bar {}

.skill-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--teal);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.bar-track {
  position: relative;
  height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(0,229,200,0.15);
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  width: 0;
  transition: width 1.5s ease;
  border-radius: 2px;
}

.bar-percent {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: #000;
  font-weight: bold;
  z-index: 2;
}

/* STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.stat-card {
  background: var(--card-bg);
  padding: 30px 20px;
  text-align: center;
}

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--teal);
}

.stat-num.percent::after { content: '%'; }
.stat-num:not(.percent)::before { content: '+'; }

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 1px;
  margin-top: 6px;
  font-family: 'Share Tech Mono', monospace;
}

/* GOAL SECTION */
.goal-section {
  padding: 80px 20px;
  background: var(--bg-navy);
  text-align: center;
}

.goal-section p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/* PROTECT */
.protect-section {
  padding: 80px 20px;
  background: var(--bg-dark);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.protect-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.protect-text p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.protect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.protect-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.protect-list i { color: var(--teal); }

.protect-image img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* CUSTOMERS */
.customers-section {
  padding: 80px 20px;
  background: var(--bg-navy);
}

.customers-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 24px;
  color: var(--white);
}

.customer-list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.customer-list li {
  color: var(--gray);
  font-size: 0.95rem;
  padding-left: 16px;
  border-left: 2px solid var(--border);
}

.customer-list li::before { content: '• '; color: var(--teal); }

.customer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.cust-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cust-card h4 {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--teal);
  letter-spacing: 1px;
}

.cust-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

.cust-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,229,200,0.1);
  border: 1px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
}

.dark-card {
  background: linear-gradient(135deg, #0a1a3a, #0d0d3a);
}

.dark-card h3 {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .protect-image { display: none; }
  .stats-row { grid-template-columns: repeat(3,1fr); }
  .customer-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; }
  .about-hero { padding: 100px 20px 40px; }
}
