.about-page {
    overflow: hidden;
}

.about-hero {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    background-image: url('../images/about/about-hero.jpg');
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 19, 36, 0.78), rgba(7, 19, 36, 0.42));
    z-index: -1;
}

.about-hero-inner {
    width: 100%;
    padding: 110px 0 95px;
}

.about-hero-copy {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.about-hero-copy h1 {
    margin: 0 0 22px;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.06;
    font-weight: 800;
    text-transform: uppercase;
}

.about-hero-copy p {
    max-width: 1180px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.5;
}

.hero-actions-centered {
    justify-content: center;
}

.about-strengths-section {
    position: relative;
    background: #f6f8fc;
    padding: 76px 0 100px;
}

.strengths-box {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 0 0 36px 36px;
    padding: 40px 34px 86px;
    box-shadow: 0 20px 44px rgba(10, 37, 64, 0.10);
}

.strengths-box h2 {
    margin: 0 0 24px;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.strengths-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 760px;
    display: grid;
    gap: 14px;
}

.strengths-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    font-size: 1.08rem;
}

.strengths-list i {
    color: #1893d1;
    font-size: 0.9rem;
    margin-top: 9px;
}

.about-wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    pointer-events: none;
}

.about-wave-bottom {
    bottom: -1px;
}

.about-wave-top {
    top: -1px;
    transform: rotate(180deg);
}

.about-wave span {
    position: absolute;
    left: -5%;
    width: 110%;
    border-radius: 0 0 45% 45% / 0 0 100% 100%;
    animation: waveFloat 8s ease-in-out infinite alternate;
}

.about-wave span:nth-child(1) {
    height: 72px;
    bottom: 0;
    background: rgba(255, 255, 255, 0.55);
    animation-delay: 0s;
}

.about-wave span:nth-child(2) {
    height: 56px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.32);
    animation-delay: 1s;
}

.about-wave span:nth-child(3) {
    height: 42px;
    bottom: 26px;
    background: rgba(255, 255, 255, 0.18);
    animation-delay: 2s;
}

.about-panel {
    position: relative;
    padding: 80px 0;
}

.about-panel-blue {
    background: #1693d1;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.panel-media img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 22px 50px rgba(5, 25, 44, 0.22);
    transform: translateZ(0);
}

.panel-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
}

.panel-copy p,
.icon-list,
.trust-list {
    font-size: 1.08rem;
}

.panel-copy-light,
.panel-copy-light p {
    color: var(--white);
}

.experts-grid,
.trust-grid {
    min-height: 520px;
}

.about-experts-section,
.about-trust-section {
    padding: 90px 0;
    background: #f6f8fc;
}

.icon-list,
.trust-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.icon-list i {
    color: #1693d1;
    margin-top: 6px;
    font-size: 1.05rem;
}

.trust-list li {
    position: relative;
    padding-left: 24px;
}

.trust-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: -1px;
    color: #000;
    font-size: 1.6rem;
    line-height: 1;
}

.trust-note {
    margin-top: 28px;
    font-size: 1.15rem;
    font-weight: 800;
}

.about-bottom-cta {
    padding-top: 10px;
    background: #f6f8fc;
}

.reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
    transform: translateX(-54px);
}

.reveal-right {
    transform: translateX(54px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.panel-media img,
.about-hero,
.strengths-box,
.cta-box {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.panel-media:hover img,
.strengths-box:hover,
.cta-box:hover {
    transform: translateY(-4px);
}

@keyframes waveFloat {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(2.5%) translateY(4px); }
}

@media (max-width: 1024px) {
    .panel-grid {
        gap: 36px;
    }

    .about-hero {
        min-height: 520px;
    }
}

@media (max-width: 860px) {
    .about-hero {
        min-height: 500px;
    }

    .about-hero-copy h1 {
        text-transform: none;
    }

    .panel-grid {
        grid-template-columns: 1fr;
    }

    .panel-reverse .panel-copy {
        order: 1;
    }

    .panel-reverse .panel-media {
        order: 2;
    }

    .strengths-box {
        border-radius: 0 0 28px 28px;
        padding: 34px 22px 80px;
    }
}

@media (max-width: 640px) {
    .about-hero-inner {
        padding: 90px 0 75px;
    }

    .about-hero-copy p {
        font-size: 1rem;
    }

    .strengths-box h2,
    .panel-copy h2 {
        font-size: 2rem;
    }

    .about-panel,
    .about-experts-section,
    .about-trust-section {
        padding: 64px 0;
    }

    .panel-grid {
        gap: 24px;
    }

    .strengths-list li,
    .icon-list li,
    .trust-list li {
        font-size: 1rem;
    }
}
