/* HERO */
.pricing-hero {
    padding: 130px 60px;
    background: linear-gradient(135deg, #10263f, #0b1c2d);
    color: #fff;
    text-align: center;
}

.pricing-hero-inner {
    max-width: 900px;
    margin: auto;
}

.pricing-hero h1 {
    font-size: 46px;
    margin-bottom: 14px;
}

.pricing-hero p {
    font-size: 18px;
    line-height: 1.8;
    opacity: .9;
}

/* SECTION */
.pricing-section {
    padding: 110px 60px;
    background: #f7f9fc;
}

.pricing-cards {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
}

/* CARD */
.price-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 44px 38px;
    box-shadow: 0 18px 50px rgba(11,28,45,.08);
    transition: all .35s ease;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 70px rgba(11,28,45,.18);
}

.price-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: #0b1c2d;
}

.subtitle {
    font-size: 14.5px;
    color: #666;
    margin-bottom: 26px;
}

/* PRICE */
.price {
    margin-bottom: 28px;
}

.price span {
    font-size: 14px;
    color: #777;
}

.price strong {
    font-size: 32px;
    color: #ff7a18;
}

.price small {
    font-size: 13px;
    color: #777;
}

/* LIST */
.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 34px;
}

.price-card li {
    padding-left: 22px;
    margin-bottom: 10px;
    position: relative;
    font-size: 14.5px;
    color: #444;
}

.price-card li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ff7a18;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

/* BUTTON */
.btn-main {
    margin-top: auto;
    width: 100%;
    padding: 14px 34px;
    border-radius: 40px;
    background: linear-gradient(135deg, #ffb347, #ff7a18);
    color: #fff;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 26px rgba(255,122,24,.35);
    transition: all .35s ease;
}

.btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(255,122,24,.45);
}

/* FEATURED */
.featured {
    border-top: 6px solid #ff7a18;
    position: relative;
}

.badge {
    position: absolute;
    top: -14px;
    right: 28px;
    background: #ff7a18;
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pricing-hero,
    .pricing-section {
        padding: 90px 26px;
    }
}

.pricing-info {
    padding: 110px 60px;
    background: #f7f9fc;
    text-align: center;
}

.pricing-info h2 {
    font-size: 34px;
    margin-bottom: 48px;
}

.pricing-info h2 span {
    color: #ff7a18;
}

.pricing-info-box {
    max-width: 820px;
    margin: auto;
    background: #fff;
    padding: 48px 52px;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(11,28,45,.08);
    text-align: left;
}

.pricing-info-box h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #0b1c2d;
}

.pricing-info-box p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
}

.pricing-info-box .btn-main {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-info {
        padding: 90px 26px;
    }

    .pricing-info-box {
        padding: 38px 28px;
    }
}
