/* ============================================
   MB Capital Strategies Global
   Design System: Gold & Black (Modern)
   ============================================ */

/* === CSS Custom Properties === */
:root {
    /* Gold Palette */
    --gold-primary: #d4af37;
    --gold-light: #e8c95a;
    --gold-dark: #b8941e;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-subtle: rgba(212, 175, 55, 0.08);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f2d675 50%, #d4af37 100%);
    --gold-gradient-dark: linear-gradient(135deg, #b8941e 0%, #d4af37 100%);
    --gold-text-gradient: linear-gradient(135deg, #e8c95a, #d4af37, #f2d675);

    /* Black Palette */
    --black-deepest: #000000;
    --black-deep: #050507;
    --black-primary: #0a0a0f;
    --black-card: #0e0e15;
    --black-elevated: #13131c;
    --black-surface: #181823;
    --black-border: #1e1e2e;
    --black-hover: #252535;

    /* Text Colors */
    --text-primary: #f0f0f5;
    --text-secondary: #9a9ab0;
    --text-muted: #6a6a80;
    --text-gold: #d4af37;

    /* Glass Effect */
    --glass-bg: rgba(14, 14, 21, 0.7);
    --glass-border: rgba(212, 175, 55, 0.1);
    --glass-blur: 16px;

    /* Spacing */
    --section-padding: clamp(60px, 8vw, 120px);
    --container-max: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --border-radius-xs: 6px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--black-deepest);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* === Container === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Glass Card === */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.08);
}

/* === Typography === */
.gold-text {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--black-deepest);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-subtle);
    transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 7, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-mb {
    font-size: 1.4rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-global {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--border-radius-xs);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--black-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-fast);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--border-radius-xs);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    color: var(--gold-primary);
    background: var(--gold-subtle);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex-shrink: 0;
}

/* Avatar */
.avatar-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
}

.avatar-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--gold-primary);
    border-right-color: var(--gold-light);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--black-elevated);
    border: 2px solid var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-placeholder span {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.avatar-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #28a745;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.avatar-badge.pulse {
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(40, 167, 69, 0); }
}

/* Hero Text */
.hero-right {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    background: var(--gold-subtle);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.8;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--black-border);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section {
    padding: var(--section-padding) 0;
}

.about-section {
    background: var(--black-deep);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.about-card {
    padding: 32px;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-4px);
}

.about-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-subtle);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold-primary);
}

.about-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Philosophy Card */
.about-philosophy {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.about-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.philosophy-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 14px;
}

.about-philosophy h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.about-philosophy p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.8;
}

.philosophy-stats {
    display: flex;
    gap: 48px;
    margin-top: 28px;
}

.philosophy-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================
   SECTORS SECTION
   ============================================ */
.sectors-section {
    background: var(--black-primary);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sector-card {
    padding: 32px;
    display: block;
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.sector-card:hover::before {
    transform: scaleX(1);
}

.sector-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.sector-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sector-icon svg {
    width: 36px;
    height: 36px;
    color: var(--gold-primary);
}

.sector-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sector-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sector-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
}

/* ============================================
   TOOLS SECTION
   ============================================ */
.tools-section {
    background: var(--black-deep);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tool-card {
    padding: 28px;
    display: block;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.tool-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--black-deepest);
    background: var(--gold-gradient);
}

.tool-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   BEST-OF SECTION
   ============================================ */
.bestof-section {
    background: var(--black-primary);
}

.bestof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bestof-card {
    padding: 36px;
    display: block;
    position: relative;
    overflow: hidden;
}

.bestof-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.bestof-rank {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.bestof-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.bestof-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.bestof-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: var(--black-deep);
}

.newsletter-card {
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(14, 14, 21, 0.9) 100%);
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.newsletter-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.newsletter-form {
    max-width: 480px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 12px;
}

.form-input {
    flex: 1;
    padding: 14px 20px;
    background: var(--black-primary);
    border: 1px solid var(--black-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-input:focus {
    border-color: var(--gold-primary);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--black-primary);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold-primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
    background: var(--black-deep);
}

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

.partner-card {
    padding: 28px;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-4px);
}

.partner-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.affiliate-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black-deepest);
    border-top: 1px solid var(--glass-border);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--black-surface);
    border: 1px solid var(--black-border);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background: var(--gold-subtle);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

