.call-tracking-features {
    display: flex;
    gap: 20px;
}

.call-tracking-features-item {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
    padding: 40px 80px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border-radius: 36px;
}

.call-tracking-features-item b {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.03em;
}

.call-tracking-features-item img {
    margin-top: auto;
    align-self: center;
}

.tabs input {
    opacity: 0;
    position: absolute;
}

.tabs input[type=radio]:checked + label + .tab-container {
    display: unset;
}

.tab-labels {
    display: flex;
    gap: 20px;
    width: 100%;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.tabs label {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.5);
    padding-bottom: 8px;
    position: relative;
    top: 2px;
}

.tabs #ct-static:checked ~ .tab-labels label[data-id='ct-static'],
.tabs #ct-dynamic:checked ~ .tab-labels label[data-id='ct-dynamic'] {
    color: black;
    border-bottom: 4px solid #5D6AE8;
}

.tab-container {
    display: none;
    justify-content: space-between;
}

.tab-container .tab-description {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 460px;
}

.tab-container .tab-image picture {
	max-width: 520px;
	width: 100%;
}

.tab-container .tab-image picture img {
	width: 100%;
}

.tabs input[id='ct-static']:checked ~ .tab-containers .tab-container[id='ct-static-container'],
.tabs input[id='ct-dynamic']:checked ~ .tab-containers .tab-container[id='ct-dynamic-container'] {
    display: flex;
}

@media (max-width: 767.98px) {
    .call-tracking-features {
        flex-direction: column;
        gap: 20px;
    }

    .call-tracking-features-item {
        width: 100%;
        padding: 40px 20px;
    }

    .tab-container {
        flex-direction: column;
    }

    .tab-container .tab-description {
        padding-top: 0;
        width: 100%;
    }

    .tab-image {
        align-self: center;
    }
}
