/* =========================================================
   WinOLS Packages
   ========================================================= */

.winols-packages {

    position: relative;

    padding: 110px 20px 130px;

    background: #090a10;

    color: #ffffff;

}


.winols-packages-container {

    width: min(1180px, 100%);

    margin: 0 auto;

}


/* =========================================================
   Header
   ========================================================= */

.winols-packages-header {

    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;

}


.winols-packages-header .section-eyebrow {

    display: block;

    margin-bottom: 15px;

    color: #ef1111;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


.winols-packages-header h2 {

    margin: 0;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

}


.winols-packages-header h2 span {

    color: #ef1111;

}


.winols-packages-header p {

    margin: 20px auto 0;

    color: rgba(255,255,255,.55);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   Table
   ========================================================= */

.winols-table-wrapper {

    width: 100%;

    overflow-x: auto;

}


.winols-table {

    min-width: 850px;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 14px;

    overflow: hidden;

    background: rgba(255,255,255,.025);

}


/* =========================================================
   Rows
   ========================================================= */

.winols-table-row {

    display: grid;

    grid-template-columns:
        minmax(250px, 1.5fr)
        repeat(3, 1fr);

}


.winols-table-row:not(:last-child) {

    border-bottom: 1px solid rgba(255,255,255,.08);

}


/* =========================================================
   Header
   ========================================================= */

.winols-table-header {

    min-height: 145px;

    align-items: stretch;

}


.winols-table-header > div {

    border-right: 1px solid rgba(255,255,255,.08);

}


.winols-table-header > div:last-child {

    border-right: 0;

}


.winols-package {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 25px 15px;

    text-align: center;

}


.winols-package h3 {

    margin: 0;

    font-size: 18px;

    line-height: 1.25;

}


.winols-package h3 small {

    display: block;

    margin-top: 3px;

    font-size: 14px;

    font-weight: 600;

}


.winols-package span {

    margin-top: 9px;

    color: rgba(255,255,255,.40);

    font-size: 9px;

    letter-spacing: 1.5px;

}


.winols-package.recommended {

    background:
        linear-gradient(
            180deg,
            rgba(239,17,17,.13),
            rgba(239,17,17,.025)
        );

}


.recommended-label {

    position: absolute;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    padding: 5px 13px;

    color: #ffffff;

    background: #ef1111;

    border-radius: 0 0 7px 7px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.2px;

}


/* =========================================================
   Feature
   ========================================================= */

.winols-feature-name {

    display: flex;

    align-items: center;

    padding: 18px 24px;

    color: rgba(255,255,255,.70);

    font-size: 13px;

    line-height: 1.4;

}


.winols-check {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 58px;

    border-left: 1px solid rgba(255,255,255,.08);

}


.check {

    color: #0df000;

    font-size: 18px;

    font-weight: 700;

}


.cross {

    color: rgba(255,255,255,.22);

    font-size: 22px;

}


.recommended-cell {

    background: rgba(239,17,17,.025);

}


/* =========================================================
   Actions
   ========================================================= */

.winols-actions {

    min-height: 90px;

    align-items: center;

}


.winols-actions > div:not(:first-child) {

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 15px;

    border-left: 1px solid rgba(255,255,255,.08);

}


.winols-package-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 145px;

    height: 42px;

    padding: 0 20px;

    border: 1px solid #ef1111;

    border-radius: 7px;

    color: #ffffff;

    background: #ef1111;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;

}


.winols-package-button:hover {

    color: #ef1111;

    background: #ffffff;

    transform: translateY(-2px);

}


.winols-package-button.secondary {

    color: #ffffff;

    background: transparent;

    border-color: rgba(255,255,255,.20);

}


.winols-package-button.secondary:hover {

    color: #111111;

    background: #ffffff;

    border-color: #ffffff;

}


.winols-package-button.recommended-button {

    box-shadow:
        0 0 25px rgba(239,17,17,.15);

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 700px) {

    .winols-packages {

        padding: 80px 15px 100px;

    }


    .winols-table {

        min-width: 700px;

    }

}