 .aqro-cards-section {
    padding: 60px 0 80px;
    background: var(--bg);
 }
  .aqro-cards-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
  }


  .aqro-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  @media (max-width: 768px) {
    .aqro-cards-grid { grid-template-columns: 1fr; gap: 24px; }
  }

  /* Kart - Sizin timeline-content stilinizdən */
  .aqro-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  .aqro-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--accent);
  }

  /* Dairə Marker - Sizin timeline-marker stilinizdən */
  .aqro-card-marker {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--bg-card);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--bg);
  }
  .aqro-card-marker i {
    font-size: 1.1rem;
    color: var(--gold);
  }

  /* Kart Mətn */
  .aqro-card-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .aqro-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .aqro-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s;
  }
  .aqro-card:hover .aqro-card-arrow {
    gap: 10px;
  }
  .aqro-card-arrow i {
    transition: transform 0.3s;
  }
  .aqro-card:hover .aqro-card-arrow i {
    transform: translateX(4px);
  }

  /* ============================================
     MODAL - Sizin dizaynınıza uyğun
     ============================================ */
  .aqro-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .aqro-modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .aqro-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: all 0.3s;
    box-shadow: var(--shadow-xl);
  }
  .aqro-modal-overlay.active .aqro-modal-content {
    transform: scale(1);
  }

  .aqro-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.2s;
  }
  .aqro-modal-close:hover {
    background: rgba(239,68,68,0.8);
    transform: rotate(90deg);
  }

  .aqro-modal-header {
    padding: 32px 32px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .aqro-modal-marker {
    width: 56px; height: 56px;
    min-width: 56px;
    background: var(--bg-card);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px var(--bg-card);
  }
  .aqro-modal-marker i {
    font-size: 1.3rem;
    color: var(--gold);
  }
  .aqro-modal-title-wrap {
    flex: 1;
    padding-top: 4px;
  }
  .aqro-modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--heading);
    line-height: 1.3;
  }

  .aqro-modal-body {
    padding: 20px 32px 32px;
  }
  .aqro-modal-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
  }

  /* Modal Items - Timeline stilində */
  .aqro-modal-timeline {
    position: relative;
    padding-left: 24px;
  }
  .aqro-modal-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--navy), var(--accent), var(--gold));
    border-radius: 2px;
  }
  .aqro-modal-item {
    position: relative;
    padding-left: 36px;
    padding-bottom: 20px;
  }
  .aqro-modal-item:last-child {
    padding-bottom: 0;
  }
  .aqro-modal-item-marker {
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--bg-card);
  }
  .aqro-modal-item-marker i {
    font-size: 0.6rem;
    color: var(--gold);
  }
  .aqro-modal-item-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: all 0.3s;
  }
  .aqro-modal-item-content:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
  }
  .aqro-modal-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
    line-height: 1.4;
  }
  .aqro-modal-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .aqro-modal-footer {
    padding: 0 32px 32px;
    display: flex;
    justify-content: center;
  }
  .aqro-btn-close {
    padding: 12px 40px;
    border-radius: 100px;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
  }
  .aqro-btn-close:hover {
    border-color: var(--accent);
    color: var(--heading);
    background: rgba(14,165,233,0.1);
  }

  /* Mobil */
  @media (max-width: 640px) {
    .aqro-modal-overlay {
      padding: 0;
      align-items: flex-end;
    }
    .aqro-modal-content {
      max-width: 100%;
      max-height: 90vh;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .aqro-modal-header { padding: 24px 24px 0; }
    .aqro-modal-body { padding: 16px 24px 24px; }
    .aqro-modal-footer { padding: 0 24px 24px; }
    .aqro-modal-marker {
      width: 48px; height: 48px;
    }
    .aqro-modal-marker i { font-size: 1.1rem; }
    .aqro-card {
      padding: 20px 24px;
      gap: 16px;
    }
    .aqro-card-marker {
      width: 40px; height: 40px;
    }
    .aqro-card-marker i { font-size: 0.9rem; }
  } 



/* ============================================
   GÖZLƏNİLƏN NƏTİCƏLƏR SEKSIYASI
   ============================================ */

.results-section-gn {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== SEKSIYA BAŞLIĞI ===== */
.section-header-gn {
  text-align: center;
  margin-bottom: 60px;
}

.section-label-gn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-label-gn::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.section-title-gn {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title-gn span {
  color: var(--accent);
}

.section-desc-gn {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== KARTLAR GRID ===== */
.results-grid-gn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .results-grid-gn {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== KART ===== */
.result-card-gn {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: default;
}

/* Üst zolaq - hover'da görünür */
.result-card-gn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.result-card-gn:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.result-card-gn:hover::before {
  transform: scaleX(1);
}

.result-card-inner-gn {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* Dairə icon - aqro-card-marker stilində */
.result-icon-wrap-gn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--bg);
}

.result-card-gn:hover .result-icon-wrap-gn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  transform: scale(1.1);
}

.result-icon-wrap-gn i {
  font-size: 1.1rem;
  color: var(--gold);
  transition: color 0.3s ease;
}

.result-card-gn:hover .result-icon-wrap-gn i {
  color: white;
}

/* Kart məzmunu */
.result-content-gn {
  flex: 1;
}

.result-content-gn h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.4;
}

.result-content-gn p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== RESPONSIV ===== */
@media (max-width: 640px) {
  .results-section-gn {
    padding: 40px 16px;
  }

  .result-card-gn {
    padding: 24px;
  }

  .result-card-inner-gn {
    gap: 16px;
  }

  .result-icon-wrap-gn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-width: 2px;
  }

  .result-icon-wrap-gn i {
    font-size: 0.9rem;
  }

  .result-content-gn h3 {
    font-size: 1rem;
  }

  .result-content-gn p {
    font-size: 0.875rem;
  }
}

/* ===== ENTRANCE ANIMATION ===== */
@keyframes fadeInUpGn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-card-gn {
  animation: fadeInUpGn 0.6s ease forwards;
  opacity: 0;
}

.result-card-gn:nth-child(1) { animation-delay: 0.1s; }
.result-card-gn:nth-child(2) { animation-delay: 0.2s; }
.result-card-gn:nth-child(3) { animation-delay: 0.3s; }
.result-card-gn:nth-child(4) { animation-delay: 0.4s; }
.result-card-gn:nth-child(5) { animation-delay: 0.5s; }
.exp-arrow{
  margin-bottom: 250px;
}