@media (min-width: 992px) {
    .intro_wrapper {
        margin-bottom: -60px;
    }
}



.options-grid {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 120px;
}

.option-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
}

.option-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option-title {
    margin-bottom: 20px;
    line-height: 1.3;
    color: #333;
}

.option-title .second-weight {
    font-weight: 400;
}

.option-text {
    flex-grow: 1;
    margin-bottom: 32px;
    color: #666;
    line-height: 1.6;
}

.option-text p:last-child {
    margin-bottom: 0;
}

.option-triangle {
    width: 160px;
    aspect-ratio: 1.134;
    background: var(--triangle-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    margin: 0px auto;
    animation: rotate 16s linear infinite;
    transform-origin: center 92px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.option-item:nth-child(odd) .option-triangle {
    animation: rotate-reverse 16s linear infinite;
}

.option-item:nth-child(1) .option-triangle {
    animation-delay: 0s;
}

.option-item:nth-child(2) .option-triangle {
    animation-delay: -2s;
}

.option-item:nth-child(3) .option-triangle {
    animation-delay: -6s;
}

.option-item:nth-child(4) .option-triangle {
    animation-delay: -3s;
}

.option-item:nth-child(5) .option-triangle {
    animation-delay: -8s;
}

.option-item:nth-child(6) .option-triangle {
    animation-delay: -13s;
}

.option-button {
    margin: 90px auto auto;
    text-align: center;
    max-width: 320px;
}

@media (max-width: 768px) {
    .options-section {
        padding: 40px 0;
    }

    .option-item {
        flex: 1 1 100%;
        min-width: unset;
    }

    .option-title {
        margin-bottom: 15px;
    }
}






.pricing-table {
    border-collapse: collapse;
    width: 100%;
    border: none;
    font-size: 1rem;
    table-layout: auto;
}

.pricing-table_mobile-indicator {
    font-size: 1.05rem;

    span {
        font-size: 24px;
    }
}

@media (min-width: 769px) {
    .pricing-table_mobile-indicator {
        display: none;
    }
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #ccc;
    padding: 12px 12px 8px;
    text-align: center;
    font-weight: 200;
}

.pricing-table th {
    padding: 12px;
}

.pricing-table thead th {
    font-weight: 400;
    font-size: 1.15rem;
    background: #fafafa;
}

.pricing-table thead tr th:first-child {
    border-top: none;
    border-left: none;
    background: none;
}

.pricing-table tfoot tr td:first-child {
    border-bottom: none;
    border-left: none;
}

.pricing-table tr td:first-child,
.pricing-table thead th:first-child,
.pricing-table tfoot td:first-child {
    text-align: left;
    text-wrap: wrap;
    min-width: 230px;
}

.pricing-table tfoot td {
    font-size: 1.15rem;
    font-weight: 400;
}

.pricing-table .included-mark {
    width: 28px;
    aspect-ratio: 1.134;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    display: inline-block;
    transform: rotate(180deg);
}

.pricing-table .excluded-mark {
    font-size: 1.5em;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin: auto;
    font-family: monospace;
}

@media (max-width: 768px) {
    .pricing-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}