/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(30, 41, 59, 0.3) 50%, rgba(51, 65, 85, 0.3) 100%),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.2);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    margin: 0 auto;
    text-align: center;
}

.about-hero-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: var(--blue-light);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.about-hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 2.5rem;
}

.about-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)),
                url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* About Stats Section */
.about-stats {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-stat-card {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.about-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.about-stat-card .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.about-stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue-bright);
    margin-bottom: 0.5rem;
}

.about-stat-card .stat-label {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.25) 0%, rgba(30, 64, 175, 0.25) 100%),
                url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1920&h=600&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.3);
    z-index: 0;
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(59, 130, 246, 0.5);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.value-card p {
    color: var(--white);
    line-height: 1.6;
    font-weight: 500;
}

/* Team Section - Founder Spotlight */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)),
                url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--blue-bright);
    margin-top: 0.5rem;
    font-weight: 600;
}

.founder-spotlight {
    max-width: 1000px;
    margin: 4rem auto 0;
}

.founder-card {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.6);
}

.founder-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #1e293b 100%);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 600px;
}

.founder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: 
        0 0 0 6px rgba(15, 23, 42, 0.8),
        0 10px 40px rgba(59, 130, 246, 0.6);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 3;
}

.founder-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.3rem;
    color: var(--blue-bright);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 500;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.founder-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.founder-stat i {
    font-size: 1.8rem;
    color: var(--blue-bright);
}

.founder-stat span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    align-self: flex-start;
}

.founder-linkedin:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.founder-linkedin i.fa-arrow-right {
    transition: var(--transition);
}

.founder-linkedin:hover i.fa-arrow-right {
    transform: translateX(5px);
}

/* Responsive Design for Founder Section */
@media (max-width: 968px) {
    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-image-wrapper {
        padding: 3rem 2rem;
    }

    .founder-image {
        width: 250px;
        height: 250px;
    }

    .founder-content h3 {
        font-size: 2rem;
    }

    .founder-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .founder-image {
        width: 200px;
        height: 200px;
    }

    .founder-content {
        padding: 2rem;
    }

    .founder-content h3 {
        font-size: 1.8rem;
    }

    .founder-linkedin {
        width: 100%;
        justify-content: center;
    }
}

/* For Everyone Section */
.for-everyone-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)),
                url('https://images.unsplash.com/photo-1576678927484-cc907957088c?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.for-everyone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.for-card {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.for-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.for-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.for-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.for-card p {
    color: var(--white);
    line-height: 1.6;
    font-weight: 500;
}

/* Press Section */
.press-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.press-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.press-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
}

.press-logo:hover {
    opacity: 1;
    color: var(--blue-light);
}

.press-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.press-quote {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition);
}

.press-quote:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
}

.press-quote i {
    font-size: 3rem;
    color: var(--blue-bright);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.press-quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 500;
}

.press-quote span {
    color: var(--blue-light);
    font-weight: 600;
}

/* Footer Locations */
.footer-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--blue-bright);
}

.location-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    text-align: center;
    margin: 2rem 0;
}