/* ============================================
   SUB-PAGE LAYOUT
   ============================================ */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--black-deep);
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--glass-border);
}

.page-hero .hero-tag {
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.page-hero p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: var(--section-padding) 0;
    background: var(--black-primary);
}

.page-content .container {
    max-width: 800px;
}

.page-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--text-primary);
}

.page-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--text-primary);
}

.page-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
    margin: 0 0 16px 24px;
    color: var(--text-secondary);
}

.page-content li {
    margin-bottom: 8px;
    list-style: disc;
    line-height: 1.7;
}

.page-content strong {
    color: var(--text-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black-elevated);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 32px;
        gap: 4px;
        transition: right var(--transition-base);
        overflow-y: auto;
        border-left: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 12px 16px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

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

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

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

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

    .form-group {
        flex-direction: column;
    }

    .newsletter-card {
        padding: 36px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .philosophy-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-title {
        font-size: 1.7rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: var(--black-deepest);
}

::-webkit-scrollbar-thumb {
    background: var(--black-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Selection */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--text-primary);
}

/* ============================================
   NEW HOMEPAGE STYLES
   ============================================ */

/* Hero Credentials */
.hero-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 28px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.credential-icon {
    width: 18px;
    height: 18px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

/* Hero Stats Strip */
.hero-stats-strip {
    display: flex;
    gap: 2px;
    margin-bottom: 32px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.stat-box {
    flex: 1;
    padding: 16px 12px;
    background: var(--black-elevated);
    text-align: center;
    border: 1px solid var(--glass-border);
}

.stat-box:first-child {
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.stat-box:last-child {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.stat-box .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box .stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Trust Row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.trust-item {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-divider {
    color: var(--black-border);
}

/* Button outline variant */
.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--black-border);
}

.btn-outline:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

/* About Intro */
.about-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-intro p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* About Features */
.about-features {
    padding: 40px;
    margin-top: 32px;
}

.about-features h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

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

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.feature-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Expanded Sectors Grid */
.sectors-grid-expanded {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sector-emoji {
    font-size: 2rem;
    margin-bottom: 14px;
    line-height: 1;
}

/* Tool Emoji */
.tool-emoji {
    font-size: 1.8rem;
    margin-bottom: 12px;
    line-height: 1;
}

/* Best-of Icon */
.bestof-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    line-height: 1;
}

/* Blog Preview */
.blog-preview-section {
    background: var(--black-deep);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    padding: 28px;
    display: block;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.blog-category {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    background: var(--gold-subtle);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.blog-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer 5-col */
.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 1024px) {
    .sectors-grid-expanded {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero-stats-strip {
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 1 45%;
    }

    .stat-box:first-child,
    .stat-box:last-child {
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .sectors-grid-expanded {
        grid-template-columns: 1fr;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .hero-credentials {
        justify-content: center;
    }

    .hero-stats-strip {
        flex-direction: column;
    }

    .stat-box {
        border-radius: 0 !important;
    }

    .trust-row {
        justify-content: center;
        text-align: center;
    }
}

/* ============================================
   BLOG POST PAGE STYLES
   ============================================ */
.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.blog-post-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-post-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    background: var(--gold-subtle);
    padding: 4px 10px;
    border-radius: 4px;
}

.blog-post-content {
    max-width: 760px;
}

.blog-post-content h2 {
    margin-top: 48px;
}

.blog-post-content h2:first-child {
    margin-top: 0;
}

.blog-post-disclaimer {
    margin-top: 48px;
    padding: 24px;
    background: var(--black-elevated);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--glass-border);
}

.blog-post-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

/* Data Table for blog posts */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.88rem;
}

.data-table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--black-elevated);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gold-dark);
}

.data-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.data-table tr:hover td {
    background: var(--gold-subtle);
}

.data-table .highlight {
    color: var(--gold-primary);
    font-weight: 700;
}

/* Key Metrics Cards in blog posts */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.metric-card {
    padding: 16px;
    background: var(--black-elevated);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.metric-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Related Posts */
.related-posts {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.related-posts h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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