/* About Page Specific Styles */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* About Page Hero Section */
.about-page {
    background: #ffffff;
    color: #1a1a1a;
}

/* Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 102, 102, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(100px, -100px);
}

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

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 2px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-icon {
    width: 8px;
    height: 8px;
    background: #666666;
    border-radius: 50%;
}

.about-page .about-hero h1,
.about-page .pr-hero-title {
    font-size: 3.5rem !important;
    font-weight: 20 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    margin-bottom: 30px !important;
    margin-top: 20px !important;
    color: #1a1a1a !important;
    letter-spacing: -2px !important;
    line-height: 0.9 !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 40px;
    margin-top: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-credentials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.credential {
    background: #fafafa;
    padding: 12px 24px;
    border-radius: 2px;
    border: 1px solid #f0f0f0;
}

.credential-label {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.2rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Approach Section */
.about-approach {
    padding: 100px 0;
    background: #fafafa;
}

.process-flow-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step-horizontal {
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step-horizontal:hover {
    transform: translateY(-5px);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: none;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.icon-symbol {
    font-size: 2.5rem;
    font-weight: 300;
    color: #666666;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.process-step-horizontal:hover .icon-symbol {
    filter: grayscale(0%);
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.process-step-horizontal h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-step-horizontal p {
    color: #666666;
    line-height: 1.6;
}

/* Global Expertise Section */
.about-global {
    padding: 100px 0;
    background: #ffffff;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.market-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #d4af37;
}

.market-flag {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.market-flag.usa { background: linear-gradient(135deg, #002868, #bf0a30); color: white; }
.market-flag.france { background: linear-gradient(135deg, #002395, #ed2939); color: white; }
.market-flag.spain { background: linear-gradient(135deg, #aa151b, #f1bf00); color: white; }

.market-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.market-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* Capabilities Section */
.about-capabilities {
    padding: 100px 0;
    background: #fafafa;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #d4af37;
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.capability-card:hover .capability-icon {
    filter: none;
    transform: scale(1.1);
}

.capability-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.capability-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* Founder Section */
.about-founder {
    padding: 100px 0;
    background: #ffffff;
}

.founder-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    justify-self: center;
}

.founder-photo-container {
    position: relative;
    width: 250px;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
}

.founder-photo-selective {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}

.founder-photo-img-csp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 10;
    filter: contrast(1.02) brightness(0.98);
    transition: all 0.3s ease;
}

.founder-story {
    max-width: 600px;
    justify-self: center;
}

.story-header h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.story-header p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Client Success Section */
.about-clients {
    padding: 100px 0;
    background: #fafafa;
}

.client-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: #d4af37;
    opacity: 0.3;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    color: #1a1a1a;
}

.testimonial-content cite {
    font-style: normal;
    color: #666666;
}

.testimonial-content strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

/* Network Section */
.about-network {
    padding: 100px 0;
    background: #fafafa;
}

.network-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
    padding: 0 20px;
}

.network-cards::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
    transition: all 0.3s ease;
}

.network-cards:hover::before {
    background: linear-gradient(90deg, #d4af37, #d4af37);
}

.network-card {
    padding: 40px 30px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.network-card:hover {
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.network-content {
    text-align: center;
}

.network-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.network-card:hover .network-content h3 {
    color: #d4af37;
}

.network-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

@media (max-width: 768px) {
    .network-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }
    
    .network-cards::before {
        display: none;
    }
    
    .network-card:hover {
        transform: translateY(-3px);
    }
}

.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.network-node.strategic { top: 0; left: 50%; transform: translateX(-50%); background: #d4af37; }
.network-node.creative { top: 50%; right: 0; transform: translateY(-50%); background: #28a745; }
.network-node.technical { bottom: 0; left: 50%; transform: translateX(-50%); background: #007bff; }
.network-node.cultural { top: 50%; left: 0; transform: translateY(-50%); background: #dc3545; }

.node-dot {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.curated-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.curated-statement h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.curated-statement p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666666;
}

/* Consultation CTA - Matching Capabilities Page */
.consultation-cta {
    padding: 140px 0;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    margin-top: 0 !important;
}

.cta-header h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.cta-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Force specific phrase to one line on desktop */
@media (min-width: 769px) {
    .cta-header p {
        white-space: nowrap;
    }
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.95rem;
}

.benefit-icon {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-text {
    color: #cccccc;
}

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateY(-2px);
}

.cta-primary:hover {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

@media (max-width: 768px) {
    .consultation-cta {
        padding: 80px 0;
    }
    
    .cta-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-header p {
        font-size: 1.1rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 20px;
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-tag {
    background: #ffffff;
    color: #1a1a1a;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hero-tag:hover {
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-credentials {
        gap: 20px;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .founder-photo-container {
        width: 200px;
        height: 280px;
        margin: 0 auto;
    }
    
    .capabilities-grid,
    .client-testimonials {
        grid-template-columns: 1fr;
    }
    
    .connection-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .about-page .about-hero h1,
.about-page .pr-hero-title {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .market-card,
    .capability-card {
        padding: 30px 20px;
    }
}
