/* ------------------ Comparison Section ------------------ */

body {
    font-family: 'Poppins', sans-serif;
    background: transparent;
    margin: 0;
    padding: 40px;
    color: #fff;
}

.comparison-section {
    padding: 50px 20px;
    background: transparent;
    position: relative;
    text-align: center;
}

.comparison-heading .subheading {
    text-transform: uppercase;
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.comparison-heading .main-heading {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 60px;
    color: #999;
}

.comparison-heading span {
    color: #ffffff;
}


/* Desktop layout */

.comparison-columns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.card {
    background: linear-gradient(160deg, #293c47 0%, #294f5c 100%);
    border-radius: 24px;
    padding: 30px;
    width: 30vw;
    height: 100vh;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.4;
}

.card p {
    margin: 14px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #e5f4f4;
}

.check {
    color: #2ecc71;
    font-weight: bold;
    margin-right: 8px;
}

.cross {
    color: #ff4c4c;
    font-weight: bold;
    margin-right: 8px;
}

.bonus {
    background: rgba(0, 180, 120, 0.1);
    padding: 16px;
    border-radius: 14px;
    margin-top: 24px;
    font-size: 0.95em;
}

.bonus p {
    margin: 8px 0;
    color: #c7f7e3;
}

.highlight {
    color: #00ff99;
    font-weight: bold;
}

.cta-wrapper {
    margin-top: 60px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.right-card {
    margin-top: 30px;
    background-color: #ff3700;
}

.cta-button:hover {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
}


/* ------------------ Mobile Optimizations ------------------ */

@media (max-width: 768px) {
    .comparison-columns {
        flex-direction: column;
        /* stack cards vertically */
        gap: 20px;
        align-items: center;
    }
    .card {
        width: 90% !important;
        height: auto !important;
        /* let card height adjust to content */
        padding: 20px;
    }
    .card h2 {
        font-size: 18px;
    }
    .card p {
        font-size: 14px;
        line-height: 1.5;
    }
    .bonus {
        font-size: 0.9em;
        padding: 12px;
    }
    .cta-wrapper {
        margin-top: 40px;
    }
    .cta-button {
        width: 80%;
        max-width: 280px;
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .comparison-heading .main-heading {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 40px;
    }
    .comparison-heading .subheading {
        font-size: 11px;
    }
    .card {
        padding: 16px;
    }
    .card h2 {
        font-size: 16px;
    }
    .card p {
        font-size: 13px;
    }
    .bonus {
        padding: 10px;
        font-size: 0.85em;
    }
    .cta-button {
        font-size: 13px;
        padding: 10px 20px;
    }
}