:root {
    --brand: #FA5921;
    --dark: #111;
    --gray: #6b7280;
    --light: #f9fafb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #fff;
    color: var(--dark);
}

/* Layout */
.container {
    max-width: 1330px;
    margin: auto;
    padding: 0 20px;
}

/* HERO */
.pricing-hero {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg,
            #FFF3ED 0%,
            /* very light peach */
            #FFD7C2 20%,
            /* soft peach */
            #FFB48A 40%,
            /* warm orange */
            #FA5921 65%,
            /* brand main */
            #E84C14 85%,
            /* deeper brand */
            #D8430F 100%
            /* darkest accent */
        );
    overflow: hidden;
    text-align: center;
}

.pricing-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}

.pricing-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #111;
}

.pricing-hero p {
    font-size: 15px;
    font-weight: 600;
    color: #2b2b2b;
}

.pricing-wrap {
    max-width: 1330px;
    margin: auto;
    padding: 50px 20px;
}

/* HEADER */
.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h1 {
    font-size: 34px;
    font-weight: 700;
}

.gst {
    color: #555;
    margin: 6px 0;
}

.tagline {
    font-size: 14px;
    color: #444;
    margin-bottom: 18px;
}

.primary-btn {
    display: inline-block;
    background: #FA5921;
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.primary-btn:hover {
    background-color: #fff !important;
    color: #111;
}

/* SUMMARY */
.pricing-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 35px;
}

.summary-item {
    background: #FFF3ED;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
}

/* FEATURES */
.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 35px;
}

.feature-card {
    border: 1px solid #e5e7eb;
    padding: 18px;
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #FA5921;
}

.feature-card ul {
    padding-left: 18px;
}

.feature-card li {
    font-size: 14px;
    margin-bottom: 6px;
}

.feature-card .sub {
    font-size: 13px;
    color: #666;
}

/* ================= WHY THIS PLAN WORKS ================= */

.plan-works {
    padding: 50px 0;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Grid */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
}

/* Card */
.works-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 26px 22px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.works-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(250, 89, 33, 0.18);
}

/* Icon */
.works-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #FFF3ED;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FA5921;
    font-size: 22px;
}

/* Text */
.works-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.works-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }

    .works-card {
        padding: 22px 18px;
    }
}


/* WHO CAN JOIN */
.who-can-join {
    text-align: center;
    font-size: 14px;
    color: #333;
}

/* MOBILE */
@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 26px;
    }
}

/* Control Modal Width */
#planModal .modal-dialog {
    max-width: 800px;
    /* Width of form */
    width: 100%;
}

/* Control Modal Height */
#planModal .modal-content {
    height: 520px;
    /* Fixed height */
    border-radius: 20px;
    padding: 30px;
}

/* Scroll inside body if content overflows */
#planModal .modal-body {
    overflow-y: auto;
}


/* Modal Style */
.custom-modal {
    border-radius: 20px;
    padding: 30px;

}

.custom-modal .form-control {
    border-radius: 30px;
    height: 48px;
    border: 2px solid #e4e7ec;
}

.custom-modal .form-control:focus {
    border-color: #FA5921;
    box-shadow: 0 0 0 3px rgba(250, 89, 33, 0.15);
}

.custom-modal .btn-primary {
    background: linear-gradient(135deg, #FA5921, #ff7a45);
    border: none;
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
}

.custom-modal .btn-primary:hover {
    background: #e14d17;
}

.form-check-input:checked {
    background-color: #FA5921;
    border-color: #FA5921;
}