/**
 * MMA Betting Tips Homepage Sections
 * Version: 1.0.0
 * 
 * Combined styles for:
 * - Pricing Table
 * - Live Betting Solution
 * - Complete System
 */

/* ==========================================================================
   Base Styles
   ========================================================================== */

.mma-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: transparent !important;
    background-color: transparent !important;
    color: #1f2937;
    line-height: 1.6;
    padding: 80px 5%;
}

.mma-container {
    max-width: 1400px;
    margin: 0 auto;
    background: transparent !important;
}

/* Section Wrappers */
.complete-system-section,
.live-betting-section,
.pricing-wrapper,
.mma-pricing-section {
    max-width: 1400px;
    margin: 0 auto;
    background: transparent !important;
    background-color: transparent !important;
}

.mma-inner-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent !important;
}

/* Override any theme containers */
.mma-section .container,
.mma-section .pricing-container {
    background: transparent !important;
}

/* Ensure text centering is not overridden by themes */
.mma-section.complete-system-section .section-header,
.mma-section.live-betting-section .section-header {
    text-align: center !important;
}

.mma-section .section-header > * {
    text-align: center;
}

/* ==========================================================================
   PRICING TABLE STYLES
   ========================================================================== */

/* Header Section */
.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.years-badge {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.pricing-title {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Billing Toggle */
.billing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.billing-option {
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    color: #6b7280;
}

.billing-option.active {
    background: #ef4444;
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.billing-option:not(.active):hover {
    color: #ef4444;
}

.savings-badge {
    background: #34d670;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-divider {
    margin: 80px 0 50px;
}

/* Section Header - Centers badges and titles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.mma-section .section-header {
    text-align: center !important;
}

.mma-section .section-header .system-badge,
.mma-section .section-header .problem-badge {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 12px;
}

/* Larger titles for Complete System and Live Betting sections */
.complete-system-section .section-title,
.live-betting-section .section-title {
    font-size: 42px;
    margin-bottom: 18px;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 17px;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-description {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 50px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 35px 28px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: #34d670;
}

.pricing-card.featured {
    border-color: #34d670;
    border-width: 2px;
    box-shadow: 0 4px 12px rgba(52, 214, 112, 0.15);
}

.pricing-card.featured:hover {
    box-shadow: 0 12px 24px rgba(52, 214, 112, 0.2);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #34d670;
    color: white;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(52, 214, 112, 0.3);
}

.card-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.card-tagline {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 25px;
    min-height: 40px;
}

.card-price-wrapper {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e5e7eb;
}

.card-price {
    font-size: 44px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 5px;
    line-height: 1;
}

.card-price-monthly,
.card-price-annual {
    transition: opacity 0.3s;
}

.card-period {
    color: #9ca3af;
    font-size: 14px;
}

.annual-savings {
    color: #34d670;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
}

.card-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.card-features li {
    padding: 9px 0;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.card-features li::before {
    content: "✓";
    color: #34d670;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.card-features li.unavailable {
    opacity: 0.35;
}

.card-features li.unavailable::before {
    content: "✗";
    color: #ef4444;
}

.card-features strong {
    color: #111827;
    font-weight: 600;
}

.card-cta {
    width: 100%;
    padding: 14px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
    text-decoration: none;
    display: block;
    text-align: center;
}

.card-cta:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    color: white;
}

/* Limited Capacity Section */
.limited-capacity-section {
    margin-top: 100px;
    background: white;
    border: 2px solid #fca5a5;
    border-radius: 16px;
    padding: 60px 50px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.limited-header {
    text-align: center;
    margin-bottom: 50px;
}

.limited-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ef4444;
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.fire-icon {
    font-size: 18px;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.limited-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.limited-description {
    font-size: 17px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.limited-explainer {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 28px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.explainer-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.explainer-content {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.explainer-content p {
    margin-bottom: 12px;
}

.explainer-content strong {
    color: #991b1b;
    font-weight: 600;
}

.limited-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.limited-card {
    background: white;
    border: 2px solid #fca5a5;
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.limited-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
}

.capacity-indicator {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 28px;
    text-align: center;
}

.capacity-label {
    color: #991b1b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 8px;
}

.capacity-count {
    font-size: 34px;
    font-weight: 800;
    color: #dc2626;
    font-family: 'SF Mono', 'Courier New', monospace;
    line-height: 1;
}

.capacity-total {
    color: #6b7280;
    font-size: 13px;
    margin-top: 6px;
}

/* Limited Card Header - Side by Side Layout */
.limited-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.limited-card-info {
    flex: 1;
}

.limited-card-info .card-name {
    margin-bottom: 6px;
}

.limited-card-info .card-tagline {
    margin-bottom: 0;
    min-height: auto;
}

.limited-card .card-price-wrapper.limited-price {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    text-align: right;
    flex-shrink: 0;
}

.limited-card .card-price-wrapper.limited-price .card-price {
    font-size: 38px;
}

.limited-card .card-price-wrapper.limited-price .card-period {
    text-align: right;
}

.limited-card .card-price-wrapper.limited-price .annual-savings {
    text-align: right;
}

/* Responsive: Stack on smaller screens */
@media (max-width: 600px) {
    .limited-card-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .limited-card .card-price-wrapper.limited-price {
        text-align: left;
    }
    
    .limited-card .card-price-wrapper.limited-price .card-period,
    .limited-card .card-price-wrapper.limited-price .annual-savings {
        text-align: left;
    }
}

/* Comparison Section */
.comparison-callout {
    margin-top: 100px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.comparison-icon {
    font-size: 52px;
    margin-bottom: 25px;
}

.comparison-heading {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.comparison-subheading {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.comparison-cta {
    background: #ef4444;
    color: white;
    padding: 16px 45px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.comparison-cta:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.comparison-table {
    display: none;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 35px;
    margin-top: 35px;
    overflow-x: auto;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comparison-table.active {
    display: block;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background: #f9fafb;
    padding: 18px;
    text-align: left;
    font-weight: 700;
    color: #111827;
    border-bottom: 2px solid #e5e7eb;
    font-size: 14px;
}

.comparison-table td {
    padding: 15px 18px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
    font-size: 14px;
}

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

.check-icon {
    color: #34d670;
    font-weight: 700;
    font-size: 18px;
}

.cross-icon {
    color: #ef4444;
    font-weight: 700;
    font-size: 18px;
}

/* Footer Section */
.pricing-footer {
    text-align: center;
    margin-top: 80px;
    padding: 35px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.pricing-footer p {
    color: #6b7280;
    margin-bottom: 10px;
    font-size: 15px;
}

.pricing-footer strong {
    color: #111827;
}

.pricing-footer a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.pricing-footer a:hover {
    color: #dc2626;
}

/* One-Time Section */
.one-time-section {
    margin-top: 80px;
    text-align: center;
}

.one-time-toggle {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    cursor: pointer;
    transition: all 0.3s;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.one-time-toggle:hover {
    border-color: #34d670;
    box-shadow: 0 4px 12px rgba(52, 214, 112, 0.1);
    transform: translateY(-2px);
}

.one-time-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.one-time-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.one-time-description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.one-time-preview {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.one-time-option-badge {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
}

.one-time-expanded {
    display: none;
    background: white;
    border: 2px solid #34d670;
    border-radius: 12px;
    padding: 50px 40px;
    margin-top: 35px;
    box-shadow: 0 4px 16px rgba(52, 214, 112, 0.1);
    animation: slideDown 0.3s ease-out;
}

.one-time-expanded.active {
    display: block;
}

.one-time-expanded-header {
    text-align: center;
    margin-bottom: 45px;
}

.one-time-expanded-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.one-time-expanded-subtitle {
    font-size: 16px;
    color: #6b7280;
}

.duration-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.duration-tab {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.duration-tab:hover {
    border-color: #34d670;
    color: #34d670;
}

.duration-tab.active {
    background: #34d670;
    border-color: #34d670;
    color: white;
    box-shadow: 0 2px 8px rgba(52, 214, 112, 0.3);
}

.duration-content {
    display: none;
}

.duration-content.active {
    display: block;
}

.one-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.one-time-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.3s;
}

.one-time-card:hover {
    border-color: #34d670;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 214, 112, 0.1);
}

.one-time-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.one-time-card-price {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1;
}

.one-time-card-savings {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 22px;
    min-height: 20px;
}

.one-time-card-cta {
    width: 100%;
    padding: 12px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 7px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2);
    text-decoration: none;
    display: block;
}

.one-time-card-cta:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    color: white;
}

.one-time-limited-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.back-to-recurring {
    text-align: center;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid #e5e7eb;
}

.back-to-recurring p {
    color: #6b7280;
    margin-bottom: 10px;
}

.back-to-recurring a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.back-to-recurring a:hover {
    color: #dc2626;
}

/* Hide/Show Logic for Billing Toggle */
/* DEFAULT: Hide annual prices on initial page load (before JS adds class) */
.card-price-annual {
    display: none;
}

/* Show annual prices only when annual-billing class is present */
body.annual-billing .card-price-annual {
    display: block;
}

/* Hide monthly prices when annual billing is selected */
body.annual-billing .card-price-monthly {
    display: none;
}

/* Explicitly show monthly prices (default state and monthly-billing class) */
body.monthly-billing .card-price-monthly,
.card-price-monthly {
    display: block;
}

/* ==========================================================================
   LIVE BETTING SOLUTION STYLES
   ========================================================================== */

.problem-badge {
    display: inline-block;
    background: #fef2f2;
    color: #ef4444;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid #fecaca;
}

.problems-container {
    margin-bottom: 80px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    align-items: start;
}

.problem-category {
    background: white;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 32px 30px 28px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
}

.problem-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
}

.problem-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-icon {
    font-size: 24px;
    color: #ef4444;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 10px 0;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid #f9fafb;
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-list li::before {
    content: "❌";
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Solution Section */
.solution-container {
    background: white;
    border: 2px solid #34d670;
    border-radius: 16px;
    padding: 60px 50px;
    box-shadow: 0 4px 16px rgba(52, 214, 112, 0.1);
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-badge {
    display: inline-block;
    background: #34d670;
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(52, 214, 112, 0.3);
}

.solution-title {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.solution-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 35px 28px;
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #34d670;
    box-shadow: 0 8px 16px rgba(52, 214, 112, 0.1);
    background: white;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.feature-description {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

/* Benefits List */
.benefits-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 45px;
    margin-top: 50px;
}

.benefits-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "✓";
    color: #34d670;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #fecaca;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

.cta-button {
    background: #ef4444;
    color: white;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.cta-button:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    color: white;
}

.cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: #9ca3af;
}

/* ==========================================================================
   COMPLETE SYSTEM STYLES
   ========================================================================== */

.system-badge {
    display: inline-block;
    background: #34d670;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(52, 214, 112, 0.3);
}

/* Track Record Bar */
.track-record-bar {
    background: white;
    border: 2px solid #34d670;
    border-radius: 12px;
    padding: 30px 40px;
    margin-bottom: 70px;
    box-shadow: 0 4px 12px rgba(52, 214, 112, 0.1);
}

.track-record-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 0 20px;
    border-right: 1px solid #e5e7eb;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: #34d670;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Category Sections */
.category-section {
    margin-bottom: 70px;
}

.category-header {
    text-align: center;
    margin-bottom: 45px;
}

.category-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.category-description {
    font-size: 16px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tool-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: #34d670;
    box-shadow: 0 8px 16px rgba(52, 214, 112, 0.1);
}

.tool-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tool-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.tool-tier {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.tool-tier.premium {
    background: #34d670;
    color: white;
}

.tool-tier.elite {
    background: #ef4444;
    color: white;
}

.tool-description {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tool-features {
    list-style: none;
}

.tool-features li {
    padding: 6px 0;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
}

.tool-features li::before {
    content: "✓";
    color: #34d670;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.tool-cta {
    width: 100%;
    padding: 12px 20px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2);
}

.tool-cta:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    color: white;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.content-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.content-card:hover {
    transform: translateY(-4px);
    border-color: #34d670;
    box-shadow: 0 8px 16px rgba(52, 214, 112, 0.1);
}

.content-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.content-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.content-description {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.content-list {
    list-style: none;
}

.content-list li {
    padding: 8px 0;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.content-list li::before {
    content: "✓";
    color: #34d670;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

/* Community Features */
.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.community-feature {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.community-feature:hover {
    transform: translateY(-4px);
    border-color: #34d670;
    box-shadow: 0 8px 16px rgba(52, 214, 112, 0.1);
}

.community-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.community-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.community-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Live Betting Highlight */
.live-betting-highlight {
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    border: 2px solid #fca5a5;
    border-radius: 16px;
    padding: 50px;
    margin-top: 70px;
    text-align: center;
}

.highlight-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.highlight-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.highlight-description {
    font-size: 16px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.highlight-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.highlight-feature {
    background: white;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 25px 20px;
}

.highlight-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.highlight-feature-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1200px) {
    .pricing-grid,
    .one-time-grid,
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .limited-grid,
    .one-time-limited-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .track-record-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 20px;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .highlight-features {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mma-section {
        padding: 60px 5%;
    }

    .pricing-title,
    .section-title {
        font-size: 32px;
    }

    .category-title,
    .solution-title,
    .limited-title {
        font-size: 28px;
    }

    .comparison-heading {
        font-size: 26px;
    }

    .card-price {
        font-size: 38px;
    }

    .billing-toggle {
        flex-direction: column;
        padding: 6px;
    }

    .billing-option {
        width: 100%;
        text-align: center;
    }

    .limited-capacity-section,
    .comparison-callout,
    .one-time-toggle,
    .solution-container,
    .cta-section,
    .live-betting-highlight {
        padding: 35px 25px;
    }

    .comparison-cta,
    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .limited-card,
    .problem-category {
        padding: 32px 25px;
    }

    .pricing-grid,
    .one-time-grid,
    .tools-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .track-record-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 20px;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