.footer-social .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Active Nav Link */
.nav-menu a.active {
    color: var(--blue-bright);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--blue-bright);
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Disable ALL parallax on mobile - fixes scroll jitter */
    *,
    section,
    .about-hero,
    .story-section,
    .about-stats,
    .mission-section,
    .values-section,
    .team-section,
    .for-everyone-section,
    .press-section {
        background-attachment: scroll !important;
    }
    /* Hero Section Mobile */
    .about-hero {
        min-height: 70vh;
        padding-top: 85px;
    }

    .about-hero-content {
        padding: 1.5rem;
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    .about-hero-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
        letter-spacing: 2px;
    }

    .about-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .about-hero-buttons .btn {
        width: 100%;
    }

    /* Story Section Mobile */
    .story-section {
        padding: 4rem 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    /* Stats Section Mobile */
    .about-stats {
        padding: 4rem 0;
    }

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

    .about-stat-card {
        padding: 2rem 1.5rem;
    }

    .about-stat-card .stat-number {
        font-size: 2.5rem;
    }

    .about-stat-card .stat-label {
        font-size: 1rem;
    }

    .about-stat-card .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    /* Mission Section Mobile */
    .mission-section {
        padding: 4rem 0;
    }

    .mission-content h2 {
        font-size: 2rem;
    }

    .mission-content p {
        font-size: 1.1rem;
    }

    /* Values Section Mobile */
    .values-section {
        padding: 4rem 0;
    }

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

    .value-card {
        padding: 2rem;
    }

    .value-card h3 {
        font-size: 1.3rem;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    /* Team Section Mobile */
    .team-section {
        padding: 4rem 0;
    }

    .founder-spotlight {
        margin-top: 2rem;
        max-width: 100%;
    }

    /* Founder Card - full mobile redesign */
    .founder-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    /* Image wrapper becomes a fixed-height block */
    .founder-image-wrapper {
        min-height: 320px;
        height: 320px;
        position: relative;
        overflow: hidden;
    }

    /* Image fills the wrapper properly */
    .founder-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .founder-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

    .founder-badge {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
        box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.8),
                    0 8px 24px rgba(59, 130, 246, 0.6);
    }

    /* Content section */
    .founder-content {
        padding: 2rem 1.5rem;
    }

    .founder-content h3 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .founder-role {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .founder-divider {
        width: 50px;
        height: 3px;
        margin-bottom: 1rem;
    }

    .founder-bio {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    /* Stats - 3 columns on tablet */
    .founder-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }

    .founder-stat i {
        font-size: 1.4rem;
    }

    .founder-stat span {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .founder-linkedin {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    /* For Everyone Section Mobile */
    .for-everyone-section {
        padding: 4rem 0;
    }

    .for-everyone-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .for-card {
        padding: 2rem;
    }

    .for-card h3 {
        font-size: 1.3rem;
    }

    .for-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    /* Press Section Mobile */
    .press-section {
        padding: 4rem 0;
    }

    .press-quotes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .press-quote {
        padding: 2rem;
    }

    .press-quote p {
        font-size: 1rem;
    }

    .press-logos {
        gap: 1.5rem;
    }

    .press-logo {
        font-size: 1rem;
    }

    /* Footer Locations Mobile */
    .footer-locations {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-tag {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    /* Hero Section Small Mobile */
    .about-hero {
        min-height: 65vh;
        padding-top: 70px;
    }

    .about-hero-content {
        padding: 1rem;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .about-hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .about-hero-tag {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
        margin-bottom: 1rem;
    }

    .about-hero-buttons {
        gap: 0.8rem;
    }

    .about-hero-buttons .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Story Section Small Mobile */
    .story-section {
        padding: 3rem 0;
    }

    .story-content {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .story-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    /* Stats Section Small Mobile */
    .about-stats {
        padding: 3rem 0;
    }

    .about-stat-card {
        padding: 1.5rem 1rem;
    }

    .about-stat-card .stat-number {
        font-size: 2rem;
    }

    .about-stat-card .stat-label {
        font-size: 0.9rem;
    }

    .about-stat-card .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Mission Section Small Mobile */
    .mission-section {
        padding: 3rem 0;
    }

    .mission-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .mission-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Values Section Small Mobile */
    .values-section {
        padding: 3rem 0;
    }

    .values-grid {
        gap: 1.2rem;
        margin-top: 2rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-card h3 {
        font-size: 1.2rem;
    }

    .value-card p {
        font-size: 0.95rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Team Section Small Mobile */
    .team-section {
        padding: 3rem 0;
    }

    .founder-spotlight {
        margin-top: 1.5rem;
    }

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

    .founder-content {
        padding: 1.5rem 1.2rem;
    }

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

    .founder-role {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .founder-divider {
        width: 40px;
        height: 3px;
        margin-bottom: 0.8rem;
    }

    .founder-bio {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    /* Stats - 1 column on small mobile */
    .founder-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem 0;
        margin-bottom: 1.2rem;
    }

    .founder-stat {
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    }

    .founder-stat:last-child {
        border-bottom: none;
    }

    .founder-stat i {
        font-size: 1.3rem;
        width: 24px;
        text-align: center;
    }

    .founder-stat span {
        font-size: 0.85rem;
        text-align: left;
    }

    .founder-badge {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 12px;
        right: 12px;
        box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.8),
                    0 6px 16px rgba(59, 130, 246, 0.6);
    }

    .founder-linkedin {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        gap: 0.6rem;
    }

    /* For Everyone Section Small Mobile */
    .for-everyone-section {
        padding: 3rem 0;
    }

    .for-everyone-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .for-card {
        padding: 1.5rem;
    }

    .for-card h3 {
        font-size: 1.2rem;
    }

    .for-card p {
        font-size: 0.95rem;
    }

    .for-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    /* Press Section Small Mobile */
    .press-section {
        padding: 3rem 0;
    }

    .press-logos {
        gap: 1rem;
        margin: 2rem 0;
        padding: 1.5rem 0;
    }

    .press-logo {
        font-size: 0.9rem;
    }

    .press-quotes {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .press-quote {
        padding: 1.5rem;
    }

    .press-quote i {
        font-size: 2.5rem;
    }

    .press-quote p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .press-quote span {
        font-size: 0.9rem;
    }

    /* Footer Locations Small Mobile */
    .footer-locations {
        margin: 2rem 0;
        padding: 2rem 0;
    }

    .location-col h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .location-col p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Section Headers Small Mobile */
    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-tag {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Container Padding Small Mobile */
    .container {
        padding: 0 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .about-hero-content h1 {
        font-size: 1.6rem;
    }

    .about-hero-content p {
        font-size: 0.95rem;
    }

    .about-hero-buttons .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .about-stat-card .stat-number {
        font-size: 1.8rem;
    }

    .founder-image-wrapper {
        min-height: 220px;
        height: 220px;
    }

    .founder-content h3 {
        font-size: 1.3rem;
    }

    .founder-bio {
        font-size: 0.85rem;
    }

    .mission-content h2 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }
}
