/* =============================================
   NOVA VAKIL – about.css
   Page-specific styles for about.php
   ============================================= */

/* --- Page Hero --- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #122d50 100%);
    padding: 72px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(31,122,99,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero-inner { position: relative; z-index: 1; }
  .page-hero .section-label { margin-bottom: 16px; }
  .page-hero-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .page-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.68);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
  }
  
  /* --- Story Section --- */
  .about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .story-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 18px;
  }
  .story-content p:last-child { margin-bottom: 0; }
  
  .story-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 36px;
    color: var(--white);
  }
  .sc-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .sc-stat {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
  }
  .sc-num {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
    line-height: 1;
  }
  .sc-lbl {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
  }
  .sc-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
  }
  .sc-tagline span:first-child { font-size: 20px; }
  
  /* --- Values Grid --- */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
  }
  .value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }
  .vc-icon {
    width: 52px; height: 52px;
    background: rgba(31,122,99,0.08);
    color: var(--emerald);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .value-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
  }
  
  /* --- Team Grid --- */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
  }
  .team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
  }
  .team-avatar {
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
  }
  .team-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .team-role {
    font-size: 13px;
    color: var(--emerald);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .team-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }
  .team-tags span {
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 6px;
  }
  
  /* --- How We Work --- */
  .about-how {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .how-points { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }
  .how-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .hp-dot {
    width: 10px; height: 10px;
    background: var(--emerald);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
  }
  .how-point h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .how-point p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
  }
  
  /* How Visual – mock status card */
  .hw-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .hw-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
  }
  .hw-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
  }
  .hw-dot.red { background: #FF5F56; margin-left: 0; }
  .hw-dot.yellow { background: #FFBD2E; }
  .hw-dot.green { background: #27C93F; }
  .hw-header span:last-child { margin-right: auto; }
  
  .hw-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
  .hw-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
  }
  .hw-step.done { background: rgba(31,122,99,0.06); color: var(--emerald); }
  .hw-step.active { background: rgba(11,31,58,0.05); color: var(--navy); }
  .hw-step.pending { background: var(--bg-light); color: var(--text-muted); }
  .hw-check { font-size: 16px; flex-shrink: 0; }
  .hw-check.active { color: var(--navy); }
  .hw-check.pending { color: var(--border); }
  .hw-time { margin-right: auto; font-size: 12px; font-weight: 400; }
  .hw-time.in-progress { color: var(--emerald); font-weight: 600; }
  
  .hw-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
  }
  .hw-badge {
    background: rgba(31,122,99,0.1);
    color: var(--emerald);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
  }
  
  /* --- Responsive --- */
  @media (max-width: 1024px) {
    .about-story,
    .about-how { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .story-card { max-width: 480px; }
  }
  @media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .sc-stat-row { grid-template-columns: 1fr 1fr; }
  }
  