:root{
  --ah-pri:#0060fe;
  --ah-bg:#0b0f19;
  --ah-card:#101826;
  --ah-soft:#0f1522;
  --ah-text:#c9d4e5;
  --ah-white:#ffffff;
  --ah-muted:#8ea3c0;
  --ah-border:rgba(255,255,255,.08);
  --ah-grad:linear-gradient(135deg, rgba(0,96,254,.18), rgba(0,214,255,.12));
}

#ah-team {
    background: var(--ah-bg); 
    color: var(--ah-text); 
}
#ah-team .container {
    max-width: 1140px; 
}

.ah-section { padding: 72px 0;
    position: relative;
}
.ah-kicker {
    color: #009de1;
    text-transform: uppercase;
    letter-spacing:.08em;
    font-weight:700;
    margin-bottom:8px;
}
.ah-title {
    color: var(--ah-white);
    font-weight:800;
    font-size:clamp(26px, 3vw, 38px);
    margin: 0 0 10px;
}
.ah-para {
    color: var(--ah-muted);
    margin: 0 0 18px;
}

.ah-intro{
    background: radial-gradient(1200px 400px at 20% -10%, rgba(0,96,254,.15), transparent), radial-gradient(1000px 400px at 90% 0%, rgba(0,214,255,.12), transparent);
    border-top:1px solid var(--ah-border);
}
.ah-intro-card{
    background: var(--ah-card);
    border:1px solid var(--ah-border);
    border-radius:16px; padding:28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.ah-list{
    list-style:none;
    padding:0;
    margin:12px 0 0;
    display:grid;
    gap:10px;
}
.ah-list li::before{
    content: "✔";
    color: #009de1;
    margin-right: 8px;
}

.ah-stats-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:16px;
}
.ah-stat{
    background: var(--ah-soft);
    border:1px solid var(--ah-border);
    border-radius:14px;
    padding:22px;
    text-align:center;
    position:relative;
    overflow:hidden;
}
.ah-stat::after{
    content:"";
    position:absolute;
    inset:0;
    background: var(--ah-grad);
    opacity:.5;
    pointer-events:none;
}
.ah-stat-number{
    display:block;
    font-weight:800;
    color:var(--ah-white);
    font-size: clamp(26px, 4vw, 40px);
}
.ah-stat-label{
    display:block;
    color:var(--ah-muted);
    font-size:14px; margin-top:6px;
}

.ah-team-section{
    border-top:1px solid var(--ah-border);
}
.ah-section-head{
    text-align:center;
    max-width:800px;
    margin:0 auto 28px;
}
.ah-team-grid{
    display:grid;
    grid-template-columns:
    repeat(3, minmax(0,1fr));
    gap:22px;
}
.ah-member-card{
    background: linear-gradient(160deg, rgba(255,255,255,0.02), rgba(255,255,255,0)) var(--ah-card);
    border:1px solid rgba(255,255,255,.06);
    border-radius:10px;
    overflow:hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    position:relative;
}
.ah-member-card::before{
    content:"";
    position:absolute;inset:0;
    background: radial-gradient(900px 320px at 20% 0%, rgba(0,96,254,.08), transparent);
    opacity:0;pointer-events:none;transition:opacity .4s ease;
}
.ah-member-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 28px -4px rgba(0,0,0,.45);
    border-color:rgba(0,150,255,.45);
}
.ah-member-card:hover::before{opacity:1;}
.ah-member-photo{
    position:relative;
    aspect-ratio: 5/4;
    background: #0a1322;
    display:flex;
    align-items:center;
    justify-content:center;
}
.ah-member-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:saturate(1.1) contrast(1.05);
}
.ah-badge{
    position:absolute;
    top:10px;
    left:10px;
    background: #009de1;
    color:#fff;
    font-weight:600;
    font-size:11px;
    padding:5px 9px;
    border-radius:6px;
    letter-spacing:.05em;
    box-shadow:0 4px 14px -2px rgba(0,96,254,.5);
    backdrop-filter: blur(4px);
}
.ah-member-body{
    padding:18px;
}
.ah-member-name{
    margin:0 0 4px;
    color:var(--ah-white);
    font-size:20px;
    font-weight:800;
}
.ah-member-role{
    margin:0 0 10px;
    color:var(--ah-muted);
    font-size:14px;
}

.ah-btn{
    display:inline-block;
    padding:10px 14px;
    border-radius:10px;
    font-weight:700;
    font-size:14px;
    text-decoration:none;
    transition: all .2s ease;
}
.ah-btn--primary{
    background: #009de1;
    color:#fff;
    box-shadow:0 10px 20px rgba(0,96,254,.3);
}
.ah-btn--primary:hover{
    filter:brightness(1.08);
    transform: translateY(-1px);
}
.ah-btn--ghost{
    background:transparent;
    color: var(--ah-white);
    border:1px solid var(--ah-border);
}
.ah-btn--ghost:hover{
    background:rgba(255,255,255,.06);
}

