/* Institutional Redesign - Core Styles */
:root {
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-glow: rgba(255, 255, 255, 0.1);
}

/* Section General Styles */
.section-title {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.02em !important;
}

.section-subtitle {
    font-size: 1.1rem !important;
    color: #888 !important;
    margin-bottom: 60px !important;
    max-width: 700px;
}

/* Stats Section */
.stats-section {
    background: #050505 !important;
    border-bottom: 1px solid var(--glass-border) !important;
    padding: 60px 0 !important;
}

.stat-item {
    padding: 20px;
}

.stat-value {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 8px !important;
    font-family: 'Inter', sans-serif !important;
}

.stat-label {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #666 !important;
}

/* Tools & Showcase Cards */
.tool-card, .trust-item, .blog-card {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) !important;
    backdrop-filter: blur(12px) !important;
    height: 100%;
}

.tool-card:hover, .trust-item:hover, .blog-card:hover {
    transform: translateY(-8px) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5) !important;
}

.tool-icon i {
    font-size: 2.5rem !important;
    color: #fff !important;
    margin-bottom: 30px !important;
    opacity: 0.9;
}

.tool-card h3, .trust-item h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 15px !important;
}

.tool-card p, .trust-item p {
    color: #888 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

/* Live Preview Table */
.preview-container {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px !important;
    overflow: hidden;
    backdrop-filter: blur(20px) !important;
}

.preview-header {
    background: rgba(255, 255, 255, 0.02) !important;
    padding: 24px 32px !important;
    border-bottom: 1px solid var(--glass-border) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    padding: 20px 32px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #666 !important;
    border-bottom: 1px solid var(--glass-border) !important;
}

.data-table td {
    padding: 20px 32px !important;
    color: #fff !important;
    border-bottom: 1px solid var(--glass-border) !important;
}

/* Prop Firm Section */
#prop-firm {
    background: radial-gradient(circle at 10% 10%, #1a1a2e 0%, #050505 100%) !important;
}

/* Hero Section Enhancements */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.8)), url('../img/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed !important;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-content h1 {
    font-size: 4.5rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
    color: #fff !important;
    letter-spacing: -0.03em !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.hero-subheading {
    display: block !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 4px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 30px !important;
}

.hero-content p.hero-desc {
    font-size: 1.25rem !important;
    color: #999 !important;
    margin-bottom: 48px !important;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    .section-title { font-size: 2.2rem !important; }
    .hero-content h1 { font-size: 2.8rem !important; }
    .tool-card { padding: 30px !important; }
}
