/* ========================================
   STRONA O NAS - PEARL THEME
   ======================================== */

/* ===== SEKCJA HERO ===== */
.about-hero-pearl {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--pearl-light) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-pearl::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164, 214, 94, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 25s ease-in-out infinite;
}

.about-hero-pearl::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 217, 239, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 30s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -40px);
    }
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-brand-soft);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.about-hero-buttons .btn-brand,
.about-hero-buttons .btn-outline {
    min-width: 220px;
    min-height: 56px;
}

.about-hero-facts {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.fact-item {
    text-align: center;
}

.fact-number-green {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-green);
}

.fact-number-blue {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-blue);
}

.fact-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.about-hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

@media (max-width: 576px) {
    .about-hero-buttons {
        flex-direction: column;
    }

    .about-hero-buttons .btn-brand,
    .about-hero-buttons .btn-outline {
        width: 100%;
        min-width: 0;
    }
}

/* ===== BANNER STATYSTYK ===== */
.about-stats-banner {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-blue) 100%);
    color: white;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item-white {
    text-align: center;
}

.stat-number-white {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 1rem;
}

.stat-label-white {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* ===== TIMELINE ===== */
.timeline-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-brand-soft);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 1.5rem;
}

.timeline-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.timeline-pearl {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-pearl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #A4D65E 0%, #96CC5A 7%, #88C356 14%, #7ABB52 21%, #6CB24E 28%, #5EAA4A 35%, #50A146 42%, #4F9D5E 50%, #4E9A70 57%, #5EAAA5 64%, #6EBBD9 71%, #7BCCE4 78%, #88DDEE 85%, #66D9EF 100%);
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px rgba(164, 214, 94, 0.4);
}