.ah-values{
    border-top:1px solid var(--ah-border);
    background: radial-gradient(900px 300px at 70% 0%, rgba(0,96,254,.1), transparent);
}
.ah-values-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:26px;
}
.ah-value{
    background:linear-gradient(160deg,rgba(255,255,255,.015),rgba(255,255,255,0)) var(--ah-card);
    border:1px solid rgba(255,255,255,.06);
    border-radius:14px;
    padding:24px 22px 22px;
    position:relative;
    transition:border-color .25s ease,background .25s ease,transform .25s ease;
}
.ah-value::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(700px 260px at 25% 0%,rgba(0,96,254,.12),transparent);
    opacity:0;
    transition:opacity .4s ease;
    pointer-events:none;
}
.ah-value:hover{
    border-color:rgba(0,150,255,.45);
    transform:translateY(-3px);
} 
.ah-value:hover::after{
    opacity:1;
}
.ah-value h4{
    color:var(--ah-white);
    margin:10px 0 8px;
    font-size:16px;
    font-weight:700;
    letter-spacing:.02em;
}
.ah-value p{
    color:var(--ah-muted);
    margin:0;
    font-size:14px;
    line-height:1.45;
}
.ah-value-icon{
    --ico-bg:rgba(0,96,254,.10);
    --ico-border:rgba(255,255,255,.10);
    --ico-color:#8ccaff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:8px;
    background:linear-gradient(145deg,var(--ico-bg),
    rgba(0,214,255,.06));
    border:1px solid var(--ico-border);
    color:var(--ico-color);
    box-shadow:0 2px 4px -1px rgba(0,0,0,.4),
    0 4px 14px -2px rgba(0,96,254,.25);
}
.ah-value-icon svg{
    stroke:#009de1;
}

.ah-timeline{
    border-top:1px solid var(--ah-border);
}
.ah-timeline-list{
    list-style:none;
    padding:0;
    margin:0;
    position:relative;
}
.ah-timeline-list li{
    display:grid;
    grid-template-columns: 24px 1fr;
    gap:14px;
    padding:16px 0;
    border-bottom:1px dashed var(--ah-border);
}
.ah-timeline-list .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #009de1;
  margin-top: 4px;
  position: relative;
  box-shadow: 0 0 0 4px rgba(0,96,254,.15);
}
.ah-timeline-list .dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,214,255,.18) 0%, rgba(0,96,254,.12) 80%, transparent 100%);
  opacity: 0.7;
  z-index: 0;
  animation: ah-dot-aura 1.4s infinite ease-in-out alternate;
}
@keyframes ah-dot-aura {
  0% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.18); }
  100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
}
.ah-timeline-list .content h4{
    color:var(--ah-white);
    margin:0 0 4px;
}
.ah-timeline-list .content .time{
    color:#9cc4ff;
    font-weight:700;
    font-size:12px;
    letter-spacing:.08em;
}
.ah-timeline-list .content p{
    color:var(--ah-muted);
    margin:6px 0 0;
}

.ah-faq{
    border-top:1px solid var(--ah-border);
}
.ah-accordion{
    max-width: 900px;
    margin: 0 auto;
    display:grid;
    gap:12px;
}
.ah-accordion details{
    background: var(--ah-card);
    border:1px solid var(--ah-border);
    border-radius:12px;
    padding:14px 18px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.ah-accordion details:not([open]){
    max-height: 3.5rem;
}
.ah-accordion details[open]{
    max-height: 20rem;
}
.ah-accordion summary{
    cursor:pointer;
    color:var(--ah-white);
    font-weight:700;
    list-style: none;
}
.ah-accordion summary::-webkit-details-marker {
    display: none;
}
.ah-accordion summary::after {
    content: '+';
    float: right;
    font-size: 1.2em;
    font-weight: bold;
    color: #009de1;
    transition: transform 0.3s ease;
}
.ah-accordion details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}
.ah-accordion p{
    color:var(--ah-muted);
    margin:10px 0 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}
.ah-accordion details[open] p {
    opacity: 1;
    transform: translateY(0);
}

.ah-cta{
    border-top:1px solid var(--ah-border);
}
.ah-cta-bottom{
    border-top:1px solid var(--ah-border);
    padding-bottom: 100px;
}
.ah-cta-box{
    background: linear-gradient(120deg, rgba(0,96,254,.18), rgba(10,20,35,.9));
    border:1px solid var(--ah-border);
    border-radius:18px;
    padding:24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}
.ah-cta-content {
    flex: 2 1 0%;
}
.ah-cta-actions {
    flex: 1 1 0%;
}
.ah-cta-content h3{
    color:#fff;
    margin:0 0 6px;
}
.ah-cta-content p{
    color:var(--ah-text);
    margin:0;
}
.ah-cta-actions{
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}
.ah-cta-actions .ah-btn {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.ah-hero{
  background:
    radial-gradient(1200px 400px at 20% -10%, rgba(0,96,254,.15), transparent),
    radial-gradient(1000px 400px at 90% 0%, rgba(0,214,255,.12), transparent),
    #0b0f19;
  position: relative;
  border-bottom: none;
}
.ah-hero .sub-title{
    color:#9cc4ff !important;
    letter-spacing:.08em;
}
.ah-hero .title{
    color:#ffffff !important;
}
.ah-hero .title .pri-color{
    color:#06a0ff !important;
}
.ah-hero .para{
    color:#8ea3c0 !important;
}
.ah-hero .content{
    padding:120px 12px 120px;
}
.ah-hero-divider{
    height:3px;
    background: linear-gradient(90deg, #0060fe 0%, #00d6ff 100%);
    border-radius:2px;
    opacity:1;
    margin-bottom:-1px;
}

header + #ah-team{
    margin-top:0;
}

@media (max-width: 991.98px){
  .ah-team-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
}
  .ah-stats-grid{
    grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 575.98px){
  .ah-team-grid{
    grid-template-columns: 1fr;
}
  .ah-values-grid{
    grid-template-columns: 1fr;
}
  .ah-cta-box{
    flex-direction:column; text-align:center;
}
}

header .title {
  padding: 15px;
  color: var(--darkBlue);
  font-size: clamp(2.01rem,calc(.5rem + 2.9004vw),3.247rem);
}