/* ========================================
   STYLE.CSS - COMPLETE STYLESHEET
   Font: Inter (Google Font)
   All backgrounds use #0a0a0a (dark theme)
   ======================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: auto;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.gold-text {
    color: #f5c842;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    background: #f5c842;
    color: #0a0a0a;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #f5c842;
    display: inline-block;
    cursor: pointer;
    font-size: 0.9rem;
}
.btn-primary:hover {
    background: #e0b032;
    border-color: #e0b032;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #f5c842;
    color: #f5c842;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    background: transparent;
    font-size: 0.9rem;
}
.btn-outline:hover {
    background: #f5c842;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    background: transparent;
    font-size: 0.9rem;
}
.btn-outline-light:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-gold {
    background: #f5c842;
    color: #0a0a0a;
    padding: 0.7rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #f5c842;
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
}
.btn-gold:hover {
    background: #e0b032;
    border-color: #e0b032;
    transform: translateY(-2px);
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 800;
}
.section-title h2 span {
    color: #f5c842;
}
.section-title p {
    max-width: 700px;
    margin: 0.5rem auto 0;
    color: #999;
    font-size: 1rem;
}

/* ========================================
   HEADER
   ======================================== */
.main-header {
    background: #0a0a0a;
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-img {
    height: 40px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #f5c842;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #f5c842;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu ul {
    display: flex;
    gap: 1.5rem;
}

.nav-menu ul li a {
    color: #ccc;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    font-family: auto;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #f5c842;
    border-bottom-color: #f5c842;
}

.nav-actions-mobile {
    display: none;
}

.header-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}
.header-actions .btn-outline {
    border-color: #f5c842;
    color: #f5c842;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
}
.header-actions .btn-outline:hover {
    background: #f5c842;
    color: #0a0a0a;
}
.header-actions .btn-primary {
    padding: 0.3rem 1rem;
    background: #f5c842;
    color: #0a0a0a;
    border: 2px solid #f5c842;
    font-size: 0.8rem;
}
.header-actions .btn-primary:hover {
    background: #e0b032;
    border-color: #e0b032;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    background: #0a0a0a;
    color: #ffffff;
    padding: 3rem 0 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-text {
    padding-right: 0.5rem;
}

.hero-badge {
    background: #0a0a0a;
    color: #ffffff;
    padding: 0.2rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    border: 1px solid;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: auto;
}
.hero-text p {
    color: #bbb;
    max-width: 500px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.hero-stats div span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5c842;
}
.hero-stats div small {
    color: #888;
    font-weight: 300;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ========================================
   TRUST SECTION - ROW FORMAT
   ======================================== */
.trust-section {
    background: #0a0a0a;
    padding: 2rem 0 3rem;
    border-bottom: 1px solid rgba(245, 200, 66, 0.08);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 1.2rem; */
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0px;
    border: 1px solid rgb(102, 102, 102);
    transition: 0.3s;
    flex: 1 1 0%;
    min-width: 180px;
    max-width: 260px;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 200, 66, 0.2);
    transform: translateY(-3px);
}

.trust-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 200, 66, 0.1);
    border-radius: 10px;
    color: #f5c842;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: rgba(245, 200, 66, 0.2);
    transform: scale(1.05);
}

.trust-content h4 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.05rem;
}

.trust-content p {
    color: #999;
    font-size: 0.75rem;
    margin: 0;
}

/* ========================================
   MARKET OUTLOOK
   ======================================== */
.market-outlook {
    background: #0a0a0a;
    padding: 4rem 0;
    border-top: 1px solid rgba(245, 200, 66, 0.08);
    border-bottom: 1px solid rgba(245, 200, 66, 0.08);
}

.market-header {
    text-align: center;
    margin-bottom: 3rem;
}

.market-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.live-badge {
    background: rgba(245, 200, 66, 0.1);
    color: #f5c842;
    padding: 0.4rem 1.8rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    border: 1px solid rgba(245, 200, 66, 0.12);
}

.live-badge .pulse {
    color: #ff4757;
    font-size: 0.5rem;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.market-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0.2rem 0;
    text-transform: uppercase;
    font-family: auto;
}

.market-main-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #f5c842, #e0b032);
    margin: 0.6rem auto 0;
    border-radius: 4px;
}

.market-subtitle {
    color: #999;
    font-size: 1rem;
    max-width: 650px;
    margin: 0.5rem auto 0;
    line-height: 1.7;
}

