/* =========================================================================
   ABOUT PAGE - MODERN DESIGN
   ========================================================================= */

.cp-about-main {
    background: #ffffff;
    color: #0f1219;
    display: flex;
    flex-direction: column;
}

/* Společné prvky */
.cpa-section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c1d82f;
    margin-bottom: 16px;
}

/* --- HERO SEKCE --- */
.cp-about-hero {
    background: #0f1219;
    color: #ffffff;
    padding: 140px 40px 100px 40px;
    border-radius: 0 0 48px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cpa-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cpa-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(193, 216, 47, 0.15);
    color: #c1d82f;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(193, 216, 47, 0.3);
}

.cpa-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 24px 0;
}

.cpa-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.cpa-hero-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1000px;
    height: 800px;
    background: radial-gradient(circle, rgba(193, 216, 47, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* --- O NÁS (Příběh) --- */
.cp-about-story {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cpa-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cpa-story-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.cpa-story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.cpa-img-badge {
    position: absolute;
    bottom: 32px;
    right: -20px; /* Záměrný přesah */
    background: #ffffff;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.cpa-img-badge strong {
    font-size: 1.5rem;
    color: #0f1219;
    font-weight: 800;
}

.cpa-img-badge span {
    color: #64748b;
    font-weight: 500;
}

.cpa-story-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 24px 0;
}

.cpa-story-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.cpa-story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
}

.cpa-stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f1219;
    margin-bottom: 8px;
}

.cpa-stat span {
    font-weight: 600;
    color: #64748b;
}

/* --- CO DĚLÁME (Služby) --- */
.cp-about-services {
    background: #f4f5f7;
    padding: 120px 40px;
}

.cpa-services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.cpa-services-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.cpa-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cpa-service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cpa-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.cpa-sc-icon {
    width: 64px;
    height: 64px;
    background: #0f1219;
    color: #c1d82f;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.cpa-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.cpa-service-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* --- NAŠI LIDÉ (Tým) --- */
.cp-about-team {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cpa-team-header {
    margin-bottom: 60px;
}

.cpa-team-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
}

.cpa-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.cpa-team-member {
    display: flex;
    flex-direction: column;
}

.cpa-member-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f1f5f9;
}

.cpa-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cpa-team-member:hover .cpa-member-img img {
    transform: scale(1.05);
}

.cpa-member-info h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.cpa-member-info span {
    font-weight: 600;
    color: #c1d82f;
}

/* RESPONZIVITA */
@media (max-width: 992px) {
    .cpa-title { font-size: 3rem; }
    .cpa-story-grid { grid-template-columns: 1fr; gap: 60px; }
    .cpa-img-badge { right: 24px; }
    .cpa-services-grid, .cpa-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .cp-about-hero { border-radius: 0 0 32px 32px; padding: 100px 24px 60px 24px; }
    .cpa-title { font-size: 2.2rem; }
    .cpa-story-image img { height: 400px; }
    .cpa-services-grid, .cpa-team-grid { grid-template-columns: 1fr; }
    .cp-about-story, .cp-about-services, .cp-about-team { padding: 80px 24px; }
}