/* --- GLOBAL UTILS --- */
.section-padding { padding: 100px 20px; }
.hero-container { max-width: 1200px; margin: 0 auto; width: 100%; }
.light-bg { background-color: #f8fafc; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.sub-heading { color: #0ca395; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; display: block; margin-bottom: 10px; }
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: #0b2239; margin-bottom: 15px; }
.section-header p { color: #64748b; font-size: 1.1rem; }

/* --- PAGE HERO BANNER --- */
.page-hero {
    position: relative;
    padding: 180px 20px 140px;
    background: linear-gradient(135deg, #0b2239 0%, #0ca395 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.2;
}
.relative-z { position: relative; z-index: 2; }
.page-hero h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; }
.page-hero p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Angled Divider */
.custom-shape-divider-bottom {
    position: absolute; bottom: -1px; left: 0; width: 100%;
    overflow: hidden; line-height: 0; z-index: 3;
}
.custom-shape-divider-bottom svg { display: block; width: calc(100% + 1.3px); height: 70px; }
.custom-shape-divider-bottom .shape-fill { fill: #ffffff; }

/* --- PRICING GRID --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #eaedf3;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    border: 2px solid #0ca395;
    box-shadow: 0 15px 35px rgba(12, 163, 149, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0ca395;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(12, 163, 149, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaedf3;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #0b2239;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1b84f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 15px;
}

.price-amount .currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 5px;
    margin-right: 5px;
}

.price-amount .duration {
    font-size: 1.2rem;
    font-weight: 500;
    color: #64748b;
    align-self: flex-end;
    margin-bottom: 5px;
    margin-left: 5px;
}

.plan-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #475569;
    font-size: 1rem;
}

.pricing-features li i {
    color: #0ca395;
    font-size: 1.1rem;
}

.pricing-features li.disabled {
    color: #cbd5e1;
}
.pricing-features li.disabled i {
    color: #cbd5e1;
}

.pricing-footer {
    text-align: center;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-plan.solid {
    background: #0ca395;
    color: white;
    box-shadow: 0 5px 15px rgba(12, 163, 149, 0.3);
}
.btn-plan.solid:hover {
    background: #098a7d;
}

.btn-plan.outline {
    background: transparent;
    color: #0ca395;
    border: 2px solid #0ca395;
}
.btn-plan.outline:hover {
    background: #0ca395;
    color: white;
}

.deposit-note {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* --- PURCHASE RATES TABLE --- */
.table-responsive {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    border: 1px solid #eaedf3;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.rates-table thead {
    background: #f1f5f9;
}

.rates-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: #0b2239;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #eaedf3;
}

.rates-table td {
    padding: 20px;
    border-bottom: 1px solid #eaedf3;
    color: #475569;
    font-size: 1.05rem;
}

.rates-table tbody tr:last-child td {
    border-bottom: none;
}

.rates-table tbody tr:hover {
    background: #f8fafc;
}

.rates-table td strong {
    color: #0b2239;
    font-weight: 600;
}

.contact-prompt {
    margin-top: 40px;
}
.contact-prompt p {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.btn-text {
    color: #1b84f5;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.btn-text:hover {
    color: #0b2239;
    gap: 12px;
}

/* --- BOTTOM CTA --- */
.bottom-cta {
    background: #0ca395;
    padding: 80px 20px;
    text-align: center;
    color: white;
    margin: 40px 20px;
    border-radius: 24px;
}
.bottom-cta h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 800; }
.bottom-cta p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 35px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-primary-large { display: inline-flex; align-items: center; gap: 10px; padding: 18px 35px; border-radius: 50px; font-size: 1.1rem; font-weight: 700; text-decoration: none; transition: 0.3s; background: white; color: #0ca395; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-primary-large:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 2.5rem; }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        padding: 30px;
    }
}