

/* ==========================
   GrowNext Index CSS
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: linear-gradient(135deg, #f7f7f7, #ffffff);
    color: #111;
    padding: 0;
}

.wrapper {
    max-width: 1250px;
    margin: 40px auto 80px auto;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 42px;
    font-weight: 900;
}

.header span {
    background: #000;
    color: #fff;
    padding: 3px 12px;
    border-radius: 50px;
}

.header p {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.card {
    position: relative;
    background: #fff;
    border: 2px solid #111;
    border-radius: 22px;
    padding: 24px 22px;
    overflow: hidden;
    transition: .3s;
}

.card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 170px;
    height: 170px;
    background: #000;
    border-radius: 50%;
    opacity: .05;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.popular {
    background: #000;
    color: #fff;
    position: absolute;
    top: 14px;
    right: -42px;
    transform: rotate(45deg);
    padding: 7px 44px;
    font-size: 11px;
    font-weight: 800;
}

.price {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 16px;
}

.plan {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 6px;
}

.tagline {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.packages-features {
    list-style: none;
}

.packages-features li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 13.5px;
}

.packages-features li::before {
    content: "✓";
    background: #000;
    color: #fff;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 10px;
}

.bonus {
    margin-top: 16px;
    background: #f4f4f4;
    border: 1.5px dashed #000;
    border-radius: 16px;
    padding: 14px;
}

.bonus h3 {
    font-size: 15px;
    margin-bottom: 7px;
}

.bonus p {
    margin: 4px 0;
    font-size: 13px;
    font-weight: 600;
}

.get-started-btn {
    width: 100%;
    margin-top: 13px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 11px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.get-started-btn:hover {
    background: #fff;
    color: #000;
}

a {
    text-decoration: none;
}

.packages-why {
    margin-top: 45px;
    background: #111;
    color: #fff;
    border-radius: 22px;
    padding: 28px;
    text-align: center;
}

.packages-why h2 {
    font-size: 32px;
    margin-bottom: 22px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}

.why-box {
    background: #fff;
    color: #000;
    padding: 16px;
    border-radius: 16px;
    font-weight: 700;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
}

.packages-mission {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: center;
    background: #f6f6f6;
    border-radius: 22px;
    padding: 28px;
}

.packages-mission h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.packages-mission p {
    color: #444;
    line-height: 1.6;
    font-size: 15.5px;
}

.chart {
    height: 180px;
    display: flex;
    align-items: end;
    gap: 14px;
    justify-content: center;
}

.bar {
    width: 38px;
    background: #000;
    border-radius: 10px 10px 0 0;
}

.bar:nth-child(1) {
    height: 40px;
}

.bar:nth-child(2) {
    height: 70px;
}

.bar:nth-child(3) {
    height: 100px;
}

.bar:nth-child(4) {
    height: 135px;
}

.bar:nth-child(5) {
    height: 170px;
}

.packages-footer-old {
    margin-top: 24px;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 14px;
    font-size: 13px;
}

@media(max-width:768px) {
    body {
        padding: 0;
    }
    .wrapper {
        padding: 30px 16px;
        margin: 20px auto;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }
    .header h1 {
        font-size: 32px;
    }
    .packages {
        grid-template-columns: 1fr;
    }
    .packages-mission {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }
    .chart {
        margin-top: 25px;
    }
}

.premium-pay-btn {
    width: 100%;
    margin-top: 20px;
    padding: 6px;
    border: none;
    border-radius: 18px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    transition: .3s ease;
}

.premium-pay-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .28);
}

.pay-left {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    text-align: left;
}

.pay-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.pay-left strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .2px;
}

.pay-left small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #bdbdbd;
    font-weight: 500;
}

.pay-right {
    height: 62px;
    padding: 0 26px;
    border-radius: 14px;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
    transition: .3s ease;
}

.premium-pay-btn:hover .pay-right {
    background: #f1f1f1;
    padding-right: 34px;
}

@media(max-width:600px) {
    .premium-pay-btn {
        flex-direction: column;
        align-items: stretch;
    }
    .pay-right {
        width: 100%;
    }
    .pay-left strong {
        font-size: 15px;
    }
}

.packages-logo-old {
    width: 190px;
    display: block;
    margin: 0 auto 10px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .15));
    transition: .3s;
}

.packages-logo-old:hover {
    transform: scale(1.05);
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.packages-logo-old {
    width: 300px;
    max-width: 90%;
    display: block;
    margin: 0 auto 20px;
    object-fit: contain;
    transition: .3s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .08));
}

.packages-logo-old:hover {
    transform: scale(1.03);
}

.header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.header p {
    font-size: 17px;
    color: #666;
}

.package-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-buttons a {
    width: 100%;
    display: block;
}

.commitment-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 12px;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: .3s;
}

.commitment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .18);
}
