.why-me-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    color: var(--text-light);
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    padding: 120px 0 0 172px;
    box-sizing: border-box;
    overflow: hidden;
}

.why-me-title {
    margin: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 54px;
    font-weight: 400;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--highlight-main);
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.why-me-content {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
}

.why-me-text {
    margin: 0;
    font-size: 18px;
    text-align: justify;
    line-height: 1.4;
}

.why-me-content h3 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: var(--highlight-main);
}

.why-me-facts {
    display: flex;
    gap: 29px;
    align-items: center;
    justify-content: center;
}

.fact-card {
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.fact-icon {
    position: relative;
    width: 64px;
    height: 64px;
}

.fact-icon img {
    position: absolute;
    inset: 0;
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: opacity 150ms ease;
    filter: hue-rotate(85deg) saturate(0.75) brightness(0.9);
}

.icon-default {
    opacity: 1;
}

.icon-hover {
    opacity: 0;
    width: 24px;
    height: 24px;
    transform: translateY(8px);
    transition: opacity 125ms ease;
}

.fact-icon .icon-hover {
    opacity: 0;
}

.fact-card:hover .icon-default {
    opacity: 1;
}

.second .icon-hover {
    width: 28px;
    height: 28px;
    transform: translateY(1.5px);
}

.first .icon-hover {
    width: 28px;
    height: 28px;
    transform: translateY(52px) translateX(17.5px);
}

.third .icon-hover {
    width: 64px;
    height: 64px;
    transform: none;
}

.third:hover .icon-default {
    opacity: 0;
}

.third:hover .icon-hover {
    opacity: 1;
}

.fact-card:hover .icon-hover,
.fact-card.active .icon-hover {
    opacity: 1;
}

.fact-card:hover p,
.fact-card.active p {
    color: var(--highlight-main);
}

.third:hover .icon-default,
.third.active .icon-default {
    opacity: 0;
}

.fact-card p {
    margin: 0;
    font-size: 18px;
    text-align: center;
    transition: color 125ms ease;
}

.contact-button {
    position: relative;
    overflow: hidden;
    width: 180px;
    height: 54px;
    display: flex;
    margin-top: 48px;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    border-radius: 999px;
    background-color: var(--highlight-main);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}

.contact-button:hover {
    box-shadow: inset 0 -6px 20px -3px rgba(0,30,22,.35);
}

.why-me-next-link {
    position: absolute;
    right: 60px;
    bottom: 80px;
    transform: rotate(-180deg);
}

.why-me-next-link img {
    filter: hue-rotate(110deg);
}