﻿/* ================= WHY PAGE ================= */
.why-page-section {
    background: #fff;
}

.why-page-text {
    color: #6b7280;
    line-height: 1.9;
    font-size: 17px;
}

/* FEATURES */
.why-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0b1c2c;
}

.why-feature i {
    color: #f59e0b;
}

/* IMAGE */
.why-page-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ================= CARDS SECTION ================= */
.why-cards-section {
    background: #f8fafc;
}

/* CARD */
.why-page-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-page-card:hover {
    transform: translateY(-10px);
}

/* ICON */
.why-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

/* TITLE */
.why-page-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b1c2c;
}

/* TEXT */
.why-page-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* ================= CTA ================= */
.why-cta-section {
    background: #0b1c2c;
    color: #fff;
}

.why-cta-section h2 {
    font-size: 42px;
    font-weight: 800;
}

/* ================= MOBILE ================= */
@media(max-width:991px){

    .why-cta-section h2{
        font-size:32px;
    }


.pricing-card{
    border-radius:28px;
    padding:50px 35px;
    text-align:center;
    transition:0.4s;
    height:100%;
}

.pricing-card.dark{
    background:#031a33;
    color:#fff;
}

.pricing-card.blue{
    background:linear-gradient(180deg,#3157d5,#2950d0);
    color:#fff;
    transform:scale(1.04);
}

.price{
    font-size:60px;
    font-weight:800;
    color:#f5a400;
    margin-bottom:10px;
}

.plan-name{
    font-size:36px;
    font-weight:700;
    margin-bottom:10px;
}

.subtitle{
    margin-bottom:25px;
    opacity:0.9;
}

.pricing-features{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.pricing-features li{
    margin-bottom:15px;
    font-size:18px;
}

.pricing-btn{
    display:inline-block;
    padding:15px 40px;
    border-radius:50px;
    background:#fff;
    color:#071c36 !important;
    text-decoration:none !important;
    font-weight:700;
    font-size:18px;
    transition:0.3s;
}

.popular-btn{
    background:#f5a400;
    color:#000 !important;
}

.pricing-btn:hover{
    transform:translateY(-3px);
}

