/*
 * ========================================
 * Universal Styles (Header, Fonts, etc.)
 * ========================================
 */
.comparison-section * {
    font-family: 'Overused Grotesk', 'Roboto', sans-serif !important;
    box-sizing: border-box;
}

.comparison-header {
    text-align: center;
    margin: 0 auto 4rem auto;
}
.comparison-header .main-title {
    font-size: 45px;
    line-height: 1;
    font-weight: 300;
    font-family: 'FAIRE Sprig Sans' !important;
}

.comparison-header .main-title span {
    font-family: 'FAIRE Sprig Sans' !important;
}


.comparison-header .description {
    font-size: 18px;
    color: #000000;
    line-height: 1.5;
    font-weight: 400;
    max-width: 75%;
    margin: 0 auto;
}

.plan {
    flex: 1;
    max-width: 450px;
}
.plan-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
    height: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.adclarity-plan {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0px 0px 19.6px 0px #DEDEF9;
    border: 2px solid #DEDEF9;
}
.adclarity-plan .plan-title {
    color: #A050E0;
}
.partnership-plan .plan-title {
    color: #6C757D;
}
.demo-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    margin: 2rem auto 0 auto;
    transition: transform 0.2s, box-shadow 0.2s;
    background: linear-gradient(90deg, #6F37DB -22.25%, #BDACF0 100%);
    min-height: 50px;
    max-width: 200px;
    text-decoration: none;
}
.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(160, 80, 224, 0.3);
}

/*
 * ========================================
 * DESKTOP ONLY Styles
 * ========================================
 */
.desktop-comparison-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
}
.desktop-comparison-container .features-list {
    flex: 1;
    max-width: 230px;
    padding-top: 5.5rem; 
}
.desktop-comparison-container .feature-name-wrapper {
    display: flex;
    align-items: center;
    height: 90px;
    border-bottom: 1px solid #F0F0F5;
}
.desktop-comparison-container .feature-name {
    font-weight: 600;
    font-size: 18px;
    color: #302B38;
}
.desktop-comparison-container .feature-value-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6C757D;
    height: 90px;
    padding: 0 1rem;
    line-height: 1.5;
    border-bottom: 1px solid #F0F0F5;
}
.desktop-comparison-container .adclarity-plan {
    margin-top: -1.5rem;
}
.desktop-comparison-container .adclarity-plan .feature-value-wrapper {
    border-bottom: 1px solid rgba(240, 240, 245, 0.34);
}
.desktop-comparison-container .feature-name-wrapper:last-child,
.desktop-comparison-container .feature-value-wrapper:last-of-type {
    border-bottom: none;
}

.desktop-comparison-container .feature-value-wrapper p,
.mobile-comparison-container .mobile-feature-row p
{
    margin-bottom: unset;
}

/*
 * ========================================
 * MOBILE ONLY Styles
 * ========================================
 */
.mobile-comparison-container .plan {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem auto;
}
.mobile-comparison-container .partnership-plan {
   background-color: #F8F9FA;
   border: none;
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}
.mobile-comparison-container .plan-title {
    height: auto;
    margin-bottom: 1.5rem;
}
.mobile-comparison-container .mobile-feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    padding: 1rem 0;
    border-bottom: 1px solid #E9ECEF;
    text-align: right;
}
.mobile-comparison-container .mobile-feature-row:last-of-type {
    border-bottom: none;
}
.mobile-comparison-container .feature-name {
    font-weight: 500;
    color: #000000;
    margin-right: 1rem;
    text-align: left;
}
.mobile-comparison-container .feature-value {
    color: #000000;
}


@media only screen and (max-width: 600px) {
.comparison-header .main-title {
    font-size: 28px;
    line-height: 1.2;
}

.comparison-header .description {
    max-width: 100%;
}

.mobile-comparison-container .feature-name {
    font-size: 16px;
}

.mobile-comparison-container .feature-value p br {
    display: none;
}

.mobile-comparison-container .feature-value {
    color: #000000;
    text-align: right;
    font-size: 16px;
}
}