/* About Page - Modern SaaS Style */

/* Hero Section */
.about-hero {
    position: relative;
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 6rem;
    overflow: hidden;
    background: var(--surface-50);
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.gradient-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.25);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 400;
}

/* Team Intro Section */
.team-intro {
    padding: 6rem 0;
    background: white;
    border-top: 1px solid var(--surface-200);
}

.intro-content {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--surface-200);
    border-radius: 32px;
    padding: 5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.intro-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    opacity: 0.8;
}

.intro-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.intro-header h2 {
    font-size: 2.75rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.decoration .line {
    height: 2px;
    width: 60px;
    background: var(--surface-200);
    border-radius: 2px;
}

.decoration .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-500);
    border-radius: 50%;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    margin-bottom: 2rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.8;
}

.intro-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-500);
    margin-top: 2rem !important;
}

/* Service Commitment */
.service-commitment {
    padding: 6rem 0;
    background: white;
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.commitment-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 4rem;
    border-radius: 24px;
    border: 2px solid var(--surface-200);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.commitment-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15), 0 0 0 1px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-300);
}

.commitment-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.commitment-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.card-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.card-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 4rem;
    }

    .about-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
    }

    .gradient-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-content {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .intro-header h2 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .intro-lead {
        font-size: 1.1rem;
    }

    .intro-highlight {
        font-size: 1.05rem;
        padding: 1.25rem 1.5rem;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .commitment-card {
        padding: 2.5rem 1.5rem;
    }

    .card-icon {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }

    .card-content p {
        font-size: 1rem;
    }
}
