/* gold.css - Page-specific styles for gold.html */

/* ===== GOLD HERO SECTION ===== */
.gold-hero {
    background: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.gold-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.03) 0%, rgba(255,215,0,0.01) 100%);
}

.gold-hero-content {
    position: relative;
    z-index: 2;
}

/* Header Row with Logo and Title */
.gold-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.gold-logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gold-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.2);
}

.gold-logo i {
    font-size: 2.2rem;
}

.gold-hero-title {
    font-size: 2.8rem;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.gold-hero-title span {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Benefits - All in One Row */
.gold-benefits-row {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gold-benefits-row::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1200px) {
    .gold-benefits-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.gold-benefit {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.gold-benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(218, 165, 32, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.gold-benefit-icon {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.gold-benefit-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: center;
}

.gold-benefit-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

/* Full Width Chart Container */
.gold-chart-fullwidth {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    margin: 40px 0;
    width: 100%;
}

.chart-header-fullwidth {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.chart-title-fullwidth {
    font-size: 1.5rem;
    color: #333;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-info-fullwidth {
    display: flex;
    align-items: center;
    gap: 30px;
}

.chart-price-fullwidth {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.chart-change-fullwidth {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
}

.positive-change {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.negative-change {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.chart-canvas-fullwidth {
    position: relative;
    height: 400px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.chart-footer-fullwidth {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.chart-period-fullwidth {
    display: flex;
    gap: 10px;
}

.period-btn-fullwidth {
    background: none;
    border: 2px solid #e0e0e0;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.period-btn-fullwidth:hover {
    border-color: #FFD700;
    color: #333;
}

.period-btn-fullwidth.active {
    background: #FFD700;
    color: white;
    border-color: #FFD700;
}

.chart-time-fullwidth {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Centered CTA Buttons */
.gold-cta-center {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}

.cta-button-gold-large {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: white;
    padding: 20px 45px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 12px 25px rgba(218, 165, 32, 0.35);
    transition: all 0.3s ease;
}

.cta-button-gold-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.5);
    color: white;
}

.cta-button-outline-large {
    background: white;
    color: #333;
    padding: 20px 45px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 3px solid #FFD700;
    transition: all 0.3s ease;
}

.cta-button-outline-large:hover {
    background: #FFD700;
    color: white;
    border-color: #FFD700;
    transform: translateY(-5px);
}

/* Candlestick Styles */
.candlestick {
    position: absolute;
    width: 8px;
    border-radius: 2px;
    transition: all 0.5s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.candlestick.green {
    background: #28a745;
}

.candlestick.red {
    background: #dc3545;
}

.candlestick-body {
    position: absolute;
    width: 12px;
    left: -2px;
    border-radius: 3px;
}

.candlestick.wick {
    width: 2px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== GOLD SYSTEMS SECTION ===== */
.gold-systems-section {
    padding: 80px 0;
    background: #f8fafc;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.system-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.system-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e6a23c, #f59e0b);
}

.system-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a3a5f;
}

.system-stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.stat-box {
    text-align: center;
}

.stat-box .value {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.stat-box .label {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 5px;
}

.system-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.system-features li {
    padding: 8px 0;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.system-features li::before {
    content: "✓";
    color: #82D32B;
    font-weight: bold;
    flex-shrink: 0;
}

/* ===== GOLD PERFORMANCE SECTION ===== */
.gold-performance-section {
    padding: 80px 0;
    background: white;
}

.performance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.performance-table th {
    background: #1a3a5f;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.performance-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.performance-table .positive {
    color: #82D32B;
    font-weight: 700;
}

.performance-table .negative {
    color: #ef4444;
    font-weight: 700;
}

.performance-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a3a5f;
    display: block;
    line-height: 1;
}

.highlight-label {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 8px;
}

/* ===== GOLD PRICING SECTION ===== */
.gold-pricing-section {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.popular {
    border-color: #e6a23c;
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e6a23c, #f59e0b);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.plan-name {
    font-size: 1.8rem;
    color: #1a3a5f;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a3a5f;
    margin: 20px 0;
}

.plan-price .period {
    font-size: 1rem;
    color: #64748b;
    font-weight: normal;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #82D32B;
}

.price-button {
    display: block;
    width: 100%;
    padding: 18px;
    text-align: center;
    background: linear-gradient(135deg, #1a3a5f, #2a5a8c);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.price-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 58, 95, 0.2);
}

.pricing-card.popular .price-button {
    background: linear-gradient(135deg, #e6a23c, #f59e0b);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .gold-header-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .gold-logo-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .gold-hero-title {
        font-size: 2.2rem;
    }
    
    .chart-header-fullwidth {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .chart-info-fullwidth {
        flex-direction: column;
        gap: 15px;
    }
    
    .chart-canvas-fullwidth {
        height: 350px;
    }
    
    .gold-benefit {
        min-width: 100%;
        max-width: 100%;
    }
    
    .gold-cta-center {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-gold-large,
    .cta-button-outline-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .chart-canvas-fullwidth {
        height: 300px;
    }
    
    .systems-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .performance-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .gold-logo {
        font-size: 1.4rem;
        padding: 10px 20px;
    }
    
    .gold-hero-title {
        font-size: 1.8rem;
    }
    
    .chart-canvas-fullwidth {
        height: 250px;
    }
    
    .chart-price-fullwidth {
        font-size: 1.6rem;
    }
    
    .chart-change-fullwidth {
        font-size: 1rem;
    }
}
/* gold.css - Page-specific styles for gold.html */

/* ===== GOLD-SPECIFIC ENHANCEMENTS ===== */
.gold-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 3px solid #FFD700;
}

.gold-badge {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: #333;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
}

.profit-highlight-gold {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ===== GOLD SYSTEMS ENHANCEMENTS ===== */
.system-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFD700;
    text-align: center;
}

.system-performance {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.perf-item {
    text-align: center;
}

.perf-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    display: block;
    line-height: 1.2;
}

.perf-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    display: block;
}

/* ===== PERFORMANCE TABLE ENHANCEMENTS ===== */
.monthly-table {
    overflow-x: auto;
    margin: 40px 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 20px;
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

.performance-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.performance-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
}

.performance-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.positive {
    color: #28a745;
    font-weight: 600;
}

.negative {
    color: #dc3545;
    font-weight: 600;
}

.total-row {
    background: #f8f9fa;
    font-weight: 600;
}

.performance-table th:first-child,
.performance-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.performance-table tr:hover {
    background-color: #f8f9fa;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid #FFD700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 15px 0;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== RISK MANAGEMENT BOX ===== */
.risk-management-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.risk-management-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    z-index: 1;
}

.risk-management-box > * {
    position: relative;
    z-index: 2;
}

.risk-management-box h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.risk-management-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.risk-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.risk-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.risk-list li i {
    color: #82D32B;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== SYSTEMS GRID ===== */
/* Note: This might duplicate .systems-grid from earlier, so use carefully */
.gold-systems-container .systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gold-systems-container .system-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}

.gold-systems-container .system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.15);
}

.gold-systems-container .system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #DAA520);
}

/* ===== GOLD-SPECIFIC BUTTONS ===== */
.gold-btn {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: #333;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.gold-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.3);
    color: #333;
}

.gold-btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #FFD700;
    padding: 10px 26px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.gold-btn-outline:hover {
    background: #FFD700;
    color: #333;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ADJUSTMENTS FOR ADDED STYLES ===== */
@media (max-width: 768px) {
    .gold-systems-container .systems-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gold-systems-container .system-card {
        padding: 20px;
    }
    
    .risk-management-box {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .monthly-table {
        padding: 15px;
        margin: 30px -15px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .system-performance {
        flex-direction: column;
        gap: 15px;
    }
    
    .perf-item {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .gold-btn,
    .gold-btn-outline {
        width: 100%;
        text-align: center;
    }
}
/* Gold products cards (scoped) */
.page-gold.products-section {
  padding: 56px 0;
}

.page-gold .products-header {
  max-width: 820px;
  margin: 0 auto 22px;
  text-align: center;
}

.page-gold .products-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  color: #222;
}

.page-gold .products-subtitle {
  margin: 0;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.62);
}

.page-gold .products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.page-gold .product-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.page-gold .product-card-top {
  margin-bottom: 10px;
}

.page-gold .product-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(247, 200, 67, 0.90), rgba(247, 200, 67, 0.45));
  color: #1f1f1f;
  margin-bottom: 12px;
}

.page-gold .product-icon i {
  font-size: 18px;
}

.page-gold .product-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  color: #1f1f1f;
}

.page-gold .product-lede {
  margin: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.62);
}

.page-gold .product-bullets {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.70);
  font-size: 14px;
}

.page-gold .product-bullets li {
  margin: 8px 0;
}

.page-gold .product-bullets strong {
  color: rgba(0, 0, 0, 0.78);
}

.page-gold .product-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #b8860b; /* dark gold */
  text-decoration: none;
  padding-top: 12px;
}

.page-gold .product-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 980px) {
  .page-gold .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-gold .products-grid {
    grid-template-columns: 1fr;
  }
  .page-gold .product-card {
    min-height: unset;
  }
}
.page-gold .product-meta {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(0,0,0,0.65);
}

.page-gold .product-meta p {
  margin: 6px 0;
}

.page-gold .product-meta strong {
  color: rgba(0,0,0,0.80);
}

.page-gold .product-automation {
  margin-top: 8px;
  font-weight: 600;
}
/* Systems Section Updates */
.system-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.system-benefits {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit-tag {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Subscription Integration Box */
.subscription-integration-box {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.subscription-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tier-column {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tier-column:hover {
    transform: translateY(-5px);
}

.tier-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.basic-tier {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.advanced-tier .tier-header {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.benefits-header {
    background: linear-gradient(135deg, #2196F3 0%, #0D47A1 100%);
}

.tier-header h4 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tier-price {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 600;
}

.tier-features {
    padding: 25px;
}

.tier-features h5 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tier-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.tier-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li i {
    color: #4CAF50;
    margin-top: 3px;
}

.tier-note {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.highlight-note {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-left: 4px solid #FF9800;
    color: #5D4037;
}

/* Benefits Items */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item i {
    color: #2196F3;
    font-size: 1.2rem;
    margin-top: 3px;
}

.benefit-item div {
    flex: 1;
}

.benefit-item strong {
    color: #333;
    display: block;
    margin-bottom: 3px;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Risk Enhancement Note */
.risk-enhancement-note {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #4CAF50;
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.risk-enhancement-note i {
    color: #4CAF50;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.risk-enhancement-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .subscription-tier-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-integration-box {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .system-benefits {
        flex-direction: column;
        gap: 10px;
    }
    
    .tier-header h4 {
        font-size: 1.1rem;
    }
}
/* Subscription Info Banner */
.subscription-info-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.banner-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    align-items: start;
}

.banner-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.banner-item i {
    color: white;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-item div {
    flex: 1;
}

.banner-item h4 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.banner-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.banner-item strong {
    color: white;
}

/* System Card Updates */
.system-card {
    position: relative;
    transition: all 0.3s ease;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.system-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.system-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Benefits Box */
.system-benefits-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #4CAF50;
}

.system-benefits-box h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.system-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.system-benefits-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.system-benefits-list li i {
    color: #4CAF50;
    margin-top: 3px;
    flex-shrink: 0;
}

.system-benefits-list li strong {
    color: #333;
    margin-right: 5px;
}

/* System Tags */
.system-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* View Signals Link */
.view-signals-link {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.btn-link {
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #1976D2;
    transform: translateX(5px);
}

/* System Explanation */
.system-explanation {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.explanation-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 8px;
    background: #f8f9fa;
}

.explanation-toggle:hover {
    background: #e9ecef;
    color: #333;
}

.explanation-toggle i {
    color: #2196F3;
}

/* Capital Management Box */
.capital-management-box {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.management-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    text-align: center;
    color: white;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.management-note {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.note-icon i {
    color: #4CAF50;
    font-size: 2rem;
}

.note-content p {
    color: white;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.note-content strong {
    color: #4CAF50;
}

/* Performance Items (keeping your existing style) */
.system-performance {
    display: flex;
    justify-content: space-around;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: auto;
}

.perf-item {
    text-align: center;
}

.perf-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 5px;
}

.perf-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscription-info-banner {
        padding: 20px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capital-management-box {
        padding: 25px;
    }
    
    .management-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .management-note {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
/* Subscription Info Banner - Using your blue/gold scheme */
.subscription-info-banner {
    background: linear-gradient(135deg, #001e3c 0%, #0a2a4a 100%);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 30, 60, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.banner-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    align-items: start;
}

.banner-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.banner-item i {
    color: #ffd700;
    font-size: 1.8rem;
    background: rgba(255, 215, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.banner-item div {
    flex: 1;
}

.banner-item h4 {
    color: #ffd700;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.banner-item p {
    color: #b0c4de;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.banner-item strong {
    color: #fff;
}

/* System Card Updates - Matching your existing system cards */
.system-card {
    position: relative;
    transition: all 0.3s ease;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 30, 60, 0.08);
    border: 1px solid #e8ecef;
}

.system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 30, 60, 0.12);
    border-color: #ffd700;
}

/* System icons matching your color scheme */
.system-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.trend-icon {
    background: linear-gradient(135deg, #00c853 0%, #2e7d32 100%);
    color: white;
}

.mixed-icon {
    background: linear-gradient(135deg, #2962ff 0%, #1a237e 100%);
    color: white;
}

.pattern-icon {
    background: linear-gradient(135deg, #aa00ff 0%, #6200ea 100%);
    color: white;
}

/* Badges */
.system-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.trend-badge {
    background: linear-gradient(135deg, #00c853 0%, #2e7d32 100%);
}

.mixed-badge {
    background: linear-gradient(135deg, #2962ff 0%, #1a237e 100%);
}

.pattern-badge {
    background: linear-gradient(135deg, #aa00ff 0%, #6200ea 100%);
}

.system-card h3 {
    color: #001e3c;
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    text-align: center;
    font-weight: 600;
}

.system-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Benefits Box */
.system-benefits-box {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #ffd700;
}

.system-benefits-box h4 {
    color: #001e3c;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.system-benefits-box h4 i {
    color: #ffd700;
}

.system-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.system-benefits-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e8ecef;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.system-benefits-list li i {
    color: #00c853;
    margin-top: 3px;
    flex-shrink: 0;
}

.system-benefits-list li strong {
    color: #001e3c;
    margin-right: 5px;
    font-weight: 600;
}

/* System Tags */
.system-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    background: #f0f4f8;
    color: #5a6c7d;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #e8ecef;
}

.tag i {
    color: #ffd700;
}

/* View Signals Link */
.view-signals-link {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e8ecef;
}

.btn-link {
    color: #2962ff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-link:hover {
    color: #0039cb;
    transform: translateX(5px);
}

.btn-link i {
    color: #ffd700;
}

/* System Explanation */
.system-explanation {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e8ecef;
}

.explanation-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #5a6c7d;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 0.9rem;
    border: 1px solid #e8ecef;
}

.explanation-toggle:hover {
    background: #e8ecef;
    color: #001e3c;
    border-color: #ffd700;
}

.explanation-toggle i {
    color: #2962ff;
}

/* Performance Items - matching your existing performance styling */
.system-performance {
    display: flex;
    justify-content: space-around;
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
    margin-top: auto;
    border: 1px solid #e8ecef;
}

.perf-item {
    text-align: center;
}

.perf-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00c853;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.perf-label {
    font-size: 0.8rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Capital Management Box - using your dark blue scheme */
.capital-management-box {
    background: linear-gradient(135deg, #001e3c 0%, #0a2a4a 100%);
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 30, 60, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.capital-management-box .section-title h2 {
    color: #ffd700;
    font-weight: 600;
}

.capital-management-box .section-title h2 i {
    color: #ffd700;
}

.capital-management-box .section-subtitle {
    color: #b0c4de !important;
}

.management-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    text-align: center;
    color: white;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-icon i {
    font-size: 1.8rem;
    color: #ffd700;
}

.feature-item h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-item p {
    color: #b0c4de;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.management-note {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.note-icon i {
    color: #ffd700;
    font-size: 2rem;
}

.note-content p {
    color: #b0c4de;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.note-content strong {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscription-info-banner {
        padding: 20px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capital-management-box {
        padding: 25px;
    }
    
    .management-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .management-note {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .system-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .system-badge {
        font-size: 0.7rem;
        padding: 3px 12px;
        right: 15px;
    }
}
/* Subscription Bar */
.subscription-bar {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #001e3c 0%, #0a2a4a 100%);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.subscription-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
}

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

.subscription-bar-item i {
    font-size: 1.5rem;
    color: #ffd700;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
}

.subscription-bar-content {
    display: flex;
    flex-direction: column;
}

.subscription-bar-title {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.subscription-bar-text {
    color: #b0c4de;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 30, 60, 0.1);
    border: 1px solid #e8ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 30, 60, 0.15);
    border-color: #ffd700;
}

/* Card Header */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.product-badge {
    background: linear-gradient(135deg, #00c853 0%, #2e7d32 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mixed-card .product-badge {
    background: linear-gradient(135deg, #2962ff 0%, #1a237e 100%);
}

.pattern-card .product-badge {
    background: linear-gradient(135deg, #aa00ff 0%, #6200ea 100%);
}

.product-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.trend-card .product-icon {
    background: linear-gradient(135deg, #00c853 0%, #2e7d32 100%);
}

.mixed-card .product-icon {
    background: linear-gradient(135deg, #2962ff 0%, #1a237e 100%);
}

.pattern-card .product-icon {
    background: linear-gradient(135deg, #aa00ff 0%, #6200ea 100%);
}

/* Card Content */
.product-title {
    color: #001e3c;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.product-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Benefits List */
.product-benefits {
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f4f8;
}

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

.benefit-item i {
    color: #00c853;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-item span {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefit-item strong {
    color: #001e3c;
    font-weight: 600;
}

/* Performance Stats */
.product-stats {
    display: flex;
    justify-content: space-around;
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid #e8ecef;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00c853;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Signal Link */
.signal-link {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8ecef;
}

.signal-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2962ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.signal-link a:hover {
    color: #0039cb;
}

.signal-link i {
    font-size: 0.8rem;
}

/* Pattern Explanation */
.pattern-explanation {
    margin-top: 20px;
}

.pattern-details {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e8ecef;
    overflow: hidden;
}

.pattern-details summary {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #5a6c7d;
    font-weight: 500;
    list-style: none;
}

.pattern-details summary::-webkit-details-marker {
    display: none;
}

.pattern-details summary i:first-child {
    color: #2962ff;
    margin-right: 10px;
}

.pattern-details summary i:last-child {
    transition: transform 0.3s ease;
    color: #5a6c7d;
}

.pattern-details[open] summary i:last-child {
    transform: rotate(180deg);
}

.pattern-content {
    padding: 0 20px 20px 20px;
    border-top: 1px solid #e8ecef;
    margin-top: 10px;
    padding-top: 15px;
}

.pattern-content p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Capital Management Section */
.capital-management-section {
    background: linear-gradient(135deg, #001e3c 0%, #0a2a4a 100%);
    border-radius: 12px;
    padding: 40px;
    margin-top: 50px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.capital-header {
    text-align: center;
    margin-bottom: 40px;
}

.capital-header h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.capital-header h3 i {
    margin-right: 10px;
}

.capital-header p {
    color: #b0c4de;
    font-size: 1rem;
    margin: 0;
}

.capital-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.capital-feature {
    text-align: center;
    color: white;
}

.capital-feature i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

.capital-feature h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.capital-feature p {
    color: #b0c4de;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pattern-card {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .subscription-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .subscription-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        padding: 0 0 20px 0;
    }
    
    .subscription-bar-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .pattern-card {
        grid-column: span 1;
    }
    
    .capital-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .capital-management-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .product-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-badge {
        align-self: flex-start;
    }
    
    .product-icon {
        align-self: flex-start;
    }
}
/* Gold Trading Products Section */
.section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a3a5f;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 16px;
}
.section-subtitle:first-of-type {
  font-weight: 500;
}
/* Features Table */
.features-table-container {
    margin: 40px 0 60px;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.features-table th {
    background: #1a3a5f;
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #333;
    font-size: 0.95rem;
}

.features-table td:first-child {
    font-weight: 600;
    color: #1a3a5f;
    width: 200px;
}

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

.features-table td strong {
    color: #e6a23c;
}

/* Strategy Grid */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.strategy-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.strategy-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.trend-badge {
    background: linear-gradient(135deg, rgba(230, 162, 60, 0.1), rgba(245, 158, 11, 0.05));
    color: #e6a23c;
    border: 1px solid rgba(230, 162, 60, 0.2);
}

.neutral-badge {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(66, 153, 225, 0.05));
    color: #1e88e5;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.pattern-badge {
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.1), rgba(72, 187, 120, 0.05));
    color: #43a047;
    border: 1px solid rgba(67, 160, 71, 0.2);
}

.strategy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a3a5f;
}

.strategy-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.strategy-benefits {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.check-icon {
    color: #82D32B;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.performance-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: 24px;
}

.stat {
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a3a5f;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Capital Management */
.capital-management {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.capital-management .section-title {
    margin-bottom: 40px;
}

.capital-management .section-title h4 {
    font-size: 1.5rem;
    color: #1a3a5f;
    margin-bottom: 5px;
}

.capital-management .section-subtitle {
    color: #64748b;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a3a5f;
}

.feature-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .features-table {
        font-size: 0.9rem;
    }
    
    .features-table th,
    .features-table td {
        padding: 12px 15px;
    }
    
    .capital-management {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* Minimal Features Design */
.features-minimal {
    background: white;
    border-radius: 10px;
    padding: 25px 30px;
    margin: 40px 0 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-row {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
}

.feature-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-row.highlight-row {
    background: #f8fafc;
    margin: 0 -30px;
    padding: 18px 30px;
    border-radius: 8px;
    border: none;
}

.feature-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a3a5f;
    width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-values {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1rem;
    color: #475569;
}

.basic-value, .advanced-value, .all-value {
    flex: 1;
}

.divider {
    color: #cbd5e1;
    font-weight: 300;
}

.basic-value strong {
    color: #64748b;
    font-weight: 600;
}

.advanced-value strong {
    color: #e6a23c;
    font-weight: 600;
}

.all-value strong {
    color: #16a34a;
    font-weight: 600;
}

/* Responsive for minimal features */
@media (max-width: 768px) {
    .features-minimal {
        padding: 20px;
    }
    
    .feature-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .feature-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .feature-values {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .divider {
        display: none;
    }
    
    .feature-row.highlight-row {
        margin: 0 -20px;
        padding: 18px 20px;
    }
}
/* Subscription Bar - Improved contrast */
.subscription-bar {
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid #e8ecef;
    box-shadow: 0 4px 12px rgba(0, 30, 60, 0.08);
}

.subscription-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid #e8ecef;
}

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

.subscription-bar-item i {
    font-size: 1.5rem;
    color: #2962ff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 8px;
}

.subscription-bar-content {
    display: flex;
    flex-direction: column;
}

.subscription-bar-title {
    color: #001e3c;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.subscription-bar-text {
    color: #5a6c7d;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 30, 60, 0.1);
    border: 1px solid #e8ecef;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 30, 60, 0.15);
    border-color: #2962ff;
}

/* Card Header */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.product-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #c8e6c9;
}

.mixed-card .product-badge {
    background: #e3f2fd;
    color: #1565c0;
    border-color: #bbdefb;
}

.pattern-card .product-badge {
    background: #f3e5f5;
    color: #7b1fa2;
    border-color: #e1bee7;
}

.product-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.trend-card .product-icon {
    background: linear-gradient(135deg, #00c853 0%, #2e7d32 100%);
}

.mixed-card .product-icon {
    background: linear-gradient(135deg, #2962ff 0%, #1565c0 100%);
}

.pattern-card .product-icon {
    background: linear-gradient(135deg, #aa00ff 0%, #7b1fa2 100%);
}

/* Card Content */
.product-title {
    color: #001e3c;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.product-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Benefits List - Improved structure */
.product-benefits {
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f4f8;
}

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

.benefit-icon {
    width: 24px;
    height: 24px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #2e7d32;
    font-size: 0.8rem;
}

.mixed-card .benefit-icon {
    background: #e3f2fd;
}

.mixed-card .benefit-icon i {
    color: #1565c0;
}

.pattern-card .benefit-icon {
    background: #f3e5f5;
}

.pattern-card .benefit-icon i {
    color: #7b1fa2;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    color: #001e3c;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.benefit-desc {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Performance Stats */
.product-stats {
    display: flex;
    justify-content: space-around;
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid #e8ecef;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00c853;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.mixed-card .stat-value {
    color: #2962ff;
}

.pattern-card .stat-value {
    color: #aa00ff;
}

.stat-label {
    font-size: 0.75rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* Signal Link */
.signal-link {
    margin-top: 20px;
}

.signal-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2962ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 20px;
    background: #e3f2fd;
    border-radius: 8px;
    border: 1px solid #bbdefb;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.signal-button:hover {
    background: #2962ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 98, 255, 0.2);
}

.signal-button i {
    font-size: 0.8rem;
}

/* Pattern Explanation */
.pattern-explanation {
    margin-top: 20px;
}

.pattern-details {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e8ecef;
    overflow: hidden;
}

.pattern-details summary {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #5a6c7d;
    font-weight: 500;
    list-style: none;
    background: #f3e5f5;
    border-bottom: 1px solid #e8ecef;
}

.pattern-details summary::-webkit-details-marker {
    display: none;
}

.pattern-details summary i:first-child {
    color: #7b1fa2;
    margin-right: 10px;
}

.pattern-details summary i:last-child {
    transition: transform 0.3s ease;
    color: #5a6c7d;
}

.pattern-details[open] summary i:last-child {
    transform: rotate(180deg);
}

.pattern-content {
    padding: 20px;
}

.pattern-content p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Capital Management Section - Improved contrast */
.capital-management-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 40px;
    margin-top: 50px;
    border: 1px solid #e8ecef;
    box-shadow: 0 4px 12px rgba(0, 30, 60, 0.08);
}

.capital-header {
    text-align: center;
    margin-bottom: 40px;
}

.capital-header h3 {
    color: #001e3c;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.capital-header h3 i {
    margin-right: 10px;
    color: #2962ff;
}

.capital-header p {
    color: #5a6c7d;
    font-size: 1rem;
    margin: 0;
}

.capital-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.capital-feature {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e8ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capital-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 30, 60, 0.1);
}

.capital-feature i {
    font-size: 2rem;
    color: #2962ff;
    margin-bottom: 15px;
    display: block;
}

.capital-feature h4 {
    color: #001e3c;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.capital-feature p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pattern-card {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .subscription-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .subscription-bar-item {
        border-right: none;
        border-bottom: 1px solid #e8ecef;
        padding: 0 0 20px 0;
    }
    
    .subscription-bar-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pattern-card {
        grid-column: span 1;
    }
    
    .capital-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capital-management-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .product-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .product-badge {
        align-self: flex-start;
    }
    
    .product-icon {
        align-self: flex-start;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .benefit-icon {
        align-self: flex-start;
    }
}
/* Subscription Info Bar - GOLD & DARK GREY ICONS */
.subscription-bar {
    display: flex;
    justify-content: space-between;
    background: white;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 40px 0 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.subscription-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding: 0 15px;
    border-right: 1px solid #f1f5f9;
}

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

.subscription-bar-item i {
    font-size: 1.8rem;
    min-width: 40px;
    text-align: center;
}

/* GOLD icons for subscription bar */
.subscription-bar-item:nth-child(1) i {
    color: #e6a23c; /* Gold color */
}

/* DARK GREY icons for subscription bar */
.subscription-bar-item:nth-child(2) i {
    color: #4a5568; /* Dark grey */
}

.subscription-bar-item:nth-child(3) i {
    color: #e6a23c; /* Gold color for automated execution */
}

.subscription-bar-content {
    display: flex;
    flex-direction: column;
}

.subscription-bar-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a3a5f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.subscription-bar-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.4;
}

.subscription-bar-text strong {
    color: #e6a23c;
    font-weight: 600;
}

/* Capital Management Section - GOLD & DARK GREY ICONS */
.capital-management-section {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 50px;
}

.capital-header {
    text-align: center;
    margin-bottom: 40px;
}

.capital-header h3 {
    font-size: 1.8rem;
    color: #1a3a5f;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* GOLD icon for capital management header */
.capital-header h3 i {
    color: #e6a23c; /* Gold color */
    font-size: 1.6rem;
}

.capital-header p {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.capital-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.capital-feature {
    text-align: center;
    padding: 30px 25px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capital-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.capital-feature i {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* DARK GREY icon for first capital feature */
.capital-feature:nth-child(1) i {
    color: #4a5568; /* Dark grey */
}

/* GOLD icons for other capital features */
.capital-feature:nth-child(2) i,
.capital-feature:nth-child(3) i {
    color: #e6a23c; /* Gold color */
}

.capital-feature h4 {
    font-size: 1.2rem;
    color: #1a3a5f;
    margin-bottom: 12px;
    font-weight: 600;
}

.capital-feature p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .subscription-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .subscription-bar-item {
        padding: 15px 0;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .subscription-bar-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .capital-features {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .subscription-bar {
        padding: 20px;
    }
    
    .capital-management-section {
        padding: 30px 20px;
    }
    
    .capital-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capital-header h3 {
        font-size: 1.5rem;
    }
}

.perf-switch{
  display:flex; gap:8px; justify-content:center; margin:18px 0 10px;
}
.perf-tab{
  border:1px solid #dfe6f2; background:#fff; padding:10px 14px;
  border-radius:10px; font-weight:600; color:#223a5e; cursor:pointer;
}
.perf-tab.active{ background:#f6f8fc; border-color:#cfd8ea; }

.perf-kpis{
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px; margin:14px 0 18px;
}
.kpi{
  border:1px solid #e7edf7; border-radius:14px; padding:14px 16px; background:#fff;
}
.kpi-label{ font-size:12px; letter-spacing:.02em; color:#667085; text-transform:uppercase; }
.kpi-value{ margin-top:6px; font-size:18px; font-weight:700; color:#1f2a44; } /* visible, not huge */

.perf-charts{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-bottom:18px;
}
.chart-box{
  border:1px solid #e7edf7; border-radius:14px; padding:12px 12px 6px; background:#fff;
}
.chart-title{ font-weight:700; color:#223a5e; margin:4px 6px 8px; font-size:14px; }

.perf-table .table-title{
  font-weight:700; color:#223a5e; margin:0 0 10px;
}
.table-scroll{
  border:1px solid #e7edf7; border-radius:14px; background:#fff;
  max-height:320px; overflow-y:auto;
}
.table-scroll table{ width:100%; border-collapse:collapse; }
.table-scroll th, .table-scroll td{
  padding:10px 12px; border-bottom:1px solid #eef2fb; font-size:13px;
}
.table-scroll th{ position:sticky; top:0; background:#fff; z-index:1; text-align:left; }

@media (max-width: 900px){
  .perf-kpis{ grid-template-columns:1fr; }
  .perf-charts{ grid-template-columns:1fr; }
}
/* GOLD PERFORMANCE SECTION STYLES */
.performance-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.performance-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.performance-section .section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.performance-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), #f59e0b);
    border-radius: 2px;
}

.performance-section .section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Performance tabs */
.perf-switch {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    gap: 10px;
    flex-wrap: wrap;
}

.perf-tab {
    background: white;
    border: 2px solid var(--border-color);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    min-width: 160px;
}

.perf-tab:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.perf-tab.active {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 162, 60, 0.2);
}

/* Performance KPIs */
.perf-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 2.5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.kpi {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kpi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #82D32B, var(--accent-color));
    opacity: 0.7;
}

.kpi:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.kpi strong {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.kpi:nth-child(1) strong { color: #82D32B; }
.kpi:nth-child(2) strong { color: var(--accent-color); }
.kpi:nth-child(3) strong { color: var(--premium-blue); }

.kpi span {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    display: block;
}

/* Performance charts */
.perf-charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 3rem 0;
}

.chart-box {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.chart-box h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-box h4 i {
    color: var(--accent-color);
}

/* Performance table */
.perf-table {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.table-scroll {
    overflow-x: auto;
    border-radius: 8px;
}

.perf-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.perf-table th {
    background: var(--primary-color);
    color: white;
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    border-bottom: 3px solid var(--accent-color);
}

.perf-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.perf-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.perf-table tr:hover {
    background-color: rgba(230, 162, 60, 0.05);
}

.positive {
    color: #82D32B !important;
    font-weight: 700;
}

.negative {
    color: #ff4d4f !important;
    font-weight: 700;
}

/* Performance disclaimer */
.performance-disclaimer {
    margin-top: 2rem;
    padding: 20px;
    background: #fff8e1;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.performance-disclaimer p {
    margin: 0;
    color: #854d0e;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.performance-disclaimer i {
    color: var(--accent-color);
}

/* Responsive design */
@media (max-width: 992px) {
    .perf-charts {
        grid-template-columns: 1fr;
    }
    
    .perf-kpis {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .perf-tab {
        padding: 10px 20px;
        min-width: 140px;
        font-size: 0.9rem;
    }
    
    .kpi strong {
        font-size: 2.2rem;
    }
    
    .perf-kpis {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .perf-kpis {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .perf-tab {
        min-width: 120px;
        padding: 8px 16px;
    }
}
/* Performance charts - stacked vertically */
.perf-charts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 3rem 0;
}

.chart-box {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    width: 100%;
}

.chart-box h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-box h4 i {
    color: var(--accent-color);
}

/* Chart specific styles */
.chart-container {
    position: relative;
    height: 350px; /* Slightly taller for better visibility */
    margin-top: 10px;
}

/* For the gold-specific charts */
#monthlyChart,
#equityChart {
    width: 100%;
    height: 100%;
}

/* Make sure Google Charts adapts to container */
.google-visualization-chart {
    width: 100% !important;
    height: 100% !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .chart-container {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .chart-box {
        padding: 20px;
    }
    
    .chart-container {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .perf-charts {
        gap: 20px;
    }
    
    .chart-box {
        padding: 15px;
    }
    
    .chart-container {
        height: 250px;
    }
    
    .chart-box h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}
/* Updated Chart Styles to match Mainpage2.html */
.chart-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    width: 100%;
    margin-bottom: 20px;
}

.chart-box h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.chart-box h4 i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.chart-container {
    position: relative;
    height: 380px; /* Taller for better visibility */
    margin-top: 15px;
}

/* Chart legend like Mainpage2.html */
.chart-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0 30px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.positive {
    background: #28a745; /* Green from Mainpage2 */
    border: 1px solid #1e7e34;
}

.legend-color.negative {
    background: #dc3545; /* Red from Mainpage2 */
    border: 1px solid #bd2130;
}

/* Chart period label */
.chart-period {
    font-size: 0.9rem;
    color: var(--gray);
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Google Charts styling to match Mainpage2 */
.google-visualization-chart {
    width: 100% !important;
    height: 100% !important;
}

/* Monthly Results Table Styles */
.monthly-results-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.monthly-table-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    margin-top: 20px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.table-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-header h3 i {
    color: #e6a23c;
    font-size: 1.3rem;
}

.table-filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #e2e8f0;
    color: #334155;
}

.filter-btn.active {
    background: #1a3a5f;
    color: white;
    border-color: #1a3a5f;
}

/* Enhanced Table Styling */
.enhanced-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.enhanced-table thead {
    background: linear-gradient(135deg, #1a3a5f 0%, #2a5a8c 100%);
    color: white;
}

.enhanced-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
}

.enhanced-table th:after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.enhanced-table th:last-child:after {
    display: none;
}

.enhanced-table th i {
    margin-right: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.enhanced-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.enhanced-table tbody tr:hover {
    background-color: #f8fafc;
    transform: translateX(2px);
}

.enhanced-table td {
    padding: 18px 20px;
    color: #334155;
    position: relative;
}

.enhanced-table tr:nth-child(even) {
    background-color: #fafcff;
}

/* Month Column with Icon */
.month-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1a3a5f;
}

.month-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.month-icon.positive {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.month-icon.negative {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.month-icon.neutral {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Return Column Styling */
.return-cell {
    font-weight: 700;
    font-size: 1.1rem;
}

.return-positive {
    color: #28a745;
    position: relative;
    padding-left: 24px;
}

.return-positive:before {
    content: '↗';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.return-negative {
    color: #dc3545;
    position: relative;
    padding-left: 24px;
}

.return-negative:before {
    content: '↘';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Equity Column Styling */
.equity-cell {
    font-weight: 600;
    color: #1a3a5f;
    font-size: 1.05rem;
}

.equity-change {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 4px;
    font-weight: normal;
}

.performance-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.badge-excellent {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.badge-good {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.badge-okay {
    background: rgba(255, 193, 7, 0.1);
    color: #d39e00;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.badge-poor {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-active {
    background: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.status-completed {
    background: #6c757d;
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.2);
}

/* Table Footer */
.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #64748b;
}

.table-summary {
    display: flex;
    gap: 25px;
}

.table-summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-summary-item i {
    color: #e6a23c;
}

.table-pagination {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
}

.pagination-btn:hover {
    background: #f1f5f9;
    color: #1a3a5f;
}

.pagination-btn.active {
    background: #1a3a5f;
    color: white;
    border-color: #1a3a5f;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 992px) {
    .enhanced-table {
        font-size: 0.9rem;
    }
    
    .enhanced-table th,
    .enhanced-table td {
        padding: 14px 16px;
    }
    
    .month-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .monthly-table-container {
        padding: 20px;
    }
    
    .table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .table-filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .table-scroll-wrapper {
        overflow-x: auto;
        border-radius: 8px;
        border: 1px solid #f1f5f9;
    }
    
    .table-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .table-summary {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .performance-badge {
        font-size: 0.75rem;
        min-width: 70px;
    }
}

@media (max-width: 576px) {
    .enhanced-table th,
    .enhanced-table td {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .month-cell {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .return-positive:before,
    .return-negative:before {
        display: none;
    }
    
    .return-positive,
    .return-negative {
        padding-left: 0;
    }
}

/* Vertical Scroll for Table */
.table-scroll-wrapper {
    max-height: 500px; /* Adjust this value for desired visible rows */
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    position: relative;
}

/* Style the scrollbar to match your design */
.table-scroll-wrapper::-webkit-scrollbar {
    width: 8px;
}

.table-scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.table-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.table-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Keep header fixed during scroll */
.table-scroll-wrapper thead {
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Optional: Add gradient fade effect at bottom */
.table-scroll-wrapper:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
    border-radius: 0 0 8px 8px;
}

/* For Firefox */
.table-scroll-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}
.perf-note-card{
  background:#fff;
  border:1px solid #e7edf7;
  border-radius:16px;
  padding:18px 18px 14px;
  box-shadow:0 8px 30px rgba(0,0,0,.08);
  margin:18px 0 24px;
}

.perf-note-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}

.perf-note-header i{
  color:#e6a23c;
  font-size:1.1rem;
}

.perf-note-header h3{
  margin:0;
  font-size:1.05rem;
  color:var(--primary-color);
}

.perf-note-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-bottom:12px;
}

.note-item{
  border:1px solid #eef2fb;
  border-radius:12px;
  padding:12px 12px;
  background:#fbfcff;
}

.note-label{
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#667085;
}

.note-value{
  margin-top:6px;
  font-size:13px;
  font-weight:600;
  color:#1f2a44;
  line-height:1.35;
}

.perf-note-bullets{
  margin:8px 0 0;
  padding-left:18px;
  color:#475467;
  font-size:13px;
}

.perf-note-bullets li{ margin:6px 0; }

@media (max-width: 900px){
  .perf-note-grid{ grid-template-columns:1fr; }
}
/* DD Column - Dark Grey Theme */
th:nth-child(4) { /* Adjust this number based on your column position */
    min-width: 120px;
}

td:nth-child(4) { /* Adjust this number based on your column position */
    font-weight: 600;
}

/* DD specific styling - Dark Grey Theme */
.dd-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start; /* Change from center to flex-start */
}

.dd-value {
    font-size: 1rem;
    font-weight: 700;
    color: #334155; /* Dark grey color */
}

.dd-trend {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b; /* Medium grey color */
}

.dd-trend i {
    margin-right: 4px;
}

/* DD indicator circle - Dark Grey Theme */
.dd-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    background-color: #475569; /* Base dark grey */
    box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.2);
}

/* Optional: Different shades for DD levels if needed */
.dd-indicator.low {
    background-color: #64748b; /* Lighter grey */
}

.dd-indicator.medium {
    background-color: #475569; /* Medium grey */
}

.dd-indicator.high {
    background-color: #334155; /* Darker grey */
}

/* For negative DD values (if you want to indicate negatives differently) */
.dd-value.negative {
    color: #334155; /* Same dark grey */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    th:nth-child(4),
    td:nth-child(4) {
        min-width: 100px;
    }
    
    .dd-cell {
        flex-direction: column;
        gap: 4px;
    }
}
/* ===== FIXES FOR GOLD PAGE ===== */

/* 1. Monthly results row coloring */
.enhanced-table tbody tr.positive-month {
    background-color: rgba(40, 167, 69, 0.05) !important;
}

.enhanced-table tbody tr.negative-month {
    background-color: rgba(220, 53, 69, 0.05) !important;
}

.enhanced-table tbody tr.positive-month:hover {
    background-color: rgba(40, 167, 69, 0.1) !important;
}

.enhanced-table tbody tr.negative-month:hover {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

/* 2. DD Column - Simple Dark Grey */
.enhanced-table th:nth-child(4) {
    min-width: 120px;
}

.enhanced-table td:nth-child(4) {
    color: #334155 !important;
    font-weight: 600;
     text-align: left !important; /* ✅ CHANGE TO LEFT */
}

/* Remove all DD indicators and special formatting */
.dd-indicator,
.dd-trend,
.dd-trend i {
    display: none !important;
}

/* Simple DD value */
.dd-cell {
    color: #334155 !important;
    font-weight: 600;
}

/* Make sure DD values are always dark grey */
.dd-value,
.dd-value.negative,
.dd-value.positive {
    color: #334155 !important;
}
.enhanced-table td.return-positive {
    color: #28a745 !important; /* Green */
}

.enhanced-table td.return-negative {
    color: #dc3545 !important; /* Red */
}
.enhanced-table thead th:nth-child(4) i.fa-chart-line-down {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.enhanced-table thead th:nth-child(4) i.fa-chart-line-down {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: white !important;
}
/* Fix DD column alignment - make it left-aligned like other columns */
.enhanced-table td:nth-child(4),
.enhanced-table th:nth-child(4) {
    text-align: left !important; /* Changed from center to left */
}

/* Fix the DD cell specifically */
.dd-cell {
    text-align: left !important;
    
}

/* Ensure DD value is also left-aligned */
.dd-value {
    text-align: left !important;
    display: inline-block !important; /* This helps with alignment */
}

/* ===== GOLD SUBSCRIPTION CTA SECTION ===== */
.gold-subscription-cta {
    background: linear-gradient(135deg, #001e3c 0%, #0a2a4a 100%);
    border-radius: 16px;
    padding: 60px 40px;
    margin: 80px 0 40px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 30, 60, 0.25);
    position: relative;
    overflow: hidden;
}

.gold-subscription-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.gold-subscription-cta > * {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-subtitle {
    color: #b0c4de;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* CTA Buttons Container */
.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}

/* Primary CTA Button */
.cta-button-primary {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    color: #333;
    padding: 22px 50px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 12px 30px rgba(218, 165, 32, 0.4);
    transition: all 0.3s ease;
    min-width: 260px;
    justify-content: center;
    border: 2px solid transparent;
}

.cta-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.6);
    color: #333;
    border-color: #ffd700;
}

.cta-button-primary i {
    font-size: 1.3rem;
}

/* Secondary CTA Button */
.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 20px 48px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    min-width: 260px;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-5px);
    border-color: #ffd700;
    color: white;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.cta-button-secondary i {
    color: #ffd700;
}

/* Features Grid */
.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.cta-feature {
    text-align: center;
    color: white;
}

.cta-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-feature-icon i {
    font-size: 1.8rem;
    color: #ffd700;
}

.cta-feature h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-feature p {
    color: #b0c4de;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Risk Note */
.cta-risk-note {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
    border-left: 4px solid #82D32B;
    display: flex;
    align-items: center;
    gap: 20px;
}

.risk-note-icon i {
    color: #82D32B;
    font-size: 1.8rem;
}

.risk-note-content p {
    color: #b0c4de;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.risk-note-content strong {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gold-subscription-cta {
        padding: 40px 20px;
        margin: 60px 0 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        padding: 18px 30px;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 25px;
    }
    
    .cta-risk-note {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        font-size: 1.1rem;
        padding: 16px 25px;
    }
}
/* ===== GOLD SUBSCRIPTION CTA SECTION - LIGHT VERSION ===== */
.gold-subscription-cta {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    margin: 80px 0 40px;
    text-align: center;
    border: 1px solid rgba(230, 162, 60, 0.15);
    box-shadow: 0 15px 50px rgba(0, 30, 60, 0.08);
    position: relative;
}

.cta-title {
    color: #1a3a5f; /* Dark blue from your theme */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-subtitle {
    color: #64748b; /* Medium grey */
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* CTA Buttons Container */
.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

/* Green Subscription Button */
.cta-button-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Emerald green gradient */
    color: white;
    padding: 22px 50px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    min-width: 260px;
    justify-content: center;
    border: 2px solid transparent;
}

.cta-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    color: white;
    background: linear-gradient(135deg, #0da271 0%, #047857 100%);
}

.cta-button-primary i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Blue Calculator Button */
.cta-button-secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); /* Blue gradient */
    color: white;
    padding: 22px 50px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    min-width: 260px;
    justify-content: center;
    border: 2px solid transparent;
}

.cta-button-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    color: white;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.cta-button-secondary i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Optional: Add subtle gold accent */
.gold-subscription-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e6a23c, #f59e0b);
    border-radius: 2px 2px 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gold-subscription-cta {
        padding: 40px 25px;
        margin: 60px 0 30px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        padding: 16px 25px;
        font-size: 1rem;
        min-width: auto;
    }
}
/* ===== GOLD SUBSCRIPTION CTA SECTION - LIGHT VERSION ===== */
.gold-subscription-cta {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    margin: 80px 0 40px;
    text-align: center;
    border: 1px solid rgba(230, 162, 60, 0.15);
    box-shadow: 0 15px 50px rgba(0, 30, 60, 0.08);
    position: relative;
}

.cta-title {
    color: #1a3a5f; /* Dark blue from your theme */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-subtitle {
    color: #64748b; /* Medium grey */
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* CTA Buttons Container */
.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

/* Green Subscription Button - STRONGER VISUAL WEIGHT */
.cta-button-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 22px 55px; /* Increased horizontal padding */
    border-radius: 12px;
    font-size: 1.25rem; /* Slightly larger font */
    font-weight: 800; /* Bolder font weight */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4), 
                0 0 15px rgba(16, 185, 129, 0.3); /* Added glow effect */
    transition: all 0.3s ease;
    min-width: 290px; /* Increased from 260px to 290px (+11.5%) */
    justify-content: center;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

/* Optional: Add subtle glow effect */
.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent);
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button-primary:hover::before {
    opacity: 1;
}

.cta-button-primary:hover {
    transform: translateY(-6px); /* Slightly stronger lift */
    box-shadow: 0 18px 40px rgba(16, 185, 129, 0.5),
                0 0 20px rgba(16, 185, 129, 0.4); /* Stronger hover glow */
    background: linear-gradient(135deg, #0da271 0%, #047857 100%);
    color: white;
}

.cta-button-primary i {
    font-size: 1.3rem; /* Slightly larger icon */
    color: rgba(255, 255, 255, 0.95);
}

/* Blue Calculator Button - SUBDUED */
.cta-button-secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 22px 48px; /* Standard padding */
    border-radius: 12px;
    font-size: 1.2rem; /* Normal font size */
    font-weight: 700; /* Normal font weight */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25); /* Reduced shadow intensity */
    transition: all 0.3s ease;
    min-width: 260px; /* Standard width */
    justify-content: center;
    border: 2px solid transparent;
}

.cta-button-secondary:hover {
    transform: translateY(-4px); /* Slightly less lift */
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3); /* Reduced hover shadow */
    color: white;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.cta-button-secondary i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Optional: Add subtle gold accent */
.gold-subscription-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e6a23c, #f59e0b);
    border-radius: 2px 2px 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gold-subscription-cta {
        padding: 40px 25px;
        margin: 60px 0 30px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .cta-button-primary {
        width: 100%;
        max-width: 320px; /* Still larger on mobile */
        padding: 20px 35px;
        font-size: 1.15rem;
        min-width: auto;
    }
    
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        padding: 18px 30px;
        font-size: 1.1rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-button-primary {
        padding: 18px 25px;
        font-size: 1.1rem;
        max-width: 100%;
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35); /* Adjusted for mobile */
    }
    
    .cta-button-secondary {
        padding: 16px 25px;
        font-size: 1rem;
        max-width: 100%;
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2); /* Reduced for mobile */
    }
}/* OPTIMAL SOLUTION - Better contrast */
.cta-button-primary {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%); /* Much darker green */
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    padding: 22px 55px;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.4), 
                0 0 15px rgba(6, 95, 70, 0.3);
    transition: all 0.3s ease;
    min-width: 290px;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cta-button-primary i {
    font-size: 1.3rem;
    color: #ffffff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.cta-button-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(6, 95, 70, 0.5),
                0 0 20px rgba(6, 95, 70, 0.4);
    background: linear-gradient(135deg, #054f3a 0%, #036745 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}
/* Blue Calculator Button - Better contrast */
.cta-button-secondary {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%); /* Darker blue */
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 22px 48px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
    transition: all 0.3s ease;
    min-width: 260px;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cta-button-secondary i {
    font-size: 1.2rem;
    color: #ffffff;
}

.cta-button-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.3);
    color: white;
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    border-color: rgba(255, 255, 255, 0.3);
}
