:root{
  
  --fs-xxxl: clamp(2.4rem, 4vw, 3rem);      
  --fs-xxl: clamp(2rem, 3.2vw, 2.5rem);      
  --fs-xl: 1.9rem;                        

 
  --fs-lg: 1.25rem;                        
  --fs-1_2: 1.2rem;  

 
  --fs-md: 1.1rem;                          
  --fs-base: 1.5rem;                           
  --fs-sm: 1.2rem;                          
  --fs-xs: 0.82rem;                          
  --fs-tiny: 0.75rem;                        

 
  --fs-1_25: 1.25rem;             
  --fs-0_96: 0.96rem;             
  --fs-0_95: 0.95rem;
  --fs-0_88: 0.88rem;
  --fs-2_1: 2.1rem;               
  --fs-1_9: 1.9rem;              

 
  --fw-bold: 700;
  --fw-semibold: 600;
  --fw-medium: 500;
  --fw-normal: 400;

 
  --lh-hero-title: 1.1;
  --lh-title: 1.2;
  --lh-normal: 1.65;

}

.abt-hero {
    padding: 80px 0 60px;
    background: radial-gradient(circle at top left, var(--bg-strong) 0%, transparent 40%);
}

.abt-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.abt-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.abt-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
}

.abt-image-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform: rotate(2deg);
    border: 4px solid white;
}

.abt-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.abt-image-card:hover img {
    transform: scale(1.05);
}


.abt-stats {
    background: var(--text);
    padding: 60px 0;
    color: white;
    margin-top: 40px;
    border-radius: var(--radius-lg);
    margin-left: 20px;
    margin-right: 20px; 
    margin-bottom: 50px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.story-text h2{
    font-size: var(--fs-base);
}
.story-text p {
    margin-bottom: 20px;
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.8;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.story-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}
.story-card p{
    font-size: var(--fs-sm);
}
.story-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.story-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    background: var(--bg-strong);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
}

.story-card h3 { margin-bottom: 10px; font-size: 1.2rem; }




.team-section-modern {
    padding: 100px 20px;
    background-color: var(--bg);
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}


.team-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
}


.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-content: center;
}


.profile-card {
    background: var(--card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}


.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(41, 152, 255, 0.15);
}


.card-img-header {
    background: linear-gradient(to bottom, var(--bg-strong), #ffffff 80%);
    padding: 40px 0 30px;
    position: relative;
}


.card-img-header {
    background: linear-gradient(to bottom, var(--bg-strong), #ffffff 80%);
    padding: 40px 0 30px;
    position: relative;
    display: flex;            
    justify-content: center;  
    align-items: center;      
}


.profile-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 8px 20px rgba(41, 152, 255, 0.2);
    transition: transform 0.3s ease;
    
    display: block;   
    margin: 0 auto;   
}


.profile-card:hover .profile-img {
    transform: scale(1.05);
}


.card-body {
    padding: 0 30px 40px;
}

.card-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.job-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 25px;
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #64748b;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-3px);
}




.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: left;
}

.value-card:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
    border-color: var(--bg-strong);
}

.value-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 20px;
    background: white;
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: var(--fs-base);
    color: var(--text);
}

.value-card p {
    color: var(--muted);
    font-size: var(--fs-sm);
    line-height: 1.6;
}


.abt-timeline-sec {
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}


.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--bg-strong);
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 50px;
}


.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    background: white;
    border: 3px solid var(--accent);
    border-radius: 50%;
    z-index: 2;
    transition: 0.3s;
}

.timeline-item:hover::before {
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.tl-date {
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.tl-date.present {
    color: var(--success);
}

.tl-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text);
}

.tl-content p {
    color: var(--muted);
    font-size: 1rem;
}


.abt-investors {
    padding: 60px 0;
    background: var(--bg);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.investor-text {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 1.5px;
    margin-bottom: 40px;
}

.investor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    color: #94a3b8;
}

.investor-logos i {
    transition: 0.3s ease;
    cursor: pointer;
}

.investor-logos i:hover {
    color: var(--text);
    transform: scale(1.1);
}




.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }


@media (max-width: 992px) {
    .abt-hero__inner, .story-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .abt-image-card { margin-top: 40px; transform: rotate(0); }
    .stats-grid { flex-direction: column; gap: 40px; }
    
    .team-grid-modern { gap: 30px; }
    .section-title { font-size: 2rem; }
    
    .values-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 20px; }
    .timeline-item { padding-left: 30px; }
    .investor-logos { gap: 30px; }
    .investor-logos i { font-size: 2rem; }
}