/* ===== ROOT VARIABLES ===== */
:root {
    --dark-bg: #0a0a0f;
    --dark-card: #12121a;
    --dark-border: #1e1e2e;
    --gold: #f0b429;
    --gold-dark: #c88f00;
    --text-primary: #ffffff;
    --text-secondary: #8888aa;
    --success: #00c896;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

.gold { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ===== BUTTONS ===== */
.btn-outline {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.btn-solid {
    padding: 0.5rem 1.2rem;
    background: var(--gold);
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-solid:hover { background: var(--gold-dark); }

.btn-solid.large, .btn-outline.large {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ===== SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
}

/* ===== EACH SLIDE ===== */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* ===== SLIDE BACKGROUND IMAGE ===== */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 6s ease-in-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

/* ===== DARK OVERLAY ON IMAGE ===== */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.65) 50%,
        rgba(0,0,0,0.8) 100%
    );
    z-index: 1;
}

/* ===== SLIDE TEXT CONTENT ===== */
.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 850px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.hero-slide.active .hero-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide-content .hero-badge {
    display: inline-block;
    background: rgba(240,180,41,0.15);
    border: 1px solid rgba(240,180,41,0.4);
    color: var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-slide-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== ARROW CONTROLS ===== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.slider-arrow.left  { left: 2rem; }
.slider-arrow.right { right: 2rem; }

/* ===== DOTS ===== */
.slider-dots {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

.dot:hover { background: rgba(255,255,255,0.7); }

/* ===== STATS BAR ===== */
.hero-stats-bar {
    position: relative;
    z-index: 10;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(240,180,41,0.2);
    padding: 1.2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

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

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* ===== SECTIONS ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===== PLANS ===== */
.plans { background: var(--dark-card); }

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

.plan-card {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.plan-card.popular { border-color: var(--gold); }

.popular-badge {
    background: var(--gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    padding: 0.3rem;
}

.plan-header {
    padding: 1.5rem;
    text-align: center;
    font-size: 2rem;
}

.plan-header.bronze { background: linear-gradient(135deg, #3d2b1f, #6b4226); }
.plan-header.silver { background: linear-gradient(135deg, #1a1a2e, #2d2d4e); }
.plan-header.gold   { background: linear-gradient(135deg, #3d2e00, #7a5c00); }
.plan-header.platinum { background: linear-gradient(135deg, #0d1f3c, #1a3a6b); }

.plan-header h3 {
    font-size: 1.3rem;
    margin-top: 0.5rem;
    color: var(--gold);
}

.plan-body { padding: 1.5rem; }

.plan-roi {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success);
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-roi span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features li i { color: var(--success); }

.btn-plan {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: var(--gold);
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-plan:hover { background: var(--gold-dark); }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--dark-bg); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step {
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    transition: border-color 0.3s;
}

.step:hover { border-color: var(--gold); }

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(240, 180, 41, 0.15);
    line-height: 1;
}

.step-icon {
    font-size: 2rem;
    color: var(--gold);
    margin: 0.5rem 0 1rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step p { color: var(--text-secondary); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--dark-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
}
/* ===== CRYPTO TICKER ===== */
.crypto-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0d0d15;
    border-bottom: 1px solid var(--dark-border);
    z-index: 9999;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    animation: tickerScroll 60s linear infinite;
    white-space: nowrap;
    gap: 2rem;
    padding: 0 2rem;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.ticker-name {
    font-weight: 700;
    color: var(--text-primary);
}

.ticker-price {
    color: var(--text-primary);
    font-weight: 600;
}

.ticker-change.up   { color: #00c896; }
.ticker-change.down { color: #ff5050; }

.ticker-divider {
    color: var(--dark-border);
    font-size: 0.7rem;
}

.ticker-loading {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Push navbar down to make room for ticker */
.navbar {
    top: 36px !important;
}

/* Push hero down to make room for ticker + navbar */
.hero {
    padding-top: 10rem !important;
}
/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--dark-bg);
    padding: 5rem 0;
    border-top: 1px solid var(--dark-border);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== BADGE ===== */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(240,180,41,0.1);
    border: 1px solid rgba(240,180,41,0.3);
    color: var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

/* ===== HEADING ===== */
.about-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

/* ===== INTRO TEXT ===== */
.about-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 900px;
}

/* ===== DIVIDER ===== */
.about-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );
    margin: 3rem 0;
    opacity: 0.4;
}

/* ===== CARDS GRID ===== */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

/* ===== SINGLE CARD ===== */
.about-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.3s;
}

.about-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(240,180,41,0.1);
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(240,180,41,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.about-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    line-height: 1.4;
}

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

/* ===== ABOUT LIST ===== */
.about-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-list li i {
    color: var(--success);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===== BOTTOM SECTION ===== */
.about-bottom {
    background: linear-gradient(135deg, #0d1117, #1a1a2e);
    border: 1px solid rgba(240,180,41,0.2);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.about-bottom-icon {
    width: 60px;
    height: 60px;
    background: rgba(240,180,41,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.about-bottom-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--gold);
}

.about-bottom-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== ABOUT STATS ===== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-stat {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.about-stat:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.about-stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(240,180,41,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    margin: 0 auto 0.8rem;
}

.about-stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.about-stat-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-cards  { grid-template-columns: 1fr 1fr; }
    .about-stats  { grid-template-columns: repeat(2, 1fr); }
    .about-heading { font-size: 2rem; }
}

@media (max-width: 600px) {
    .about-cards   { grid-template-columns: 1fr; }
    .about-stats   { grid-template-columns: repeat(2, 1fr); }
    .about-bottom  { flex-direction: column; }
    .about-heading { font-size: 1.6rem; }
}
/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--dark-bg);
    padding: 5rem 0;
    border-top: 1px solid var(--dark-border);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== BADGE ===== */
.t-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(240,180,41,0.1);
    border: 1px solid rgba(240,180,41,0.3);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== RATING SUMMARY BAR ===== */
.rating-summary {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.big-score {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.rating-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-divider {
    width: 1px;
    height: 50px;
    background: var(--dark-border);
}

.rating-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.rating-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.rating-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===== MAIN GRID ===== */
.t-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ===== STACKED COLUMN ===== */
.t-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ===== BOTTOM ROW ===== */
.t-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ===== TESTIMONIAL CARD ===== */
.t-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.t-card:hover {
    border-color: rgba(240,180,41,0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ===== FEATURED CARD ===== */
.t-featured {
    background: linear-gradient(
        145deg,
        #12121a,
        #1a1a2e
    );
    border-color: rgba(240,180,41,0.3);
}

.t-featured:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(240,180,41,0.15);
}

.t-featured .t-text {
    font-size: 1rem;
}

/* ===== CARD TOP ROW ===== */
.t-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== STARS ===== */
.t-stars {
    display: flex;
    gap: 0.2rem;
}

.t-stars i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* ===== TAG ===== */
.t-tag {
    background: rgba(240,180,41,0.08);
    border: 1px solid rgba(240,180,41,0.2);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* ===== QUOTE ICON ===== */
.t-quote-icon {
    width: 38px;
    height: 38px;
    background: rgba(240,180,41,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.t-quote-icon.small {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
    border-radius: 8px;
}

/* ===== TEXT ===== */
.t-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}

/* ===== AUTHOR ===== */
.t-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dark-border);
    margin-top: auto;
}

/* ===== AVATARS ===== */
.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.t-avatar-blue   { background: linear-gradient(135deg, #0066ff, #0044bb); }
.t-avatar-purple { background: linear-gradient(135deg, #8844ee, #6622cc); }
.t-avatar-green  { background: linear-gradient(135deg, #00aa66, #008844); }
.t-avatar-gold   { background: linear-gradient(135deg, #f0b429, #c88f00); color: #000; }
.t-avatar-red    { background: linear-gradient(135deg, #ee4444, #cc2222); }

/* ===== AUTHOR INFO ===== */
.t-author-info {
    flex: 1;
}

.t-author-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.t-author-info span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.t-author-info span i {
    font-size: 0.65rem;
    color: var(--gold);
}

/* ===== VERIFIED BADGE ===== */
.t-verified {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: var(--success);
    white-space: nowrap;
    font-weight: 600;
}

.t-verified i {
    font-size: 0.78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .t-grid       { grid-template-columns: 1fr; }
    .t-bottom-row { grid-template-columns: 1fr; }
    .rating-summary { gap: 1.5rem; }
    .rating-divider { display: none; }
}

@media (max-width: 640px) {
    .t-bottom-row  { grid-template-columns: 1fr; }
    .rating-summary { flex-direction: column; gap: 1rem; }
}
/* ===== TESTIMONIAL IMAGE AVATARS ===== */
.t-avatar-img {
    padding: 0;
    overflow: hidden;
    border: 2px solid var(--dark-border);
}

.t-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.t-avatar-gold-border {
    border: 2px solid var(--gold) !important;
    box-shadow: 0 0 12px rgba(240,180,41,0.3);
}
/* ===== LIVE STATISTICS SECTION ===== */
.stats-section {
    background: linear-gradient(
        135deg,
        #0d1117 0%,
        #1a1a2e 50%,
        #0d1117 100%
    );
    padding: 5rem 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.stats-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.stats-section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 1rem;
    line-height: 1.3;
}

/* ===== LIVE STATS GRID ===== */
.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

/* ===== SINGLE STAT CARD ===== */
.live-stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.live-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.live-stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    background: rgba(240,180,41,0.05);
}

.live-stat-card:hover::before {
    opacity: 1;
}

.live-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(240,180,41,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    margin: 0 auto 0.8rem;
}

.live-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
    font-variant-numeric: tabular-nums;
}

.live-stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.live-stat-sub {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

/* ===== ONLINE BAR ===== */
.online-bar {
    background: rgba(0,200,150,0.05);
    border: 1px solid rgba(0,200,150,0.2);
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0,200,150,0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(0,200,150,0);
    }
}

.online-bar strong {
    color: var(--success);
}

.online-divider {
    color: var(--dark-border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .live-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .live-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-section-header h2 {
        font-size: 1.6rem;
    }
}
/* ===== SECURITY SECTION ===== */
.security-section {
    background: var(--dark-card);
    padding: 5rem 0;
    border-top: 1px solid var(--dark-border);
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.security-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.security-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===== SECURITY GRID ===== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* ===== SECURITY BADGE CARD ===== */
.security-badge-card {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.security-badge-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.security-badge-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(240,180,41,0.1);
}

.security-badge-card:hover::after {
    transform: scaleX(1);
}

.featured-security {
    border-color: var(--gold);
    background: linear-gradient(
        135deg,
        rgba(240,180,41,0.05),
        var(--dark-bg)
    );
}

.security-badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(240,180,41,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.gold-icon {
    background: rgba(240,180,41,0.2) !important;
}

.security-badge-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.security-badge-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.security-badge-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(0,200,150,0.1);
    border: 1px solid rgba(0,200,150,0.2);
    color: var(--success);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
}

.gold-tag {
    background: rgba(240,180,41,0.1) !important;
    border-color: rgba(240,180,41,0.3) !important;
    color: var(--gold) !important;
}

/* ===== TRUST BADGES STRIP ===== */
.trust-badges-strip {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.trust-badge i {
    color: var(--success);
    font-size: 0.9rem;
}

.trust-badge-divider {
    width: 1px;
    height: 20px;
    background: var(--dark-border);
}

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

@media (max-width: 580px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
    .trust-badges-strip {
        gap: 0.8rem;
    }
    .trust-badge-divider {
        display: none;
    }
}
/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--dark-bg);
    padding: 5rem 0;
    border-top: 1px solid var(--dark-border);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.faq-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.faq-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===== FAQ LAYOUT ===== */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* ===== FAQ ITEM ===== */
.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(240,180,41,0.3);
}

.faq-item.open {
    border-color: var(--gold);
}

/* ===== FAQ QUESTION BUTTON ===== */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.faq-question span {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-question i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-item.open .faq-question span {
    color: var(--gold);
}

/* ===== FAQ ANSWER ===== */
.faq-answer {
    display: none;
    border-top: 1px solid var(--dark-border);
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    padding: 1.2rem 1.4rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== FAQ CTA ===== */
.faq-cta {
    background: linear-gradient(135deg, #1a1a2e, #0d2137);
    border: 1px solid rgba(240,180,41,0.2);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(240,180,41,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.faq-cta-content { flex: 1; }

.faq-cta-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.faq-cta-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.faq-cta-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.faq-cta-buttons .btn-solid,
.faq-cta-buttons .btn-outline {
    padding: 0.7rem 1.2rem;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .faq-layout { grid-template-columns: 1fr; }
    .faq-cta {
        flex-direction: column;
        text-align: center;
    }
    .faq-cta-buttons { justify-content: center; }
}
/* ===== 2FA BOX ===== */
.twofa-box {
    text-align: center;
    padding: 1rem 0;
}

.twofa-icon {
    width: 70px;
    height: 70px;
    background: rgba(240,180,41,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0 auto 1.5rem;
}

.twofa-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.twofa-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.twofa-box .form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}