﻿.about-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}

    .about-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(59, 130, 246, 0.15), transparent 50%), radial-gradient(ellipse 40% 30% at 20% 80%, rgba(6, 182, 212, 0.1), transparent 50%);
    }

.about-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero-text {
    max-width: 600px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-hero-title {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    color: #f8fafc;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

    .about-hero-title .highlight {
        background: linear-gradient(135deg, #3b82f6, #06b6d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.about-hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 40px;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.hero-stat {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .hero-stat:hover {
        background: rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.3);
        transform: translateY(-4px);
    }

.hero-stat-number {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

/* Hero Visual */
.about-hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
     
}

    .hero-image-wrapper::before {
        content: '';
        position: absolute;
        inset: 0;
        
        z-index: 1;
    }

.hero-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
     display: flex;
    align-items: center;
    justify-content: center;
}

.hero-placeholder-content {
    text-align: center;
    color: #3b82f6;
}

    .hero-placeholder-content svg {
        width: 120px;
        height: 120px;
        opacity: 0.3;
    }

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.floating-card-1 {
    bottom: -30px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.floating-card-text {
    font-size: 14px;
    color: #64748b;
}

    .floating-card-text strong {
        display: block;
        font-size: 18px;
        color: #0f172a;
    }

.floating-card-2 {
    top: 20px;
    right: -30px;
    text-align: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0f172a;
    font-weight: 600;
}

    .trust-badge svg {
        color: #10b981;
    }

/* Story Section */
.story-section {
    padding: 120px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.1;
}

    .story-content h2 span {
        color: #3b82f6;
    }

.story-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 20px;
}

    .story-content p.highlight-text {
        font-size: 20px;
        font-weight: 500;
        color: #1e293b;
        border-left: 4px solid #3b82f6;
        padding-left: 20px;
        margin: 32px 0;
    }

.story-visual {
    position: relative;
}

.story-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

    .values-header h2 {
        font-family: 'Darker Grotesque', sans-serif;
        font-size: clamp(36px, 4vw, 48px);
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 16px;
    }

    .values-header p {
        font-size: 18px;
        color: #64748b;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
        border-color: #3b82f6;
    }

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* S1 Feature Section */
.s1-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

    .s1-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1), transparent 40%), radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.08), transparent 40%);
    }

.s1-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.s1-content {
    grid-template-columns: 1fr!important;
}
.s1-content h2 {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 24px;
    line-height: 1.1;
}

    .s1-content h2 span {
        background: linear-gradient(135deg, #3b82f6, #06b6d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.s1-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #94a3b8;
    margin-bottom: 32px;
}

.s1-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.s1-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .s1-feature:hover {
        background: rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.3);
    }

.s1-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.s1-feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 4px;
}

.s1-feature-text p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

.s1-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.s1-system-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

    .s1-system-card:hover {
        background: rgba(59, 130, 246, 0.15);
        border-color: rgba(59, 130, 246, 0.4);
        transform: translateY(-4px);
    }

    .s1-system-card svg {
        width: 36px;
        height: 36px;
        color: #60a5fa;
        margin-bottom: 12px;
    }

    .s1-system-card span {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #cbd5e1;
    }

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: #fff;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
}

    .partners-header h2 {
        font-family: 'Darker Grotesque', sans-serif;
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 16px;
    }

    .partners-header p {
        font-size: 18px;
        color: #64748b;
    }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-weight: 700;
    color: #64748b;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .partner-logo:hover {
        border-color: #3b82f6;
        background: #eff6ff;
        color: #3b82f6;
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    }

/* CTA Section */
.about-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .about-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 40%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05), transparent 40%);
    }

    .about-cta .container {
        position: relative;
        z-index: 1;
    }

    .about-cta h2 {
        font-family: 'Darker Grotesque', sans-serif;
        font-size: clamp(36px, 5vw, 56px);
        font-weight: 800;
        color: white;
        margin-bottom: 20px;
    }

    .about-cta p {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: #1d4ed8;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-outline-white:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
    }

/* Responsive */
@media (max-width: 1024px) {
    .about-hero-content,
    .story-grid,
    .s1-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-hero-visual {
        order: -1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .about-hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .s1-features {
        grid-template-columns: 1fr;
    }

    .s1-visual {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-card {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-white,
    .btn-outline-white {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
