/* ==================================================
   PLANS
================================================== */

.plans{

    padding:80px 0;

    background:#f8fafc;
}

.plans-dots{

    display:none;
}

/* ==================================================
   PLANS CONTAINER
================================================== */

.plans .container{

    max-width:1400px;
}

/* ==================================================
   PLANS HEADER
================================================== */

.plans-header{

    text-align:center;

    max-width:1100px;

    margin:0 auto 60px;
}

.plans-tag{

    display:block;

    margin-bottom:20px;

    color:var(--primary);

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;
}

.plans-title{

    font-size:65px;

    font-weight:800;

    line-height:1;

    color:var(--text);

    margin-bottom:20px;
}

.plans-title span{

    color:var(--primary);
}

.plans-description{

    font-size:20px;

    color:#4b5563;

    line-height:1.6;
}

/* ==================================================
   PLANS GRID
================================================== */

.plans-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    align-items:stretch;
}

/* ==================================================
   PLAN CARD
================================================== */

.plan-card{

    position:relative;

    display:flex;

    flex-direction:column;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:24px;

    padding:32px;

    box-shadow:
    0 4px 20px rgba(15,23,42,.05);

    min-height:670px;
}

/* ==================================================
   FEATURED PLAN
================================================== */

.plan-card.featured{
    
    padding-top:55px;

    border:2px solid var(--primary);
}

/* ==================================================
   BADGE
================================================== */

.plan-badge{

    position:absolute;

    top:-20px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    align-items:center;

    gap:8px;

    background:var(--primary);

    color:#ffffff;

    padding:10px 20px;

    border-radius:12px;

    font-size:14px;

    font-weight:700;
}

/* ==================================================
   PLAN HEADER
================================================== */

.plan-header{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:25px;
}

.plan-icon{

    width:90px;

    height:90px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef8f4;

    border-radius:50%;
}

.plan-icon img{

    width:50px;

    height:50px;
}

.plan-name{

    color:var(--primary);

    font-size:24px;

    font-weight:700;

    margin-bottom:8px;
}

.plan-speed{

    display:flex;

    align-items:flex-end;

    gap:10px;
}

.speed-value{

    font-size:64px;

    line-height:1;

    font-weight:800;

    color:var(--text);
}

.speed-unit{

    font-size:20px;

    font-weight:700;

    margin-bottom:10px;
}

/* ==================================================
   DIVIDER
================================================== */

.plan-divider{

    width:100%;

    height:1px;

    background:#e5e7eb;

    margin:24px 0;
}

/* ==================================================
   PRICE
================================================== */

.plan-price{

    display:flex;

    justify-content:center;

    align-items:flex-end;

    gap:12px;
}

.currency{

    font-size:24px;

    font-weight:500;

    margin-bottom:18px;
}

.amount{

    font-size:88px;

    line-height:1;

    font-weight:800;

    color:var(--primary);
}

/* ==================================================
   FEATURES
================================================== */

.plan-features{

    list-style:none;

    margin-top:5px;
}

.plan-features li{

    display:flex;

    align-items:center;

    gap:15px;

    padding:14px 0;

    border-bottom:1px solid #e5e7eb;

    font-size:17px;

    color:#1f2937;
}

.plan-features li img{

    width:28px;

    height:28px;

    flex-shrink:0;
}

/* ==================================================
   BUTTON
================================================== */

.plan-button{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:58px;

    margin-top:auto;

    background:var(--primary);

    color:#ffffff;

    text-decoration:none;

    border-radius:10px;

    font-weight:700;

    transition:.3s;
}

.plan-button:hover{

    transform:translateY(-2px);
}

.plan-button::after{

    content:"→";

    position:absolute;

    right:24px;

    font-size:24px;
}

/* ==================================================
   BENEFITS
================================================== */

.plans-benefits{

    margin-top:26px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    background:#ffffff;

    border-radius:20px;

    border:1px solid #e5e7eb;

    padding:30px;
}

.benefit-item{

    display:flex;

    align-items:flex-start;

    gap:16px;

    padding:0 18px;
}

.benefit-item:not(:last-child){

    border-right:1px solid #e5e7eb;
}

.benefit-item img{

    width:42px;

    height:42px;
}

.benefit-item h4{

    font-size:18px;

    font-weight:700;

    color:var(--text);

    margin-bottom:6px;
}

.benefit-item p{

    font-size:15px;

    color:#6b7280;

    line-height:1.5;
}

/* ==================================================
   NOTE
================================================== */

.plans-note{

    margin-top:24px;

    text-align:center;

    color:#6b7280;

    font-size:14px;
}