/* ── PAGE HERO BANNER ── */
    .page-hero {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(15, 23, 42, 0.85) 100%),
                  url('https://images.pexels.com/photos/3862634/pexels-photo-3862634.jpeg?auto=compress&cs=tinysrgb&w=1920&h=600&fit=crop') center/cover no-repeat;
      padding: 100px 0 80px;
      text-align: center;
      position: relative;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blue-btn), var(--secondary), var(--accent));
    }
    .page-hero h1 {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 900;
      color: #fff;
      margin-bottom: 16px;
    }
    .page-hero p {
      color: rgba(255,255,255,0.75);
      font-size: 18px;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .breadcrumb {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 14px;
      color: rgba(255,255,255,0.5);
    }
    .breadcrumb a { color: var(--blue-btn); }
    .breadcrumb span { color: rgba(255,255,255,0.4); }
    /* ── ABOUT INTRO ── */
    .about-intro {
      padding: 100px 0;
    }
    .about-intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-intro-img {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    }
    .about-intro-img img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      display: block;
    }
    .about-intro-img .experience-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: var(--blue-btn);
      color: #fff;
      padding: 20px 28px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(64,146,205,0.4);
    }
    .experience-badge .num {
      font-size: 42px;
      font-weight: 900;
      display: block;
      line-height: 1;
    }
    .experience-badge .lbl {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-top: 4px;
    }
    .about-text h2 {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .about-text .highlight {
      color: var(--blue-btn);
    }
    .about-text p {
      color: var(--gray);
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .specializations {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 24px;
      margin: 24px 0 0;
    }
    .specializations li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: var(--dark);
      padding: 8px 0;
    }
    .specializations li .icon {
      width: 28px;
      height: 28px;
      background: rgba(64,146,205,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
      color: var(--blue-btn);
    }
    /* ── MISSION / VISION / VALUES ── */
    .mvv-section {
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      padding: 100px 0;
    }
    .mvv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 60px;
    }
    .mvv-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 48px 36px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .mvv-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blue-btn), var(--accent));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    .mvv-card:hover::before { transform: scaleX(1); }
    .mvv-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(64,146,205,0.1);
      border-color: rgba(64,146,205,0.3);
    }
    .mvv-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(64,146,205,0.1), rgba(64,146,205,0.05));
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 auto 24px;
      transition: all 0.4s ease;
    }
    .mvv-card:hover .mvv-icon {
      background: linear-gradient(135deg, var(--blue-btn), rgba(64,146,205,0.8));
      transform: scale(1.1);
    }
    .mvv-card h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 16px;
    }
    .mvv-card p {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.7;
    }
    .values-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-top: 16px;
    }
    .values-list span {
      background: rgba(64,146,205,0.08);
      color: var(--blue-btn);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid rgba(64,146,205,0.15);
    }
    /* ── ACHIEVEMENTS ── */
    .achievements-section { padding: 100px 0; }
    .achievements-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 24px;
      margin-top: 60px;
    }
    .achievement-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px 24px;
      text-align: center;
      transition: all 0.4s ease;
    }
    .achievement-card:hover {
      border-color: rgba(64,146,205,0.3);
      box-shadow: 0 16px 50px rgba(64,146,205,0.1);
      transform: translateY(-6px);
    }
    .achievement-card .ach-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }
    .achievement-card .ach-val {
      font-size: 44px;
      font-weight: 900;
      color: var(--blue-btn);
      line-height: 1;
      margin-bottom: 8px;
    }
    .achievement-card .ach-lbl {
      font-size: 14px;
      color: var(--gray);
      font-weight: 500;
    }
    /* ── TEAM ── */
    .team-section {
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      padding: 100px 0;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      margin-top: 60px;
    }
    .team-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.4s ease;
    }
    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(64,146,205,0.1);
      border-color: rgba(64,146,205,0.3);
    }
    .team-avatar {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, rgba(64,146,205,0.1) 0%, rgba(64,146,205,0.05) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 64px;
      position: relative;
    }
    .team-avatar::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blue-btn), var(--accent));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    .team-card:hover .team-avatar::after { transform: scaleX(1); }
    .team-info {
      padding: 28px;
      text-align: center;
    }
    .team-info h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }
    .team-info p {
      font-size: 14px;
      color: var(--blue-btn);
      font-weight: 500;
    }
    /* ── TIMELINE ── */
    .timeline-section { padding: 100px 0; }
    .timeline {
      position: relative;
      max-width: 800px;
      margin: 60px auto 0;
      padding-left: 40px;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 15px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, var(--blue-btn), var(--accent));
      border-radius: 3px;
    }
    .timeline-item {
      position: relative;
      padding: 0 0 50px 40px;
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-dot {
      position: absolute;
      left: -25px;
      top: 4px;
      width: 24px;
      height: 24px;
      background: var(--blue-btn);
      border-radius: 50%;
      border: 4px solid #fff;
      box-shadow: 0 0 0 3px rgba(64,146,205,0.2), 0 4px 10px rgba(64,146,205,0.3);
    }
    .timeline-year {
      font-size: 14px;
      font-weight: 700;
      color: var(--blue-btn);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .timeline-item h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .timeline-item p {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.7;
    }
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .about-intro-grid { grid-template-columns: 1fr; gap: 50px; }
      .mvv-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 50px; }
      .specializations { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .achievements-grid { grid-template-columns: 1fr 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; text-align: center; }
    }