.market-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1050px;
    margin: 0 auto;
}

.card-outlook {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-outlook:hover {
    transform: translateY(-6px);
    border-color: #f5c842;
    background: rgba(255, 255, 255, 0.06);
}

.card-outlook h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    margin: 0.5rem 0 0.8rem;
    font-weight: 600;
    font-size: 0.85rem;
    flex-wrap: wrap;
}
.trend .trend-icon { font-size: 0.8rem; }
.trend .trend-label { font-weight: 500; color: #aaa; }
.trend .trend-value { font-weight: 700; }

.trend.bullish {
    background: rgba(46, 125, 50, 0.15);
    color: #66bb6a;
}
.trend.bullish .trend-value { color: #66bb6a; }
.trend.bullish .trend-icon { color: #66bb6a; }

.trend.positive {
    background: rgba(21, 101, 192, 0.15);
    color: #42a5f5;
}
.trend.positive .trend-value { color: #42a5f5; }
.trend.positive .trend-icon { color: #42a5f5; }

.trend.neutral {
    background: rgba(245, 127, 23, 0.15);
    color: #ffa726;
}
.trend.neutral .trend-value { color: #ffa726; }
.trend.neutral .trend-icon { color: #ffa726; }

.member-only {
    color: #888;
    font-size: 0.8rem;
    margin: 0.6rem 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.member-only i { color: #f5c842; }

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f5c842;
    color: #0a0a0a;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0.4rem 0 0.6rem;
    border: 2px solid #f5c842;
    cursor: pointer;
}
.btn-register:hover {
    background: #e0b032;
    border-color: #e0b032;
}

.register-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f5c842;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.register-link:hover {
    color: #d4a830;
    gap: 8px;
}
.register-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.register-link:hover i { transform: translateX(4px); }

/* ========================================
   SERVICES
   ======================================== */
.services {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(245, 200, 66, 0.08);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.service-item {
    text-align: center;
    padding: 1.8rem 1.2rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.service-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #f5c842;
    transform: translateY(-4px);
}
.service-item i {
    font-size: 2.5rem;
    color: #f5c842;
    margin-bottom: 0.6rem;
}
.service-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #ffffff;
    font-weight: 700;
}
.service-item p {
    color: #999;
    font-size: 0.85rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(245, 200, 66, 0.08);
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}
.testimonial-card .stars {
    color: #f5c842;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}
.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: #ffffff;
}
.testimonial-card cite span {
    color: #f5c842;
}

/* ========================================
   PERFORMANCE
   ======================================== */
.performance {
    background: #0a0a0a;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.performance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(245, 200, 66, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 200, 66, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.performance-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.performance-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.track-badge {
    background: rgba(245, 200, 66, 0.1);
    color: #f5c842;
    padding: 0.4rem 1.8rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    border: 1px solid rgba(245, 200, 66, 0.12);
}
.track-badge i { font-size: 0.8rem; }

.performance-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0.2rem 0;
    text-transform: uppercase;
    font-family: auto;
}
.performance-main-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #f5c842, #e0b032);
    margin: 0.6rem auto 0;
    border-radius: 4px;
}

.performance-subtitle {
    color: #999;
    font-size: 1rem;
    max-width: 650px;
    margin: 0.5rem auto 0;
    line-height: 1.7;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.performance-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem 1.2rem;
    text-align: center;
    transition: all 0.4s ease;
}
.performance-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 200, 66, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.performance-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 200, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(245, 200, 66, 0.12);
}
.performance-card:hover .performance-icon {
    background: rgba(245, 200, 66, 0.2);
    border-color: #f5c842;
    transform: scale(1.05) rotate(-5deg);
}
.performance-icon i {
    font-size: 1.6rem;
    color: #f5c842;
}

.performance-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.3rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.performance-number .counter {
    background: linear-gradient(135deg, #f5c842, #e0b032);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.performance-number .percent,
.performance-number .plus,
.performance-number .years {
    color: #f5c842;
    -webkit-text-fill-color: #f5c842;
    font-size: 1.6rem;
}

.performance-card h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.performance-card p {
    color: #999;
    font-size: 0.8rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq-section {
    background: #0a0a0a;
    padding: 4rem 0;
    border-top: 1px solid rgba(245, 200, 66, 0.08);
    border-bottom: 1px solid rgba(245, 200, 66, 0.08);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.faq-badge {
    background: rgba(245, 200, 66, 0.1);
    color: #f5c842;
    padding: 0.4rem 1.8rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    border: 1px solid rgba(245, 200, 66, 0.12);
}
.faq-badge i { font-size: 0.8rem; }

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0.2rem 0;
    text-transform: uppercase;
    font-family: auto;
}
.faq-main-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f5c842, #e0b032);
    margin: 0.6rem auto 0;
    border-radius: 4px;
}

.faq-subtitle {
    color: #999;
    font-size: 1rem;
    max-width: 650px;
    margin: 0.5rem auto 0;
    line-height: 1.7;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(245, 200, 66, 0.2);
}
.faq-item.active {
    border-color: rgba(245, 200, 66, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: rgba(245, 200, 66, 0.03);
}
.faq-item.active .faq-question {
    background: rgba(245, 200, 66, 0.05);
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 200, 66, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #f5c842;
}
.faq-item.active .faq-icon {
    background: rgba(245, 200, 66, 0.2);
    transform: rotate(90deg);
}
.faq-icon i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem 1.5rem;
}

.faq-answer p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   EXCLUSIVE ACCESS
   ======================================== */
.exclusive-section {
    background: #0a0a0a;
    padding: 4rem 0;
    border-top: 1px solid rgba(245, 200, 66, 0.08);
    border-bottom: 1px solid rgba(245, 200, 66, 0.08);
    position: relative;
    overflow: hidden;
}

.exclusive-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(245, 200, 66, 0.03), transparent 60%);
    pointer-events: none;
}

.exclusive-wrapper {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245, 200, 66, 0.08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.exclusive-wrapper:hover {
    border-color: rgba(245, 200, 66, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 200, 66, 0.1);
    color: #f5c842;
    padding: 0.3rem 1.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid rgba(245, 200, 66, 0.12);
    margin-bottom: 1rem;
}
.exclusive-badge i { font-size: 0.75rem; }

.exclusive-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-family: auto;
}
.exclusive-title span {
    color: #f5c842;
    position: relative;
}
.exclusive-title span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f5c842, #e0b032);
    border-radius: 4px;
    opacity: 0.4;
}

.exclusive-description {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.exclusive-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.exclusive-btn {
    padding: 0.7rem 2rem;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.exclusive-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}
.exclusive-btn:hover i {
    transform: translateX(4px);
}

/* ========================================
   FOOTER
   ======================================== */
.main-footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 3rem 0 1.2rem;
}

.footer-flex {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-col .logo {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: #ffffff;
}
.footer-col .logo i { color: #f5c842; }
.footer-col p {
    font-size: 0.85rem;
    max-width: 250px;
    color: #888;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
}
.social-icons a {
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.social-icons a:hover {
    background: #f5c842;
    color: #0a0a0a;
    transform: translateY(-3px);
    border-color: #f5c842;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.footer-col ul li {
    margin-bottom: 0.4rem;
}
.footer-col ul li a {
    color: #888;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}
.footer-col ul li a:hover {
    color: #f5c842;
    padding-left: 4px;
}
.footer-col ul li i {
    width: 20px;
    color: #f5c842;
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    padding-top: 1.2rem;
    color: #666;
    font-size: 0.8rem;
}

/* ========================================
   MODALS (Smaller Size)
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: modalFadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid rgba(245, 200, 66, 0.15);
    border-radius: 18px;
    padding: 1.8rem;
    max-width: 420px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-content::-webkit-scrollbar {
    width: 3px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #f5c842;
    border-radius: 4px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #999;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    background: rgba(245, 200, 66, 0.15);
    border-color: #f5c842;
    color: #f5c842;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.modal-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}
.modal-logo i { color: #f5c842; }

.modal-header h2 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.modal-header p {
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.1rem;
}

.trial-badge {
    display: inline-block;
    background: rgba(245, 200, 66, 0.15);
    color: #f5c842;
    padding: 0.15rem 1rem;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(245, 200, 66, 0.12);
    margin-bottom: 0.3rem;
}

.modal-form {
    margin-top: 0.3rem;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.form-group label i {
    color: #f5c842;
    width: 16px;
    font-size: 0.75rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: auto;
}
.form-group input::placeholder {
    color: #666;
}
.form-group input:focus,
.form-group select:focus {
    border-color: #f5c842;
    background: rgba(255, 255, 255, 0.08);
}
.form-group select {
    color: #999;
    appearance: none;
    cursor: pointer;
}
.form-group select option {
    background: #0a0a0a;
    color: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}
.form-group.half {
    margin-bottom: 0.8rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.3rem 0 1rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 0.8rem;
    cursor: pointer;
}
.remember-me input[type="checkbox"] {
    accent-color: #f5c842;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.forgot-password {
    color: #f5c842;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.forgot-password:hover {
    color: #e0b032;
    text-decoration: underline;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.8rem;
    cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
    accent-color: #f5c842;
    width: 14px;
    height: 14px;
    cursor: pointer;
    flex-shrink: 0;
}
.checkbox-group label a {
    color: #f5c842;
}
.checkbox-group label a:hover {
    text-decoration: underline;
}

.btn-login,
.btn-trial {
    width: 100%;
    padding: 0.7rem;
    background: #f5c842;
    color: #0a0a0a;
    border: 2px solid #f5c842;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: auto;
}
.btn-login:hover,
.btn-trial:hover {
    background: #e0b032;
    border-color: #e0b032;
    transform: translateY(-2px);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.2rem 0;
}
.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.form-divider span {
    color: #666;
    font-size: 0.75rem;
    font-weight: 500;
}

.signup-text {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}
.signup-text a {
    color: #f5c842;
    font-weight: 600;
}
.signup-text a:hover {
    text-decoration: underline;
}

.trial-note {
    text-align: center;
    color: #888;
    font-size: 0.8rem;
    margin-top: 0.8rem;
}
.trial-note i {
    color: #f5c842;
    margin-right: 4px;
}

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

/* Tablet */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 2.5rem; }
    .hero-img { max-width: 450px; }
    .market-cards { gap: 1.2rem; }
    .performance-grid { gap: 1.2rem; }
    .exclusive-title { font-size: 2rem; }
    .exclusive-wrapper { padding: 2.5rem 2rem; }
}

/* Mobile & Tablet */
@media (max-width: 900px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        align-items: flex-start;
        padding: 4.5rem 1.8rem 1.8rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        gap: 1.2rem;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }

    .nav-menu ul {
        flex-direction: column;
        gap: 0.3rem;
        width: 100%;
    }
    .nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 0.4rem 0;
    }
    .nav-menu ul li a {
        font-size: 1rem;
        display: block;
        width: 100%;
        color: #ffffff;
        padding: 0.2rem 0;
    }
    .nav-menu ul li a:hover,
    .nav-menu ul li a.active {
        color: #f5c842;
        border-bottom-color: transparent;
    }

    .header-actions { display: none; }

    .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
        margin-top: 0.8rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-actions-mobile .btn-outline {
        border-color: #f5c842;
        color: #f5c842;
        text-align: center;
        padding: 0.6rem;
        width: 100%;
        font-size: 0.85rem;
    }
    .nav-actions-mobile .btn-outline:hover {
        background: #f5c842;
        color: #0a0a0a;
    }
    .nav-actions-mobile .btn-primary {
        background: #f5c842;
        color: #0a0a0a;
        text-align: center;
        padding: 0.6rem;
        width: 100%;
        border: 2px solid #f5c842;
        font-size: 0.85rem;
    }
    .nav-actions-mobile .btn-primary:hover {
        background: #e0b032;
        border-color: #e0b032;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-text { padding-right: 0; }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-img { max-width: 350px; margin: 0 auto; }

    .trust-item {
        min-width: 150px;
        padding: 0.6rem 1rem;
        flex: 0 1 auto;
    }
    .trust-row { gap: 0.8rem; }

    .market-cards { grid-template-columns: repeat(2, 1fr); }
    .market-main-title { font-size: 2rem; }

    .performance-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
    .performance-main-title { font-size: 2rem; }

    .footer-flex { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group.half { margin-bottom: 0.8rem; }

    .exclusive-wrapper { padding: 2rem 1.5rem; }
    .exclusive-title { font-size: 1.6rem; }
    .exclusive-description { font-size: 0.9rem; }
    .exclusive-btn { padding: 0.6rem 1.5rem; font-size: 0.85rem; }
}

/* Mobile Small */
@media (max-width: 600px) {
    .hero-text h1 { font-size: 1.8rem; }
    .hero { padding: 2rem 0 3rem; min-height: auto; }
    .hero-img { max-width: 100%; }
    .hero-stats { gap: 1.2rem; }
    .hero-stats div span { font-size: 1.3rem; }
    .hero-stats div small { font-size: 0.65rem; }

    .trust-item {
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        padding: 0.6rem 1rem;
    }
    .trust-row { flex-direction: column; align-items: center; }

    .market-cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .market-main-title { font-size: 1.5rem; }
    .live-badge { font-size: 0.65rem; padding: 0.25rem 1rem; }

    .section { padding: 2.5rem 0; }
    .section-title h2 { font-size: 1.6rem; }
    .section-title p { font-size: 0.9rem; }

    .performance-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; max-width: 100%; }
    .performance-main-title { font-size: 1.4rem; }
    .performance-card { padding: 1.2rem 0.6rem; }
    .performance-number { font-size: 1.8rem; }
    .performance-number .percent,
    .performance-number .years { font-size: 1rem; }
    .performance-number .plus { font-size: 1.2rem; }
    .performance-icon { width: 44px; height: 44px; }
    .performance-icon i { font-size: 1.2rem; }
    .performance-card h4 { font-size: 0.8rem; }
    .performance-card p { font-size: 0.7rem; }
    .track-badge { font-size: 0.6rem; padding: 0.2rem 0.8rem; }

    .faq-main-title { font-size: 1.3rem; }
    .faq-question { padding: 0.7rem 1rem; gap: 0.5rem; }
    .faq-question h3 { font-size: 0.85rem; }
    .faq-item.active .faq-answer { padding: 0 1rem 0.8rem 1rem; }
    .faq-answer p { font-size: 0.8rem; line-height: 1.6; }
    .faq-icon { width: 22px; height: 22px; }
    .faq-icon i { font-size: 0.6rem; }
    .faq-badge { font-size: 0.6rem; padding: 0.2rem 0.8rem; }

    .testimonial-card { padding: 1.5rem 1.2rem; }
    .testimonial-card blockquote { font-size: 0.95rem; }

    .footer-flex { grid-template-columns: 1fr; gap: 1.2rem; }
    .footer-col p { max-width: 100%; }

    .nav-menu { width: 85%; padding: 3.5rem 1.2rem 1.2rem; }

    .modal-content { padding: 1.2rem; max-width: 95%; border-radius: 14px; }
    .modal-header h2 { font-size: 1.1rem; }
    .modal-close { top: 10px; right: 12px; width: 26px; height: 26px; font-size: 0.85rem; }
    .btn-login, .btn-trial { padding: 0.6rem; font-size: 0.8rem; }
    .modal-logo { font-size: 1.1rem; }
    .form-group input, .form-group select { padding: 0.5rem 0.7rem; font-size: 0.8rem; }
    .form-group label { font-size: 0.75rem; }

    .exclusive-wrapper { padding: 1.5rem 1rem; border-radius: 16px; }
    .exclusive-title { font-size: 1.2rem; }
    .exclusive-description { font-size: 0.8rem; }
    .exclusive-badge { font-size: 0.55rem; padding: 0.2rem 0.8rem; }
    .exclusive-btn { font-size: 0.8rem; padding: 0.5rem 1.2rem; width: 100%; max-width: 100%; justify-content: center; }
    .exclusive-buttons { flex-direction: column; align-items: center; width: 100%; }

    .contact-wrapper { padding: 1rem; }
    .contact-buttons { flex-direction: column; align-items: center; }
    .contact-buttons a { width: 100%; text-align: center; }
}
/* ========================================
   MARKET PERFORMANCE (GRAPH WITH TABS)
   ======================================== */
.market-performance {
    background: #0a0a0a;
    padding: 4rem 0;
    border-top: 1px solid rgba(245, 200, 66, 0.08);
    border-bottom: 1px solid rgba(245, 200, 66, 0.08);
}

.chart-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Chart Header - Title on Left, Tabs on Right */
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.chart-header-left {
    flex: 1;
}

.performance-overview-title {
    font-size: 0.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: auto;
    margin: 0;
}
.performance-overview-title span {
    color: #f5c842;
    font-weight: 300;
}

.performance-overview-subtitle {
    color: #888;
    font-size: 0.8rem;
    margin-top: 0.2rem;
    font-style: italic;
    margin-bottom: 0;
}

/* Chart Tabs */
.chart-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
    padding-top: 0.2rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #999;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
.tab-btn.active {
    background: rgba(245, 200, 66, 0.15);
    border-color: #f5c842;
    color: #f5c842;
}

.tab-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.gold-dot { background: #f5c842; }
.silver-dot { background: #c0c0c0; }
.usd-dot { background: #4ecdc4; }

/* Chart Area */
.chart-wrapper {
    display: flex;
    gap: 1rem;
    position: relative;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 2rem 0;
    min-width: 55px;
    flex-shrink: 0;
}

.y-label {
    color: #666;
    font-size: 0.7rem;
    font-weight: 500;
    text-align: right;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.chart-grid {
    flex: 1;
    position: relative;
    padding-bottom: 2.2rem;
}

.grid-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.grid-line:nth-child(1) { top: 0; }
.grid-line:nth-child(2) { top: 25%; }
.grid-line:nth-child(3) { top: 50%; }
.grid-line:nth-child(4) { top: 75%; }
.grid-line:nth-child(5) { top: 100%; }

.chart-svg {
    width: 100%;
    height: 300px;
    display: block;
}

/* Chart Lines - Hidden by default, shown when active */
.chart-line {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.15;
    transition: opacity 0.5s ease;
}
.chart-line.active-line {
    opacity: 1;
}

.gold-line {
    stroke: #f5c842;
    filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.25));
}
.silver-line {
    stroke: #c0c0c0;
    filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.15));
}
.usd-line {
    stroke: #4ecdc4;
    filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.15));
}

/* Chart Areas - Hidden by default */
.chart-area {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.chart-area.active-area {
    opacity: 0.06;
}
.gold-area { fill: #f5c842; }
.silver-area { fill: #c0c0c0; }
.usd-area { fill: #4ecdc4; }

/* Data Points - Hidden by default */
.data-point {
    stroke: #0a0a0a;
    stroke-width: 2;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.data-point.active-point {
    opacity: 1;
}
.data-point:hover {
    r: 8;
    stroke-width: 3;
}
.gold-point { fill: #f5c842; }
.gold-point:hover { fill: #ffffff; stroke: #f5c842; }
.silver-point { fill: #c0c0c0; }
.silver-point:hover { fill: #ffffff; stroke: #c0c0c0; }
.usd-point { fill: #4ecdc4; }
.usd-point:hover { fill: #ffffff; stroke: #4ecdc4; }

.x-axis {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    margin-top: 0.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.x-label {
    color: #666;
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    padding-top: 0.5rem;
}

/* ========================================
   RESPONSIVE - GRAPH
   ======================================== */
@media (max-width: 1024px) {
    .chart-container { padding: 1.2rem 1rem 0.8rem; }
    .performance-overview-title { font-size: 0.3rem; }
}

@media (max-width: 768px) {
    .market-performance { padding: 3rem 0; }
    .chart-container { padding: 1rem 0.5rem 0.5rem; border-radius: 12px; }
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .chart-tabs {
        width: 100%;
        justify-content: flex-start;
        gap: 0.4rem;
    }
    .tab-btn {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }
    .performance-overview-title { font-size: 1.1rem; }
    .performance-overview-subtitle { font-size: 0.7rem; }
    .y-axis { min-width: 40px; }
    .y-label { font-size: 0.6rem; height: 60px; padding-right: 5px; }
    .chart-svg { height: 220px; }
    .chart-line { stroke-width: 2; }
    .data-point { r: 3; }
    .data-point:hover { r: 5; }
    .x-label { font-size: 0.6rem; }
    .tab-dot { width: 8px; height: 8px; }
}

@media (max-width: 600px) {
    .chart-container { padding: 0.8rem 0.3rem 0.3rem; border-radius: 10px; }
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
    .chart-tabs {
        gap: 0.3rem;
        flex-wrap: wrap;
    }
    .tab-btn {
        font-size: 0.55rem;
        padding: 0.2rem 0.6rem;
        gap: 4px;
    }
    .performance-overview-title { font-size: 0.6rem; }
    .performance-overview-subtitle { font-size: 0.6rem; }
    .y-axis { min-width: 32px; }
    .y-label { font-size: 0.5rem; height: 48px; padding-right: 4px; }
    .chart-svg { height: 160px; }
    .chart-line { stroke-width: 1.5; }
    .data-point { r: 2; }
    .data-point:hover { r: 4; }
    .x-label { font-size: 0.5rem; padding-top: 0.3rem; }
    .tab-dot { width: 6px; height: 6px; }
}