@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700;800;900&display=swap');

.summer-hero {
    background-image: url('/money2017/inside-money/hero.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 70px 20px 90px;
    font-family: "Mulish", sans-serif;
    position: relative;
}

.hero-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.hero-header {
    text-align: center;
}

.hero-label {
    display: block;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #1d2d6d;
}

.hero-header h1 {
    margin: 18px 0 12px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}

.hero-header p {
    font-size: 19px;
    color: #6b7280;
}

.hero-links {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 28px;
}

.hero-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    text-decoration: none;
}

.hero-links a i {
    color: #111827;
    font-size: 18px;
}

.pricing-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.plan-card {
    background: #ffffff;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    border: 2px solid #3d74c6;
}

.plan-card h3 {
    font-size: 33px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 18px;
    margin-top: -22px;
    background: white;
    border-radius: 20px 20px 0px 0px;
    z-index: 1000000;
    padding-top: 24px;
}

.old-price {
    display: block;
    font-size: 18px;
    color: #a3a3a3;
    text-decoration: line-through;
    text-align: right;
    padding-right: 2em;
}

.price {
    margin: 20px;
    font-size: 46px;
    font-weight: 900;
    color: #222;
    line-height: 1;
}

.price small {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.promo {
    width: 100%;
    max-width: 240px;
    height: 42px;
    margin: 32px auto;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #1e9bcb, #6a9be8);
}

.plan-card button {
    width: 150px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid #2e84c7;
    background: transparent;
    color: #2e84c7;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
    margin: 2em 0em;
}

.plan-card button:hover {
    background: #ffffff;
}

.featured {
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(61,116,198,.18);
}

.gift {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: #2e84c7;
    padding: 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 30px 25px;
    transition: .25s ease;
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
}

.feature-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 35px;
    border-radius: 50%;
    background: #e3f7e2;
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.feature-card-title {
    margin: 0;
    color: #111;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

.feature-card-text {
    margin-top: 24px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }

    .featured {
        transform: none;
    }

    .hero-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .feature-card-title {
        font-size: 26px;
    }

    .feature-card-text {
        font-size: 18px;
    }
}

/* Mobile (<768px) */
@media (max-width: 767px) {
    .summer-hero {
        padding: 40px 16px 50px;
    }

    .hero-label {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .hero-header h1 {
        font-size: 22px;
        margin: 14px 0 10px;
    }

    .hero-header p {
        font-size: 16px;
    }

    .hero-links {
        gap: 40px;
        flex-wrap: wrap;
    }

    .hero-links a {
        font-size: 13px;
    }

    .pricing-grid {
        margin-top: 32px;
        gap: 16px;
    }

    .plan-card {
        padding: 0;
        min-height: auto;
    }

    .plan-card h3 {
        font-size: 33px;
        margin-bottom: 6px;
    }

    .price {
        font-size: 43px;
        margin-bottom: 0;
        margin-top: 6px;
    }

    .price small {
        font-size: 13px;
    }

    .promo {
        max-width: 200px;
        height: 36px;
        margin: 24px auto;
        font-size: 11px;
    }

    .plan-card button {
        width: 100%;
        max-width: 200px;
        height: 44px;
        font-size: 17px;
    }

    .gift {
        margin: 0;
        font-size: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-card-title {
        font-size: 20px;
    }

    .feature-card-text {
        font-size: 15px;
        margin-top: 16px;
    }

    .feature-card-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 24px;
    }
}


.plan-card.featured img {
    max-width: 80%;
    display: inline;
    margin-left: 5px;
}

.promotag {
    background: #2e84c7;
    border-radius: 18px 19px 0px 0px;
    color: white;
    padding: 5px;
    font-size: 12px;
    font-weight: 900;
    height: 50px;
}

@media (max-width: 767px) {
  .mobile-pt-45 {
    padding-top: 45px;
  }
}

@media (max-width: 767px) {
    .old-price {
    display: block;
    font-size: 18px;
    color: #a3a3a3;
    text-decoration: line-through;
    text-align: center;
        padding: 0 !important;

}
.plan-card.featured img {
    max-width: 80%;
    display: inline;
    margin-left: 5px;
    margin-top: 20px;
}

    
}
.text-greenmoney-600 {
    color: #28a745 !important;
}