:root {
    --primary-gold: #c5a059;
    --deep-maroon: #630000;
    --matte-black: #0a0a0a;
    --soft-white: #f8f9fa;
    --glass: rgba(255, 255, 255, 0.03);
    --gold-glow: rgba(197, 160, 89, 0.15);
}

body {
    background-color: var(--matte-black);
    color: var(--soft-white);
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--deep-maroon);
    border-radius: 10px;
}

.gold-title {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-padding {
    padding: 100px 0;
}

/* --- HERO SECTION --- */
.hero-consulting {
    padding: 150px 0 100px;
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 20px;
    display: block;
}

/* --- INFO CARDS --- */
.glass-card {
    background: var(--glass);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 40px;
    border-radius: 4px;
    height: 100%;
    transition: 0.4s;
}

.glass-card:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.05);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.feature-list i {
    color: var(--primary-gold);
    margin-right: 15px;
    margin-top: 5px;
}

/* --- TOPICS GRID --- */
.topic-item {
    border-left: 2px solid var(--deep-maroon);
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    transition: 0.3s;
}

.topic-item:hover {
    border-left-color: var(--primary-gold);
    background: var(--glass);
}

/* --- BUTTON PREMIUM --- */
.btn-premium {
    background: linear-gradient(45deg, var(--deep-maroon), #800000) !important;
    color: white !important;
    border: none !important;
    padding: 14px 45px !important;
    font-size: 0.8rem !important;
    letter-spacing: 3px !important;
    font-weight: 700 !important;
    border-radius: 2px !important;
    transition: 0.5s !important;
    box-shadow: 0 10px 30px rgba(99, 0, 0, 0.3) !important;
    text-transform: uppercase !important;
}

.btn-premium:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(99, 0, 0, 0.5) !important;
    color: white !important;
    background: linear-gradient(45deg, #800000, var(--deep-maroon)) !important;
}

.testimonial-box {
    border-top: 1px solid var(--deep-maroon);
    border-bottom: 1px solid var(--deep-maroon);
    padding: 60px 0;
    font-style: italic;
    text-align: center;
}