/* ===================================
   About Hero Section
   =================================== */

.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 28px;
}

.about-hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-feature i {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.hero-feature span {
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 500;
    line-height: 1.5;
}

.about-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.1));
}

/* ===================================
   Company Story Section
   =================================== */

.company-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.company-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 30%, rgba(37, 99, 235, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.story-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.story-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.story-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.story-icon i {
    font-size: 40px;
    color: var(--white);
}

.story-text h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.story-text p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ===================================
   Founders Section - Design Option 1: Modern Cards
   =================================== */

.founders {
    padding: 100px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.founders::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.founders::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.founder-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    z-index: 10;
}

.founder-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 60px rgba(37, 99, 235, 0.12),
        0 4px 16px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.founder-image-wrapper {
    position: relative;
    width: 100%;
    padding: 40px 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image-wrapper img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.founder-content {
    padding: 36px 40px 40px;
}

.founder-header {
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.founder-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.founder-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.founder-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-description p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: left;
}

.founder-description p:last-child {
    margin-bottom: 0;
}

.founder-description p strong,
.founder-description p b {
    color: var(--dark);
    font-weight: 600;
}

/* ===================================
   About CTA Section
   =================================== */

.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.about-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-cta-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 12px;
    transition: var(--transition);
}

.cta-btn i {
    font-size: 20px;
}

.cta-btn.primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.about-cta-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
}

.about-cta-note i {
    font-size: 16px;
    flex-shrink: 0;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image-wrapper {
        padding: 32px 60px 0;
    }

    .founder-image-wrapper img {
        width: 260px;
        height: 260px;
    }

    .founder-content {
        padding: 28px 32px 32px;
    }


    .story-card {
        grid-template-columns: 80px 1fr;
        gap: 24px;
        padding: 32px;
    }

    .story-icon {
        width: 70px;
        height: 70px;
    }

    .story-icon i {
        font-size: 32px;
    }
}

@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-hero-image {
        order: -1;
    }

    .about-hero-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-feature {
        gap: 10px;
    }

    .hero-feature i {
        font-size: 20px;
    }

    .hero-feature span {
        font-size: 14px;
    }


    .company-story {
        padding: 80px 0;
    }

    .story-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 24px;
    }

    .story-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .story-icon i {
        font-size: 28px;
    }

    .story-text {
        text-align: center;
    }

    .story-text h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .story-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .founders {
        padding: 80px 0;
    }

    .founders-grid {
        gap: 32px;
    }

    .founder-image-wrapper {
        padding: 28px 40px 0;
    }

    .founder-image-wrapper img {
        width: 240px;
        height: 240px;
    }

    .founder-content {
        padding: 24px 28px 28px;
    }

    .founder-name {
        font-size: 24px;
    }

    .founder-role {
        font-size: 13px;
    }

    .founder-header::after {
        width: 50px;
        height: 2px;
    }

    .founder-description p {
        font-size: 14px;
        line-height: 1.7;
    }


    .about-cta {
        padding: 80px 0;
    }

    .about-cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-cta-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 15px;
    }

    .cta-btn i {
        font-size: 18px;
    }

    .about-cta-note {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 90px 0 50px;
    }

    .about-hero-title {
        font-size: 24px;
    }

    .about-hero-subtitle {
        font-size: 14px;
    }

    .hero-feature i {
        font-size: 18px;
    }

    .hero-feature span {
        font-size: 13px;
    }


    .story-text h3 {
        font-size: 20px;
    }

    .story-text p {
        font-size: 14px;
    }

    .founder-image-wrapper {
        padding: 24px 32px 0;
    }

    .founder-image-wrapper img {
        width: 200px;
        height: 200px;
    }

    .founder-content {
        padding: 20px 24px 24px;
    }

    .founder-name {
        font-size: 22px;
    }

    .founder-role {
        font-size: 12px;
    }

    .founder-header {
        padding-bottom: 16px;
        margin-bottom: 20px;
    }

    .founder-header::after {
        width: 40px;
    }

    .founder-description p {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-cta-title {
        font-size: 24px;
    }

    .about-cta-text {
        font-size: 14px;
    }
}
