/* Pricing Section */
.container-content {
    margin: 0 60px;
}

.pricing-section {
    padding: 0 30px;
    position: relative;
    overflow: hidden;
}

.background-pricing-section2 {
    background: linear-gradient(103deg, var(--dark-purple) 0%, #5B59B8 100%);
    border-radius: 60px;
    padding: 100px 0;
}

.pricing-header {
    margin-bottom: 10px;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    justify-content: center;
    padding: 0 20px;
}

.pricing-watermark {
    color: rgba(255, 255, 255, 0.10);
    font-size: 140px;
    font-family: 'Cormorant', serif;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 -45px;
}

.pricing-title {
    color: white;
    font-size: 42px;
    font-weight: 600;
    margin: 0;
}

.pricing-description {
    color: white;
    font-size: 18px;
    margin: 20px auto 0;
    max-width: 760px;
}

.pricing-card {
    --pricing-check-color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.pricing-card-featured {
    background: white;
    --pricing-check-color: var(--primary-green);
}

.pricing-badge {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    padding: 10px 30px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 999px;
}

.pricing-badge-featured {
    background: #EFEFFF;
    color: var(--dark-purple);
}

.pricing-amount {
    margin: 30px 0;
}

.price-number {
    font-size: 100px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    color: white;
    line-height: 1;
}

.pricing-amount-featured .price-number {
    color: var(--dark-purple);
    font-size: 80px;
}

.price-currency {
    font-size: 40px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    color: white;
    text-decoration: underline;
}

.pricing-amount-featured .price-currency {
    color: var(--dark-purple);
}

.pricing-subtitle {
    color: white;
    font-size: 17px;
    margin: 30px 0;
}

.pricing-card-featured .pricing-subtitle {
    color: var(--text-dark);
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 30px 0;
}

.pricing-features li {
    color: white;
    font-size: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 0;
}

.pricing-features-dark li {
    color: var(--text-dark);
}

.pricing-btn {
    width: 100%;
    height: 48px;
    padding: 0 24px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 999px;
}

.pricing-btn-outline {
    background: white;
    color: var(--dark-purple);
}

.pricing-btn-featured {
    background: var(--primary-yellow);
    color: white;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pricing-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(232, 166, 17, 0.35), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-cta {
    background: #2E3092;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 36px;
    width: 100%;
}

.contact-cta h5 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.contact-btn {
    width: 56px;
    height: 56px;
    background: var(--primary-yellow);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 999px;
}

.contact-btn i {
    color: white;
    font-size: 24px;
}

.contact-btn:hover {
    transform: rotate(15deg);
}

/* Group Pricing Styles */
.pricing-badge-group {
    background-color: #EFEEFF;
    color: #333366;
}

.pricing-btn-group {
    background-color: #E6A612;
    color: white;
    margin-top: 20px;
}

.pricing-btn-group:hover {
    background-color: #D19205; /* Slightly darker for hover */
    color: white;
}

.group-pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 10px;
    text-align: center;
}

.group-tier-card {
    border-radius: 12px;
    padding: 35px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}

.group-tier-card .tier-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.2;
    width: auto;
}

.group-tier-card .tier-price {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.2;
    width: auto;
}

.group-tier-card .tier-subtext {
    font-size: 14px;
    line-height: 1.4;
    width: 100%;
    margin-top: 5px;
}

/* Tier 1 */
.group-tier-card.tier-1 {
    background-color: #F2F4F1;
    color: #000;
}

.group-tier-card.tier-1 .tier-title {
    color: #000;
}

.group-tier-card.tier-1 .tier-price {
    color: #2A3375;
}

.group-tier-card.tier-1 .highlight-price {
    color: #FF4D00;
    font-weight: bold;
}

/* Tier 2 */
.group-tier-card.tier-2 {
    background-color: #759583;
    color: white;
}

.group-tier-card.tier-2 .tier-title,
.group-tier-card.tier-2 .tier-price,
.group-tier-card.tier-2 .tier-subtext {
    color: white;
}

.group-tier-card.tier-2 .tier-subtext .tier-label {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* Tier 3 */
.group-tier-card.tier-3 {
    background-color: #4085F5;
    color: white;
}

.group-tier-card.tier-3 .tier-title,
.group-tier-card.tier-3 .tier-price,
.group-tier-card.tier-3 .tier-subtext {
    color: white;
}

.group-tier-card.tier-3 .tier-subtext .tier-label {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}


/* Full Course Styles */
.pricing-badge-full {
    background-color: #EFEEFF;
    color: #333366;
    padding: 10px 30px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 999px;
}

.pricing-amount-full {
    margin: 30px 0;
}

.pricing-amount-full .price-main {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2A3375;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Barlow', sans-serif;
}

.pricing-amount-full .price-sub {
    font-size: 15px;
    color: #3A3833;
}

.pricing-amount-full .price-label {
    text-decoration: underline;
}

.pricing-amount-full .price-highlight {
    color: #FF4D00;
    font-weight: 700;
}

.pricing-subtitle-full {
    color: #3A3833;
    font-size: 17px;
    margin: 30px 0 15px 0;
    text-align: left;
    padding-left: 10px; /* Align with list items roughly */
    font-weight: 600;
}

.pricing-features-full {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 15px 0 30px 0;
    display: inline-block; /* To allow centering the block if needed, but parent is text-center */
    width: 100%;
}

.pricing-features-full li {
    color: #3A3833; /* Dark Gray */
    font-size: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 0;
}

.pricing-features-full li i {
    margin-right: 15px;
}

.pricing-btn-full {
    width: 80%;
    height: 48px;
    padding: 0 24px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 999px;
    background-color: #E6A612;
    color: white;
    margin-top: 20px;
}

.pricing-btn-full:hover {
    background-color: #D19205;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


/* Free Tier Styles */
.pricing-card-free {
    background: linear-gradient(135deg, #9089E4 0%, #7579D1 100%);
    color: white;
    border: none;
}

.pricing-badge-free {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 30px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 999px;
}

.pricing-amount-free {
    margin: 30px 0;
}

.pricing-amount-free .price-number {
    font-size: 100px;
    font-weight: 700;
    color: white;
    line-height: 1;
    font-family: 'Barlow', sans-serif;
}

.pricing-amount-free .price-currency {
    font-size: 40px;
    color: white;
    text-decoration: underline;
    vertical-align: super;
    font-family: 'Barlow', sans-serif;
}

.pricing-subtitle-free {
    color: white;
    font-size: 17px;
    margin: 30px 0 15px 0;
    text-align: left;
    padding-left: 10px;
    font-weight: 600;
}

.pricing-features-free {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 15px 0 30px 0;
    display: inline-block;
    width: 100%;
}

.pricing-features-free li {
    color: white;
    font-size: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.pricing-features-free li i {
    margin-right: 15px;
}

.pricing-btn-free {
    width: 80%;
    height: 48px;
    padding: 0 24px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 999px;
    background-color: white;
    color: #333366;
    margin-top: 20px;
}

.pricing-btn-free:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