.timeline-item-pearl {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.timeline-item-pearl:last-child {
    margin-bottom: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-icon-pearl {
    grid-column: 2;
    grid-row: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all var(--transition-base);
    background: white;
    box-shadow: 0 0 0 8px var(--pearl-white);
    align-self: center;
}

.timeline-icon-pearl .k-svg-icon,
.timeline-icon-pearl svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.timeline-item-pearl:hover .timeline-icon-pearl {
    transform: scale(1.15) rotate(10deg);
}

.timeline-item-1 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(164, 214, 94, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-1 .timeline-icon-pearl .k-svg-icon,
.timeline-item-1 .timeline-icon-pearl svg {
    color: #A4D65E !important;
    fill: #A4D65E !important;
}

.timeline-item-2 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(150, 204, 90, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-2 .timeline-icon-pearl .k-svg-icon,
.timeline-item-2 .timeline-icon-pearl svg {
    color: #96CC5A !important;
    fill: #96CC5A !important;
}

.timeline-item-3 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(136, 195, 86, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-3 .timeline-icon-pearl .k-svg-icon,
.timeline-item-3 .timeline-icon-pearl svg {
    color: #88C356 !important;
    fill: #88C356 !important;
}

.timeline-item-4 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(122, 187, 82, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-4 .timeline-icon-pearl .k-svg-icon,
.timeline-item-4 .timeline-icon-pearl svg {
    color: #7ABB52 !important;
    fill: #7ABB52 !important;
}

.timeline-item-5 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(108, 178, 78, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-5 .timeline-icon-pearl .k-svg-icon,
.timeline-item-5 .timeline-icon-pearl svg {
    color: #6CB24E !important;
    fill: #6CB24E !important;
}

.timeline-item-6 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(94, 170, 74, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-6 .timeline-icon-pearl .k-svg-icon,
.timeline-item-6 .timeline-icon-pearl svg {
    color: #5EAA4A !important;
    fill: #5EAA4A !important;
}

.timeline-item-7 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(80, 161, 70, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-7 .timeline-icon-pearl .k-svg-icon,
.timeline-item-7 .timeline-icon-pearl svg {
    color: #50A146 !important;
    fill: #50A146 !important;
}

.timeline-item-8 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(79, 157, 94, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-8 .timeline-icon-pearl .k-svg-icon,
.timeline-item-8 .timeline-icon-pearl svg {
    color: #4F9D5E !important;
    fill: #4F9D5E !important;
}

.timeline-item-9 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(78, 154, 112, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-9 .timeline-icon-pearl .k-svg-icon,
.timeline-item-9 .timeline-icon-pearl svg {
    color: #4E9A70 !important;
    fill: #4E9A70 !important;
}

.timeline-item-10 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(94, 170, 165, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-10 .timeline-icon-pearl .k-svg-icon,
.timeline-item-10 .timeline-icon-pearl svg {
    color: #5EAAA5 !important;
    fill: #5EAAA5 !important;
}

.timeline-item-11 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(110, 187, 217, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-11 .timeline-icon-pearl .k-svg-icon,
.timeline-item-11 .timeline-icon-pearl svg {
    color: #6EBBD9 !important;
    fill: #6EBBD9 !important;
}

.timeline-item-12 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(123, 204, 228, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-12 .timeline-icon-pearl .k-svg-icon,
.timeline-item-12 .timeline-icon-pearl svg {
    color: #7BCCE4 !important;
    fill: #7BCCE4 !important;
}

.timeline-item-13 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(136, 221, 238, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-13 .timeline-icon-pearl .k-svg-icon,
.timeline-item-13 .timeline-icon-pearl svg {
    color: #88DDEE !important;
    fill: #88DDEE !important;
}

.timeline-item-14 .timeline-icon-pearl {
    box-shadow: 0 8px 24px rgba(102, 217, 239, 0.5), 0 0 0 8px var(--pearl-white);
}

.timeline-item-14 .timeline-icon-pearl .k-svg-icon,
.timeline-item-14 .timeline-icon-pearl svg {
    color: #66D9EF !important;
    fill: #66D9EF !important;
}

.timeline-content-pearl {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.timeline-content-pearl::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid var(--gray-200);
    transform: translateY(-50%) rotate(45deg);
    transition: all var(--transition-base);
}

.timeline-item-pearl:nth-child(odd) .timeline-content-pearl {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item-pearl:nth-child(odd) .timeline-content-pearl::before {
    right: -11px;
    border-left: none;
    border-bottom: none;
}

.timeline-item-pearl:nth-child(even) .timeline-content-pearl {
    grid-column: 3;
    grid-row: 1;
}

.timeline-item-pearl:nth-child(even) .timeline-content-pearl::before {
    left: -11px;
    border-right: none;
    border-top: none;
}

.timeline-content-pearl:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    border-color: #7BC74D;
}

.timeline-content-pearl:hover::before {
    border-color: #7BC74D;
}

.timeline-year-pearl {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, #A4D65E, #66D9EF);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(164, 214, 94, 0.4);
}

.timeline-title-pearl {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.timeline-description-pearl {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== MISJA I WIZJA ===== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.mission-vision-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all var(--transition-base);
    background: white;
    display: flex;
    flex-direction: column;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.mission-vision-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.mission-vision-image img,
.mission-vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mission-vision-card:hover .mission-vision-image img,
.mission-vision-card:hover .mission-vision-img {
    transform: scale(1.05);
}

.mission-vision-content {
    padding: 2.5rem;
    flex: 1;
}

.mission-vision-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
}

.mission-vision-card:hover .mission-vision-icon {
    transform: scale(1.1) rotate(-5deg);
}

.mission-icon .k-svg-icon,
.mission-icon svg {
    color: #A4D65E !important;
    fill: #A4D65E !important;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.vision-icon .k-svg-icon,
.vision-icon svg {
    color: #66D9EF !important;
    fill: #66D9EF !important;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.mission-vision-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mission-vision-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== WARTOŚCI ===== */
.values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.values-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-brand-soft);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 1.5rem;
}

.values-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.values-grid-pearl {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .values-grid-pearl {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .values-grid-pearl {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .values-grid-pearl {
        grid-template-columns: 1fr;
    }
}

.value-card-with-bg {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-200);
    background: white;
}

.value-card-with-bg:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: #7BC74D;
}

.value-bg-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.value-bg-image img,
.value-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.value-card-with-bg:hover .value-bg-image img,
.value-card-with-bg:hover .value-bg-img {
    transform: scale(1.1);
}

.value-content-with-bg {
    padding: 2rem;
    flex: 1;
}

.value-content-with-bg .value-icon-pearl {
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-card-with-bg:hover .value-content-with-bg .value-icon-pearl {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.value-content-with-bg h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-content-with-bg p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

.value-icon-pearl {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    background: white;
}

.value-icon-1 .k-svg-icon, .value-icon-1 svg {
    color: #A4D65E !important;
    fill: #A4D65E !important;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.value-icon-2 .k-svg-icon, .value-icon-2 svg {
    color: #66D9EF !important;
    fill: #66D9EF !important;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.value-icon-3 .k-svg-icon, .value-icon-3 svg {
    color: #7BC74D !important;
    fill: #7BC74D !important;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.value-icon-4 .k-svg-icon, .value-icon-4 svg {
    color: #5EAAA5 !important;
    fill: #5EAAA5 !important;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.value-icon-5 .k-svg-icon, .value-icon-5 svg {
    color: #88DDEE !important;
    fill: #88DDEE !important;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.value-icon-6 .k-svg-icon, .value-icon-6 svg {
    color: #6EBBD9 !important;
    fill: #6EBBD9 !important;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* ===== MAPA I KONTAKT ===== */
.map-contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.map-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-brand-soft);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 1.5rem;
}

.map-contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.map-contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-iframe-container {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    height: 500px;
}

.map-iframe-container iframe {
    border: 0;
}

.contact-details-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
}

.contact-detail-label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-detail-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.contact-detail-link {
    color: var(--brand-green);
    text-decoration: none;
    font-size: 0.9375rem;
}

.full-width-button {
    width: 100%;
}

/* ===== SEKCJE ===== */
.section-pearl-white {
    background: var(--pearl-white);
}

.section-white {
    background: white;
}

/* ===== UKRYJ ETYKIETY OBRAZÓW ZASTĘPCZYCH ===== */
.image-placeholder-label {
    display: none !important;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 992px) {
    .about-hero-pearl {
        padding: 6rem 0 3rem;
    }

    .about-hero-grid,
    .mission-vision-grid,
    .map-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-pearl::before {
        left: 40px;
    }

    .timeline-item-pearl {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }

    .timeline-icon-pearl {
        grid-column: 1;
        grid-row: 1;
    }

    .timeline-item-pearl:nth-child(odd) .timeline-content-pearl,
    .timeline-item-pearl:nth-child(even) .timeline-content-pearl {
        grid-column: 2;
        grid-row: 1;
    }

    .timeline-content-pearl::before {
        left: -11px !important;
        border-right: none !important;
        border-top: none !important;
    }

    .mission-vision-image {
        height: 250px;
    }

    .map-iframe-container,
    .contact-details-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-hero-pearl {
        padding: 5rem 0 2rem;
    }

    .about-hero-pearl::before,
    .about-hero-pearl::after {
        width: 300px;
        height: 300px;
    }

    .timeline-pearl::before {
        left: 30px;
    }

    .timeline-item-pearl {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .timeline-icon-pearl {
        width: 60px;
        height: 60px;
    }

    .timeline-content-pearl {
        padding: 1.5rem;
    }

    .timeline-title-pearl {
        font-size: 1.25rem;
    }

    .mission-vision-image {
        height: 200px;
    }

    .mission-vision-content {
        padding: 2rem;
    }

    .mission-vision-icon {
        width: 60px;
        height: 60px;
    }

    .mission-vision-content h2 {
        font-size: 1.5rem;
    }

    .mission-vision-content p {
        font-size: 1rem;
    }

    .value-bg-image {
        height: 180px;
    }

    .value-content-with-bg {
        padding: 1.5rem;
    }

    .value-icon-pearl {
        width: 50px;
        height: 50px;
    }

    .map-iframe-container,
    .contact-details-card {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .about-hero-pearl {
        padding: 4rem 0 2rem;
    }

    .timeline-pearl::before {
        left: 20px;
    }

    .timeline-item-pearl {
        grid-template-columns: 50px 1fr;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .timeline-icon-pearl {
        width: 50px;
        height: 50px;
    }

    .timeline-icon-pearl .k-svg-icon,
    .timeline-icon-pearl svg {
        width: 24px;
        height: 24px;
    }

    .timeline-content-pearl {
        padding: 1rem;
    }

    .timeline-year-pearl {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

    .timeline-title-pearl {
        font-size: 1.125rem;
    }

    .timeline-description-pearl {
        font-size: 0.875rem;
    }

    .mission-vision-image {
        height: 180px;
    }

    .mission-vision-content {
        padding: 1.5rem;
    }

    .mission-vision-icon {
        width: 50px;
        height: 50px;
    }

    .mission-vision-content h2 {
        font-size: 1.25rem;
    }

    .mission-vision-content p {
        font-size: 0.9375rem;
    }

    .value-bg-image {
        height: 160px;
    }

    .value-content-with-bg {
        padding: 1.25rem;
    }

    .value-icon-pearl {
        width: 45px;
        height: 45px;
    }

    .value-content-with-bg h3 {
        font-size: 1.125rem;
    }

    .value-content-with-bg p {
        font-size: 0.875rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .about-hero-pearl::before,
    .about-hero-pearl::after {
        animation: none;
    }

    .timeline-icon-pearl,
    .value-icon-pearl,
    .mission-vision-icon,
    .mission-vision-image img,
    .value-bg-image img,
    .value-card-with-bg,
    .mission-vision-card,
    .timeline-content-pearl {
        transition: none;
    }

    .timeline-item-pearl {
        animation: none;
    }
}

@media (prefers-contrast: high) {
    .timeline-content-pearl,
    .value-card-with-bg,
    .mission-vision-card {
        border-width: 3px;
    }

    .timeline-pearl::before {
        width: 6px;
    }
}

.mission-vision-card:focus-within,
.value-card-with-bg:focus-within,
.timeline-content-pearl:focus-within {
    outline: 3px solid #7BC74D;
    outline-offset: 4px;
}

iframe[title*="Mapa"] {
    border-radius: var(--radius-2xl);
}

iframe[title*="Mapa"]:focus {
    outline: 3px solid #7BC74D;
    outline-offset: 4px;
}

/* ===== PRINT ===== */
@media print {
    .about-hero-pearl::before,
    .about-hero-pearl::after {
        display: none;
    }

    .timeline-pearl::before {
        background: var(--gray-400);
    }

    .value-card-with-bg,
    .mission-vision-card,
    .timeline-content-pearl {
        box-shadow: none;
        border: 1px solid var(--gray-300);
        break-inside: avoid;
        page-break-inside: avoid;
    }
}