/* ========================================
   ABOUT PAGE STYLES
   Smart Protect - Qui sommes-nous ?
   ======================================== */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 3rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.about-hero .breadcrumb {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.about-hero .breadcrumb ol {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-hero .breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-hero .breadcrumb li::after {
    content: '›';
    margin-left: 0.5rem;
}

.about-hero .breadcrumb li:last-child::after {
    display: none;
}

.about-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.about-hero .breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.about-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* About Sections */
.about-section {
    padding: 5rem 0;
}

.about-section:nth-child(even) {
    background: var(--light-gray);
}

/* Introduction */
.about-intro {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.intro-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.intro-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

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

/* Company Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-item .stat-text {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Approach Section */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 3rem;
}

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

.approach-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.approach-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.approach-card p {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.audience-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.audience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.audience-card > p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-card li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.9375rem;
    color: #4b5563;
}

.audience-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 0 3rem;
    }

    .about-title {
        font-size: 2.25rem;
    }

    .about-subtitle {
        font-size: 1.125rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-intro {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .intro-icon {
        font-size: 3rem;
    }

    .intro-content h2 {
        font-size: 1.5rem;
    }

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

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

    .about-content h2 {
        font-size: 1.75rem;
    }

    .about-stats {
        justify-content: center;
        gap: 1.5rem;
    }

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

    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

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

    .approach-card {
        padding: 1.5rem;
    }

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

    .audience-card {
        padding: 2rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 1.75rem;
    }

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

@media (max-width: 480px) {
    .about-title {
        font-size: 1.875rem;
    }

    .about-hero .breadcrumb {
        font-size: 0.75rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .stat-item .stat-number {
        font-size: 1.75rem;
    }

    .stat-item .stat-text {
        margin-top: 0;
    }

    .approach-icon,
    .audience-icon {
        font-size: 2.5rem;
    }

    .audience-card h3 {
        font-size: 1.25rem;
    }

    .btn-xl {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   BLOG CALLOUT SECTION
   ======================================== */

.about-blog-callout {
    padding: 4rem 0;
}

.blog-callout-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-callout-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.blog-callout-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.blog-callout-content p {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-callout-content .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .about-blog-callout {
        padding: 3rem 0;
    }

    .blog-callout-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .blog-callout-icon {
        font-size: 3rem;
    }

    .blog-callout-content h2 {
        font-size: 1.25rem;
    }

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