@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #060b19;
    --panel-bg: #0d1323;
    --panel-border: #1e293b;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --accent-yellow: #facc15;
    --accent-yellow-dark: #eab308;
    --accent-green: #22c55e;
    --accent-blue: #3b82f6;
    --accent-purple: #a855f7;
    --font-main: 'Inter', sans-serif;
    --border-radius: 12px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(250, 204, 21, 0); }
    100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-white);
    line-height: 1.5;
    font-size: 14px;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent { color: var(--accent-yellow); }
.text-gray { color: var(--text-gray); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    gap: 8px;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background-color: var(--accent-yellow);
    color: #000;
}
.btn-primary:hover { background-color: var(--accent-yellow-dark); box-shadow: 0 5px 15px rgba(250, 204, 21, 0.3); }

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
}
.btn-outline:hover { background-color: rgba(250, 204, 21, 0.1); box-shadow: 0 5px 15px rgba(250, 204, 21, 0.2); }

/* Header */
.main-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.main-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 11, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    padding-bottom: 5px;
    text-decoration: none;
}
.main-nav a.active {
    border-bottom: 2px solid var(--accent-yellow);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn, .close-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-white);
}

.cursor {
    display: inline-block;
    width: 3px;
    animation: blink 1s step-end infinite;
    color: var(--accent-yellow);
    margin-left: 2px;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Hero */
.hero {
    display: flex;
    padding: 40px 0 60px;
    gap: 40px;
    align-items: center;
}
.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 0.8s ease forwards;
}
.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero p.subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 450px;
}
.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}
.hero-btns .btn {
    padding: 12px 24px;
    border-radius: 30px;
}
.btn-learn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 20px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}
.stat-item:hover { transform: translateY(-3px); }
.stat-item:hover .stat-icon i { transform: scale(1.15) rotate(5deg); }
.stat-icon i { transition: transform 0.3s ease; }
.stat-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex; justify-content: center; align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}
.stat-text h4 {
    font-size: 10px;
    color: var(--text-gray);
    font-weight: 500;
}
.stat-text p {
    font-size: 15px;
    font-weight: 700;
}

.hero-image {
    flex: 1;
    height: 400px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    border-radius: 20px;
    display: flex; justify-content: center; align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards, float 6s ease-in-out infinite 1s;
    position: relative;
}

.hero-image .h-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
}

/* Features Strip */
.features-strip {
    background-color: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--border-radius);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}
.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}
.feature:hover { transform: translateY(-3px); }
.feature:hover .feature-icon i { transform: scale(1.15) rotate(5deg); }
.feature-icon i { transition: transform 0.3s ease; }
.feature-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}
.feature-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
}
.feature-text p {
    font-size: 11px;
    color: var(--text-gray);
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 5fr 3fr 2fr;
    gap: 20px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}
.panel {
    background-color: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--border-radius);
    padding: 20px;
}
.panel-title {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Packages */
.packages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.pkg {
    background-color: #070d19;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}
.pkg:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.15);
}
.pkg-starter { border-top: 2px solid var(--accent-green); }
.pkg-pro { border-top: 2px solid var(--accent-blue); }
.pkg-elite { border-top: 2px solid var(--accent-purple); }
.pkg-premium { border-top: 2px solid var(--accent-yellow); }

.pkg-name { font-size: 11px; font-weight: 700; margin-bottom: 5px; text-transform: uppercase; }
.pkg-starter .pkg-name { color: var(--accent-green); }
.pkg-pro .pkg-name { color: var(--accent-blue); }
.pkg-elite .pkg-name { color: var(--accent-purple); }
.pkg-premium .pkg-name { color: var(--accent-yellow); }

.pkg-icon { font-size: 18px; margin-bottom: 10px; }
.pkg-price { font-size: 18px; font-weight: 700; margin-bottom: 15px; }
.pkg-price span { font-size: 10px; color: var(--text-gray); font-weight: 500; }

.pkg-features { text-align: left; margin-bottom: 15px; }
.pkg-features li { font-size: 9px; color: var(--text-gray); margin-bottom: 6px; display: flex; gap: 4px; }
.pkg-features li::before { content: '✓'; color: var(--text-white); }

.pkg-btn { width: 100%; padding: 6px; font-size: 10px; border-radius: 4px; font-weight: 600; cursor: pointer; }
.pkg-starter .pkg-btn { background: var(--accent-green); color: #000; border: none; }
.pkg-pro .pkg-btn { background: var(--accent-blue); color: #fff; border: none; }
.pkg-elite .pkg-btn { background: var(--accent-purple); color: #fff; border: none; }
.pkg-premium .pkg-btn { background: var(--accent-yellow); color: #000; border: none; }

/* Referral Tree */
.ref-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ref-you {
    display: flex; flex-direction: column; align-items: center;
    margin-bottom: 20px;
    position: relative;
}
.ref-you::after {
    content: '';
    position: absolute;
    bottom: -20px;
    width: 2px;
    height: 20px;
    background: #334155;
}
.ref-icon {
    width: 30px; height: 30px; border-radius: 50%; background: #1e293b;
    display: flex; justify-content: center; align-items: center; font-size: 14px; margin-bottom: 5px;
}
.ref-you span { font-size: 11px; font-weight: 600; }
.ref-levels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding-top: 20px;
}
.ref-levels::before {
    content: '';
    position: absolute;
    top: 0; left: 16%; right: 16%;
    height: 2px; background: #334155;
}
.ref-level {
    flex: 1; margin: 0 5px;
    background: #070d19;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 10px; text-align: center;
    position: relative;
}
.ref-level::before {
    content: '';
    position: absolute;
    top: -20px; left: 50%; transform: translateX(-50%);
    width: 2px; height: 20px; background: #334155;
}
.ref-l1 { border-color: var(--accent-green); }
.ref-l2 { border-color: var(--accent-blue); }
.ref-l3 { border-color: var(--accent-purple); }

.ref-ltitle { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.ref-ldesc { font-size: 9px; color: var(--text-gray); margin-bottom: 5px; }
.ref-lpercent { font-size: 20px; font-weight: 700; }
.ref-l1 .ref-lpercent { color: var(--accent-green); }
.ref-l2 .ref-lpercent { color: var(--accent-blue); }
.ref-l3 .ref-lpercent { color: var(--accent-purple); }

.ref-users {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}
.ref-u {
    display: flex; align-items: center; justify-content: center;
}

/* Rank Program */
.ranks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rank {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #070d19;
    border: 1px solid var(--panel-border);
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}
.rank:hover {
    background: rgba(255,255,255,0.03);
    transform: translateX(5px);
}
.rank-badge {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-size: 12px; background: rgba(255,255,255,0.1);
}
.rank-name { font-size: 11px; font-weight: 700; width: 100px; }
.rank-req { font-size: 10px; color: var(--text-gray); flex: 1; text-align: center; }
.rank-bonus { font-size: 11px; font-weight: 700; text-align: right; line-height: 1.2; }
.rank-bonus span { display: block; font-size: 8px; color: var(--text-gray); font-weight: 500; }

.r-bronze .rank-name { color: #cd7f32; } .r-bronze .rank-bonus { color: var(--accent-green); }
.r-silver .rank-name { color: #c0c0c0; } .r-silver .rank-bonus { color: var(--accent-green); }
.r-gold .rank-name { color: #ffd700; } .r-gold .rank-bonus { color: #ffd700; }
.r-platinum .rank-name { color: var(--accent-purple); } .r-platinum .rank-bonus { color: #ffd700; }
.r-diamond .rank-name { color: var(--accent-blue); } .r-diamond .rank-bonus { color: var(--accent-blue); }

/* Bottom Grid */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}
.why-list { margin-bottom: 20px; }
.why-list li { font-size: 11px; color: var(--text-gray); display: flex; gap: 8px; margin-bottom: 6px; align-items: center; }
.why-list li::before { content: '✓'; color: var(--text-gray); font-size: 10px; }
.vip-founder { margin-bottom: 0; clear: both; }
.vip-founder-icon { 
    float: right;
    width: 60px; height: 60px; 
    background: rgba(255,215,0,0.1); 
    border-radius: 50%; 
    border: 1px dashed #ffd700; 
    animation: pulseGlow 2s infinite; 
    display: flex; justify-content: center; align-items: center;
    margin-left: 15px;
    margin-bottom: 15px;
}

.trust-icons { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
    text-align: center; 
    padding-top: 15px;
}
.trust-icons div {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.t-icon { 
    font-size: 28px; 
    color: var(--text-gray); 
    margin-bottom: 10px; 
    transition: all 0.3s ease;
}
.trust-icons div:hover .t-icon {
    transform: translateY(-3px) scale(1.1);
    color: var(--text-white);
}
.t-text { 
    font-size: 10px; 
    color: var(--text-gray); 
    line-height: 1.2;
}

.cta-panel { display: flex; flex-direction: column; justify-content: center; background: transparent; border: none; padding: 0;}
.cta-panel h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.cta-panel p { font-size: 11px; color: var(--text-gray); margin-bottom: 20px; }
.cta-btns { display: flex; flex-direction: column; gap: 10px; }
.cta-btns .btn { width: 100%; }

/* Footer */
.footer {
    background-color: var(--panel-bg);
    border-top: 1px solid var(--panel-border);
    padding: 60px 0 20px;
    margin-top: 40px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 0 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-desc {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 350px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--text-gray);
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--accent-blue);
    color: #fff;
    transform: translateY(-3px);
}
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-col ul li a:hover {
    color: var(--accent-blue);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 30px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .main-grid { grid-template-columns: 1fr; }
    .bottom-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .mobile-menu-btn { display: block; }
    .header-actions { display: none; }
    .main-nav {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--panel-bg);
        border-right: none;
        padding: 60px 20px 20px;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    }
    .main-nav.active {
        left: 0;
    }
    .close-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: var(--text-white);
        cursor: pointer;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .main-nav a {
        font-size: 18px;
    }
    
    .hero { flex-direction: column; padding: 40px 20px; align-items: center; }
    .hero-image { width: 100%; max-width: 400px; height: 300px; margin-top: 20px; }
    .hero-content { flex: 1 1 100%; max-width: 100%; text-align: center; }
    .hero h1 { font-size: 40px; margin-bottom: 15px; }
    .hero p.subtitle { font-size: 14px; margin-bottom: 25px; margin-left: auto; margin-right: auto; }
    .hero-btns { flex-direction: column; width: 100%; align-items: center; gap: 10px; margin-bottom: 30px; }
    .hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
    
    .hero-stats { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .stat-item { flex-direction: column; text-align: center; gap: 5px; width: 45%; }
    
    .features-strip { flex-direction: column; gap: 20px; padding: 20px; text-align: center; }
    .feature { flex-direction: column; gap: 10px; }
    
    .main-grid { grid-template-columns: 1fr; }
    .packages { grid-template-columns: 1fr; gap: 15px; }
    
    .ref-levels { flex-direction: column; gap: 20px; }
    .ref-level { width: 100%; margin: 0; }
    .ref-levels::before, .ref-level::before, .ref-you::after { display: none; }
    
    .rank { flex-direction: column; text-align: center; gap: 10px; padding: 15px; }
    .rank-name { width: auto; font-size: 14px; }
    .rank-req { font-size: 12px; }
    .rank-bonus { text-align: center; font-size: 14px; }
    
    .bottom-grid { grid-template-columns: 1fr; gap: 30px; }
    .trust-icons { grid-template-columns: 1fr 1fr; gap: 20px; }
    .cta-panel { text-align: center; }
    .cta-btns { max-width: 300px; margin: 0 auto; width: 100%; }
}

/* About Page Styles */
.about-wrapper {
    position: relative;
    overflow: hidden; /* To contain background glows */
}
/* Ambient Glows */
.ambient-glow-blue {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    top: 5%;
    left: -20%;
    animation: float 12s ease-in-out infinite;
}
.ambient-glow-gold {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(250, 204, 21, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    bottom: 30%;
    right: -10%;
    animation: float 10s ease-in-out infinite reverse;
}
.ambient-glow-blue-2 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    bottom: 5%;
    left: 10%;
    animation: float 15s ease-in-out infinite;
}

.about-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
}
.about-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}
.about-header h1 {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-header h1 span {
    color: var(--accent-yellow);
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
}
.about-header p {
    color: var(--text-gray);
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.section-card {
    background-color: rgba(13, 19, 35, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--panel-border);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.section-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 11, 25, 0.8), 0 0 20px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}
.section-card:hover::before {
    opacity: 1;
}

.section-title {
    font-size: 26px;
    color: var(--text-white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}
.section-title i {
    color: var(--accent-yellow);
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.4));
}
.section-title.blue-icon i {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.02);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}
.list-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
}
.list-item i {
    color: var(--accent-blue);
    margin-top: 2px;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}
.list-item span {
    color: var(--text-white);
    font-weight: 500;
}

.pillar-card {
    background-color: #060b19;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid var(--panel-border);
    text-align: center;
    transition: all 0.3s ease;
}
.pillar-card:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.15);
    transform: translateY(-5px);
}
.pillar-card i {
    font-size: 36px; 
    color: var(--accent-yellow); 
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.3));
}
.pillar-card h4 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}
.pillar-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.version-box {
    background-color: #060b19;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--panel-border);
    position: relative;
    transition: all 0.3s ease;
}
.version-box:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}
.version-box::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; right: 20px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0.5;
}
.version-title {
    color: var(--text-white);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 5px;
}
.version-subtitle {
    color: var(--accent-yellow);
    font-size: 13px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.version-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.version-list li {
    margin-bottom: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.version-list li i {
    color: var(--accent-blue);
    font-size: 12px;
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.goal-item {
    background: linear-gradient(180deg, rgba(13, 19, 35, 1) 0%, rgba(6, 11, 25, 1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-white);
    transition: all 0.3s ease;
}
.goal-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.15);
}
.goal-item i {
    color: var(--accent-blue);
    margin-bottom: 15px;
    display: block;
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
}
.goal-item span {
    font-weight: 700;
    font-size: 16px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.value-tag {
    background-color: #060b19;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.value-tag:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    background-color: rgba(250, 204, 21, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.15);
}
.value-tag i {
    color: var(--accent-blue);
    font-size: 14px;
}
.value-tag:hover i {
    color: var(--accent-yellow);
}

.roadmap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}
.roadmap::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(59,130,246,0.1) 0%, var(--accent-blue) 50%, var(--accent-yellow) 100%);
    transform: translateX(-50%);
    z-index: 0;
}
.roadmap-item {
    background-color: #060b19;
    border: 1px solid var(--panel-border);
    padding: 20px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.roadmap-item:hover {
    border-color: var(--accent-blue);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}
.roadmap-year {
    color: var(--accent-blue);
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}
.roadmap-item.future-item {
    border-color: var(--accent-yellow);
    background: linear-gradient(180deg, rgba(250,204,21,0.05) 0%, rgba(6,11,25,1) 100%);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.1);
}
.roadmap-item.future-item:hover {
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.2);
    transform: scale(1.05);
}
.roadmap-item.future-item .roadmap-year {
    color: var(--accent-yellow);
    font-size: 26px;
    text-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.risk-disclosure {
    background-color: rgba(6, 11, 25, 0.8);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.risk-disclosure::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: #ef4444;
}
.risk-disclosure h3 {
    color: #ef4444; margin-bottom: 15px; font-size: 20px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.risk-disclosure p {
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 14px;
}
.risk-disclosure p:last-child { margin-bottom: 0; }

.cta-section {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, rgba(250,204,21,0.1) 0%, rgba(6,11,25,0.8) 100%);
    border-radius: 20px;
    border: 1px solid rgba(250, 204, 21, 0.2);
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.cta-section::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle at center, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section h2 {
    font-size: 36px;
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.cta-section p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-container { padding: 0 15px; margin-top: 20px; }
    .section-card { padding: 25px 20px; }
    .about-header h1 { font-size: 32px; }
    .section-title { font-size: 22px; }
    .content-grid { grid-template-columns: 1fr; }
    .roadmap::before { left: 20px; }
    .roadmap-item { max-width: calc(100% - 40px); margin-left: auto; text-align: left; padding: 20px; }
}

/* MODERN ABOUT PAGE CSS */
.modern-about-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}
.orb-1 {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 70%);
    top: -200px; left: -200px; z-index: -1; animation: float 15s ease-in-out infinite;
}
.orb-2 {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, rgba(250, 204, 21, 0) 70%);
    bottom: 20%; right: -150px; z-index: -1; animation: float 12s ease-in-out infinite reverse;
}

.hero-modern {
    text-align: center; padding: 100px 20px 80px;
    position: relative; z-index: 10;
}
.hero-modern h1 {
    font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 24px;
    letter-spacing: -1px;
}
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #9ca3af 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.text-gradient-gold {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #d97706 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-modern p {
    font-size: 20px; color: var(--text-gray); max-width: 650px; margin: 0 auto;
    line-height: 1.6;
}

.bento-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto); gap: 24px;
    margin-bottom: 80px;
}
.bento-card {
    background: rgba(13, 19, 35, 0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 24px;
    padding: 32px; display: flex; flex-direction: column; position: relative; overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
}
.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(59, 130, 246, 0.3);
}
.bento-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%); pointer-events: none;
}
.col-span-2 { grid-column: span 2; }
.row-span-2 { grid-row: span 2; }

.bento-icon {
    width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 24px;
}
.bg-blue-soft { background: rgba(59, 130, 246, 0.1); color: var(--accent-blue); }
.bg-gold-soft { background: rgba(250, 204, 21, 0.1); color: var(--accent-yellow); }

.bento-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.bento-card p { color: var(--text-gray); font-size: 15px; line-height: 1.6; }

.mission-list { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.mission-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-white); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mission-list li:last-child { border-bottom: none; }
.mission-list li i { color: var(--accent-blue); background: rgba(59,130,246,0.1); padding: 6px; border-radius: 50%; font-size: 12px; }

.stat-bento { justify-content: center; align-items: center; text-align: center; background: linear-gradient(135deg, rgba(13,19,35,0.8) 0%, rgba(6,11,25,0.9) 100%); }
.stat-bento h2 { font-size: 48px; font-weight: 800; color: var(--accent-yellow); margin-bottom: 8px; line-height: 1; }
.stat-bento p { font-size: 16px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--text-gray); }

.section-modern-header { text-align: center; margin-bottom: 40px; }
.section-modern-header h2 { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.section-modern-header p { font-size: 18px; color: var(--text-gray); }

/* Pillars Row */
.pillars-row {
    max-width: 1200px; margin: 0 auto 100px; padding: 0 20px;
    display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.pillar-modern {
    flex: 1; min-width: 200px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px; padding: 32px 24px; text-align: center; transition: all 0.3s;
}
.pillar-modern:hover { background: rgba(59, 130, 246, 0.05); border-color: rgba(59, 130, 246, 0.3); transform: translateY(-5px); }
.pillar-modern i { font-size: 32px; color: var(--text-white); margin-bottom: 20px; opacity: 0.8; }
.pillar-modern h4 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.pillar-modern p { font-size: 14px; color: var(--text-gray); line-height: 1.5; }
.pillar-modern:hover i { color: var(--accent-blue); opacity: 1; filter: drop-shadow(0 0 10px rgba(59,130,246,0.5)); }

/* Timeline Modern */
.timeline-modern-container {
    max-width: 1000px; margin: 0 auto 100px; padding: 0 20px;
}
.timeline-card {
    background: rgba(13, 19, 35, 0.5); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px; padding: 40px; margin-bottom: 24px; display: flex; align-items: center; gap: 40px;
    transition: all 0.4s; position: relative; overflow: hidden;
}
.timeline-card:hover { border-color: rgba(250, 204, 21, 0.3); background: rgba(13, 19, 35, 0.8); }
.timeline-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent-yellow); opacity: 0; transition: opacity 0.3s; }
.timeline-card:hover::before { opacity: 1; }

.t-meta { flex-shrink: 0; width: 180px; }
.t-version { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.t-status { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.status-current { background: rgba(34, 197, 94, 0.1); color: var(--accent-green); border: 1px solid rgba(34, 197, 94, 0.2); }
.status-soon { background: rgba(250, 204, 21, 0.1); color: var(--accent-yellow); border: 1px solid rgba(250, 204, 21, 0.2); }
.status-future { background: rgba(59, 130, 246, 0.1); color: var(--accent-blue); border: 1px solid rgba(59, 130, 246, 0.2); }

.t-content { flex: 1; }
.t-features { display: flex; flex-wrap: wrap; gap: 12px; }
.t-feature { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 20px; font-size: 14px; color: var(--text-white); display: flex; align-items: center; gap: 8px; }
.t-feature i { font-size: 10px; }
.t-feature.done i { color: var(--accent-green); }
.t-feature.pending i { color: var(--accent-yellow); }

/* Core Values Tokens */
.core-values-modern {
    max-width: 900px; margin: 0 auto 100px; padding: 0 20px; text-align: center;
}
.values-wrap {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 32px;
}
.val-token {
    font-size: 16px; font-weight: 600; color: #fff; padding: 16px 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 40px; backdrop-filter: blur(10px);
    display: flex; align-items: center; gap: 10px; cursor: default; transition: all 0.3s;
}
.val-token:hover { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.5); transform: scale(1.05); }
.val-token i { color: var(--accent-blue); font-size: 14px; }

/* Modern CTA */
.cta-modern {
    max-width: 1000px; margin: 0 auto; padding: 80px 40px; border-radius: 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 11, 25, 0.8) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3); text-align: center; position: relative; overflow: hidden;
}
.cta-modern::before {
    content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.2) 0%, transparent 70%);
    top: -200px; right: -100px; z-index: 0;
}
.cta-modern-content { position: relative; z-index: 1; }
.cta-modern h2 { font-size: 48px; font-weight: 800; color: #fff; margin-bottom: 24px; letter-spacing: -1px; }
.cta-modern p { font-size: 20px; color: var(--text-gray); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-modern .btn-primary { padding: 16px 48px; font-size: 18px; font-weight: 700; border-radius: 30px; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .bento-container { grid-template-columns: repeat(2, 1fr); }
    .hero-modern h1 { font-size: 48px; }
    .timeline-card { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 768px) {
    .bento-container { grid-template-columns: 1fr; }
    .col-span-2 { grid-column: span 1; }
    .row-span-2 { grid-row: span 1; }
    .hero-modern h1 { font-size: 40px; }
    .stat-bento { padding: 40px 20px; }
    .cta-modern h2 { font-size: 36px; }
    .cta-modern { padding: 60px 20px; }
}

/* Image About Page Styles */
.img-about-wrapper { background: #060b19; color: #fff; padding-bottom: 60px; font-family: var(--font-main); }
.img-about-container { max-width: 100%; margin: 0 auto; padding: 0; }
.img-sec-title { text-align: center; margin-bottom: 30px; }
.img-sec-title h2 { font-size: 28px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.img-sec-title p { font-size: 14px; color: var(--text-gray); }

/* About Hero Section */
.img-about-hero { display: flex; align-items: center; justify-content: space-between; gap: 60px; margin-top: 40px; margin-bottom: 80px; }
.img-about-hero-text { flex: 1; }
.img-about-hero-text h1 { font-size: 46px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.img-about-hero-text h2 { font-size: 24px; font-weight: 600; color: #fff; margin-bottom: 25px; }
.img-about-hero-text p { font-size: 16px; color: var(--text-gray); line-height: 1.6; margin-bottom: 35px; max-width: 90%; }
.img-about-hero-btns { display: flex; gap: 15px; }
.img-outline-btn { display: inline-flex; align-items: center; background: transparent; color: #fff; padding: 12px 24px; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.3s; }
.img-outline-btn:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.img-about-hero-image { flex: 1; display: flex; justify-content: center; position: relative; }
.img-about-hero-image img { max-width: 100%; height: auto; border-radius: 20px; box-shadow: 0 0 40px rgba(0,0,0,0.5); animation: float 6s ease-in-out infinite; }

/* Vision & Mission */
.img-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; margin-bottom: 60px; }
.img-vm-card { background: #0a101d; border: 1px solid rgba(255,255,255,0.05); padding: 30px; border-radius: 12px; display: flex; flex-direction: column; position: relative; }
.img-vm-card h3 { font-size: 20px; color: var(--accent-yellow); margin-bottom: 5px; }
.img-vm-card h4 { font-size: 16px; color: #fff; margin-bottom: 15px; }
.img-vm-card p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.img-vm-icon { position: absolute; right: 30px; top: 50%; transform: translateY(-50%); opacity: 0.8; font-size: 80px; }
.icon-yellow { color: var(--accent-yellow); filter: drop-shadow(0 0 10px rgba(250,204,21,0.3)); }
.icon-blue { color: var(--accent-blue); filter: drop-shadow(0 0 10px rgba(59,130,246,0.3)); }
.img-vm-list { list-style: none; margin: 0; padding: 0; }
.img-vm-list li { font-size: 14px; color: var(--text-gray); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.img-vm-list li i { color: var(--accent-green); }

/* Why Yanvora */
.img-why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-bottom: 60px; }
.img-why-card { background: #0a101d; border: 1px solid rgba(255,255,255,0.05); padding: 25px 15px; border-radius: 12px; text-align: center; }
.img-why-card i { font-size: 36px; margin-bottom: 15px; }
.img-why-card h4 { font-size: 16px; margin-bottom: 10px; }
.img-why-card p { font-size: 12px; color: var(--text-gray); }

/* Ecosystem */
.img-eco-grid { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 60px; }
.img-eco-card { flex: 1; background: #0a101d; border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; position: relative; }
.img-eco-arrow { color: var(--text-gray); font-size: 20px; }
.eco-tag { position: absolute; top: 20px; right: 20px; font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 4px; }
.tag-green { background: rgba(34,197,94,0.1); color: var(--accent-green); }
.tag-yellow { background: rgba(250,204,21,0.1); color: var(--accent-yellow); }
.tag-blue { background: rgba(59,130,246,0.1); color: var(--accent-blue); }
.eco-title { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.eco-subtitle { font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.eco-list { list-style: none; margin: 0; padding: 0; }
.eco-list li { font-size: 12px; color: var(--text-gray); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }

/* Community Goals */
.img-cg-wrapper { display: flex; gap: 30px; margin-bottom: 60px; align-items: center; }
.img-cg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; flex: 3; }
.img-cg-card { background: #0a101d; border: 1px solid rgba(255,255,255,0.05); padding: 25px 15px; border-radius: 12px; text-align: center; }
.img-cg-card i { font-size: 32px; margin-bottom: 15px; }
.img-cg-card h3 { font-size: 24px; color: #fff; margin-bottom: 5px; }
.img-cg-card p { font-size: 12px; color: var(--text-gray); }
.img-cg-text { flex: 1; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 30px; font-size: 14px; color: var(--text-gray); line-height: 1.6; }

/* Core Values */
.img-cv-grid { display: flex; justify-content: space-between; margin-bottom: 60px; padding: 0 20px; }
.img-cv-item { text-align: center; }
.img-cv-item i { font-size: 28px; margin-bottom: 10px; }
.img-cv-item span { display: block; font-size: 12px; color: var(--text-gray); }

/* Roadmap */
.img-rm-grid { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 60px; }
.img-rm-card { flex: 1; background: #0a101d; border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; display: flex; align-items: center; gap: 15px; }
.img-rm-card i { font-size: 32px; }
.img-rm-card h3 { font-size: 18px; margin-bottom: 5px; }
.img-rm-card p { font-size: 12px; color: var(--text-gray); }

/* Bottom Section */
.img-bot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.img-risk-card { background: #0a101d; border: 1px solid rgba(255,255,255,0.05); padding: 30px; border-radius: 12px; }
.img-risk-card h3 { font-size: 18px; color: #fff; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.img-risk-card p { font-size: 12px; color: var(--text-gray); margin-bottom: 10px; line-height: 1.6; }
.img-join-card { background: #0a101d; border: 1px solid rgba(255,255,255,0.05); padding: 30px; border-radius: 12px; position: relative; }
.img-join-card h3 { font-size: 24px; color: #fff; margin-bottom: 10px; }
.img-join-card p { font-size: 14px; color: var(--text-gray); margin-bottom: 20px; line-height: 1.6; }
.img-join-card .highlight { color: var(--accent-yellow); font-weight: 600; display: block; margin-bottom: 20px; }
.img-join-btn { display: inline-flex; background: var(--accent-yellow); color: #000; padding: 12px 24px; border-radius: 6px; font-weight: 600; font-size: 14px; text-decoration: none; align-items: center; gap: 10px; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .img-about-hero { flex-direction: column; text-align: center; gap: 40px; }
    .img-about-hero-text p { margin-left: auto; margin-right: auto; max-width: 100%; }
    .img-about-hero-btns { justify-content: center; }
    .img-vm-grid, .img-bot-grid { grid-template-columns: 1fr; }
    .img-why-grid { grid-template-columns: repeat(3, 1fr); }
    .img-eco-grid, .img-rm-grid { flex-direction: column; }
    .img-eco-arrow { transform: rotate(90deg); margin: 15px 0; }
    .img-cg-wrapper { flex-direction: column; }
    .img-cg-grid { grid-template-columns: repeat(2, 1fr); }
    .img-cg-text { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 20px; text-align: center; }
    .img-cv-grid { flex-wrap: wrap; justify-content: center; gap: 20px; }
}
@media (max-width: 576px) {
    .img-about-hero-text h1 { font-size: 32px; }
    .img-about-hero-text h2 { font-size: 20px; }
    .img-about-hero-btns { flex-direction: column; width: 100%; }
    .img-about-hero-btns a { justify-content: center; width: 100%; }
    .img-about-hero-image img { max-height: 250px; }
    .img-why-grid { grid-template-columns: 1fr; }
    .img-cg-grid { grid-template-columns: 1fr; }
}

/* Contact Page CSS */
.contact-wrapper { padding: 40px 0; position: relative; }
.contact-hero { display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; gap: 40px; }
.contact-hero-text { flex: 1; max-width: 550px; }
.contact-hero-subtitle { color: var(--accent-yellow); font-size: 13px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
.contact-hero-title { font-size: 56px; font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.1; }
.contact-hero-desc { font-size: 16px; color: var(--text-gray); margin-bottom: 30px; line-height: 1.6; }
.contact-hero-btns { display: flex; gap: 15px; }

.contact-hero-visual { flex: 1; display: flex; justify-content: center; position: relative; height: 350px; }
.contact-globe-bg { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 60%); border-radius: 50%; border: 1px dashed rgba(59,130,246,0.3); animation: float 10s linear infinite; }
.contact-y-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 140px; font-weight: 900; color: transparent; -webkit-text-stroke: 3px var(--accent-yellow); text-shadow: 0 0 40px rgba(250,204,21,0.6); z-index: 2; line-height: 1; }
.contact-y-base { position: absolute; bottom: 20%; left: 50%; transform: translateX(-50%); width: 150px; height: 10px; background: radial-gradient(ellipse, var(--accent-yellow) 0%, transparent 70%); box-shadow: 0 0 20px var(--accent-yellow); z-index: 1; }
.floating-icon { position: absolute; width: 40px; height: 40px; background: rgba(13,19,35,0.8); border: 1px solid rgba(59,130,246,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-white); font-size: 16px; box-shadow: 0 0 15px rgba(59,130,246,0.2); animation: float 6s ease-in-out infinite; z-index: 3; }
.fi-1 { top: 10%; left: 15%; animation-delay: 0s; }
.fi-2 { top: 20%; right: 15%; animation-delay: 1s; }
.fi-3 { bottom: 30%; right: 25%; animation-delay: 2s; }
.fi-4 { bottom: 20%; left: 20%; animation-delay: 3s; }

.contact-main-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; margin-bottom: 60px; }
.contact-panel { background: rgba(13, 19, 35, 0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 35px; }
.contact-panel-title { font-size: 16px; font-weight: 700; color: var(--accent-yellow); text-transform: uppercase; margin-bottom: 25px; letter-spacing: 1px; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; position: relative; }
.form-group.full-width { grid-column: span 2; }
.form-group label { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.form-group label i { color: var(--text-gray); }
.form-control { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 12px 15px; color: #fff; font-size: 14px; outline: none; transition: all 0.3s; font-family: var(--font-main); width: 100%; }
.form-control:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }
textarea.form-control { resize: vertical; min-height: 120px; }
.submit-btn { grid-column: span 2; width: 100%; padding: 14px; font-size: 16px; margin-top: 10px; border-radius: 8px; }
.form-note { grid-column: span 2; text-align: center; font-size: 12px; color: var(--text-gray); margin-top: 5px; display: flex; align-items: center; justify-content: center; gap: 6px; }

.info-list { display: flex; flex-direction: column; gap: 25px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(59,130,246,0.1); color: var(--accent-blue); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-content h4 { font-size: 14px; color: #fff; margin-bottom: 5px; font-weight: 600; }
.info-content p { font-size: 13px; color: var(--text-gray); line-height: 1.5; }
.social-icons-contact { display: flex; gap: 10px; margin-top: 10px; }
.social-icons-contact a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; text-decoration: none; transition: all 0.3s; }
.social-icons-contact a:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.si-tg { background: #0088cc; }
.si-wa { background: #25d366; }
.si-dc { background: #7289da; }
.si-yt { background: #ff0000; }
.si-x { background: #000; border: 1px solid #333; }
.si-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.help-section { text-align: center; margin-bottom: 60px; position: relative; }
.help-section-title { font-size: 16px; font-weight: 700; color: var(--accent-yellow); margin-bottom: 30px; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 15px; position: relative; }
.help-section-title::before, .help-section-title::after { content: ''; height: 1px; width: 60px; background: rgba(250,204,21,0.3); }
.help-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.help-card { background: rgba(13, 19, 35, 0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 30px 20px; text-align: center; transition: all 0.3s; }
.help-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); }
.help-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px; }
.hc-1 { border-top: 2px solid var(--accent-blue); }
.hc-1 .help-icon { background: rgba(59,130,246,0.1); color: var(--accent-blue); }
.hc-1 h4 { color: var(--accent-blue); }
.hc-2 { border-top: 2px solid var(--accent-green); }
.hc-2 .help-icon { background: rgba(34,197,94,0.1); color: var(--accent-green); }
.hc-2 h4 { color: var(--accent-green); }
.hc-3 { border-top: 2px solid var(--accent-yellow); }
.hc-3 .help-icon { background: rgba(250,204,21,0.1); color: var(--accent-yellow); }
.hc-3 h4 { color: var(--accent-yellow); }
.hc-4 { border-top: 2px solid var(--accent-purple); }
.hc-4 .help-icon { background: rgba(168,85,247,0.1); color: var(--accent-purple); }
.hc-4 h4 { color: var(--accent-purple); }
.help-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.help-card p { font-size: 13px; color: var(--text-gray); line-height: 1.5; }

.bottom-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 60px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: all 0.3s; }
.faq-item:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.faq-q { font-size: 14px; font-weight: 500; color: #fff; display: flex; align-items: center; gap: 12px; }
.faq-q i { color: var(--text-gray); }
.faq-icon { color: var(--text-gray); font-size: 12px; }

.subscribe-panel { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.subscribe-panel::before { content: ''; position: absolute; right: -50px; top: -50px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.subscribe-desc { font-size: 14px; color: #fff; margin-bottom: 20px; }
.subscribe-list { list-style: none; margin: 0 0 25px; padding: 0; }
.subscribe-list li { font-size: 13px; color: var(--text-gray); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.subscribe-list li i { color: var(--accent-green); font-size: 14px; }
.subscribe-form { display: flex; gap: 10px; z-index: 1; }
.subscribe-form input { flex: 1; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 14px 15px; color: #fff; font-size: 14px; outline: none; }
.subscribe-form button { padding: 14px 30px; border-radius: 8px; font-weight: 600; font-size: 14px; }
.subscribe-img { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 140px; opacity: 0.9; z-index: 0; pointer-events: none; }
.subscribe-mail-icon { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); font-size: 80px; color: rgba(59,130,246,0.2); z-index: 0; pointer-events: none; text-shadow: 0 0 20px rgba(59,130,246,0.5); }
.subscribe-mail-box { position: absolute; right: 30px; top: 50%; transform: translateY(-50%); width: 120px; height: 90px; background: linear-gradient(135deg, rgba(30,41,59,0.8) 0%, rgba(15,23,42,0.9) 100%); border: 1px solid rgba(59,130,246,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.subscribe-mail-box::after { content: 'Y'; position: absolute; color: var(--accent-yellow); font-size: 32px; font-weight: 900; filter: drop-shadow(0 0 5px rgba(250,204,21,0.5)); top: 15px; }

.contact-features-strip { background-color: var(--panel-bg); border: 1px solid var(--panel-border); border-radius: 12px; padding: 25px 30px; display: flex; justify-content: space-between; margin-bottom: 30px; align-items: center; }
.cf-item { display: flex; align-items: center; gap: 15px; }
.cf-icon { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; background: rgba(255,255,255,0.05); }
.cf-text { font-size: 14px; font-weight: 500; color: #fff; max-width: 100px; line-height: 1.3; }

.journey-banner { background: linear-gradient(90deg, #070e20 0%, #0d162e 100%); border: 1px solid rgba(59,130,246,0.2); border-radius: 16px; padding: 40px; display: flex; align-items: center; justify-content: space-between; position: relative; overflow: hidden; }
.journey-banner::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 300px; background: radial-gradient(ellipse at left, rgba(59,130,246,0.2) 0%, transparent 70%); pointer-events: none; }
.journey-banner-glow-y { position: absolute; left: 40px; top: 50%; transform: translateY(-50%); font-size: 80px; font-weight: 900; color: transparent; -webkit-text-stroke: 2px var(--accent-yellow); text-shadow: 0 0 20px rgba(250,204,21,0.5); opacity: 0.8; }
.journey-text { position: relative; z-index: 1; margin-left: 140px; }
.journey-text h2 { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.journey-text h2 span { color: var(--accent-yellow); }
.journey-text p { font-size: 15px; color: var(--text-gray); }
.journey-btns { display: flex; gap: 15px; position: relative; z-index: 1; }

@media (max-width: 1100px) {
    .help-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-features-strip { flex-wrap: wrap; gap: 20px; justify-content: center; }
}
@media (max-width: 900px) {
    .contact-main-grid { grid-template-columns: 1fr; }
    .bottom-contact-grid { grid-template-columns: 1fr; }
    .journey-banner { flex-direction: column; text-align: center; gap: 25px; padding: 30px 20px; }
    .journey-banner-glow-y { position: relative; left: auto; top: auto; transform: none; margin-bottom: 20px; display: block; }
    .journey-text { margin-left: 0; }
}
@media (max-width: 768px) {
    .contact-hero { flex-direction: column; text-align: center; }
    .contact-hero-text { margin-bottom: 30px; }
    .contact-hero-btns { justify-content: center; }
    .contact-hero-visual { height: 250px; width: 100%; }
    .contact-form { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .submit-btn, .form-note { grid-column: span 1; }
    .help-grid { grid-template-columns: 1fr; }
    .subscribe-form { flex-direction: column; }
    .subscribe-mail-box { display: none; }
    .contact-features-strip { flex-direction: column; align-items: flex-start; }
}

/* --- MEMBERSHIP PLANS PAGE STYLES --- */
.mem-wrapper { background-color: var(--bg-dark); padding: 40px 0 80px; position: relative; font-family: 'Inter', sans-serif; }
.mem-container { max-width: 100%; margin: 0 auto; padding: 0; }

/* Hero Section */
.mem-hero { display: flex; align-items: center; justify-content: space-between; margin-bottom: 60px; padding: 40px 0; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mem-hero-content { flex: 1; max-width: 600px; z-index: 2; }
.mem-version-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); padding: 5px 12px; border-radius: 20px; color: #93c5fd; font-size: 12px; font-weight: 600; margin-bottom: 20px; letter-spacing: 1px; }
.mem-version-tag i { font-size: 8px; }
.mem-hero-content h1 { font-size: 52px; color: #fff; margin-bottom: 10px; font-weight: 700; line-height: 1.1; }
.mem-hero-content h2 { font-size: 26px; color: #fff; margin-bottom: 20px; font-weight: 500; }
.mem-hero-content p { font-size: 16px; color: #cbd5e1; line-height: 1.6; margin-bottom: 30px; }
.mem-hero-btns { display: flex; gap: 15px; }
.mem-join-btn { background-color: var(--accent-yellow); color: #000; padding: 14px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s; box-shadow: 0 4px 15px rgba(250,204,21,0.2); }
.mem-join-btn:hover { background-color: #eab308; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(250,204,21,0.3); }
.mem-outline-btn { background-color: transparent; color: #fff; padding: 14px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.mem-outline-btn:hover { background-color: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }
.mem-hero-image { flex: 1; display: flex; justify-content: flex-end; z-index: 1; position: relative; }
.hero-placeholder-img { width: 100%; max-width: 500px; height: 400px; object-fit: contain; background: transparent; border: 1px dashed rgba(255,255,255,0.1); border-radius: 20px; }

/* Features Bar */
.mem-features-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.mem-feature-card { background: rgba(30,41,59,0.5); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 25px 20px; display: flex; align-items: flex-start; gap: 15px; transition: all 0.3s; }
.mem-feature-card:hover { background: rgba(30,41,59,0.8); border-color: rgba(255,255,255,0.1); }
.mem-feat-icon { font-size: 24px; padding: 10px; background: rgba(255,255,255,0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.mem-feat-text h4 { color: #fff; font-size: 15px; margin-bottom: 5px; font-weight: 600; }
.mem-feat-text p { color: #94a3b8; font-size: 13px; line-height: 1.5; }

/* Title General */
.mem-sec-title { text-align: center; margin-bottom: 40px; margin-top: 80px; }
.mem-sec-title h2 { font-size: 32px; color: #fff; font-weight: 700; }

/* Pricing Grid */
.mem-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.mem-pricing-card {
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.95) 0%, rgba(10, 16, 30, 0.98) 100%);
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Theme Colors for Cards (Full Glowing Borders) */
.theme-green { border: 1px solid #22c55e; box-shadow: 0 0 15px rgba(34, 197, 94, 0.15); }
.theme-green:hover { border-color: #4ade80; box-shadow: 0 0 25px rgba(34, 197, 94, 0.35); transform: translateY(-5px); }

.theme-blue { border: 1px solid #3b82f6; box-shadow: 0 0 15px rgba(59, 130, 246, 0.15); }
.theme-blue:hover { border-color: #60a5fa; box-shadow: 0 0 25px rgba(59, 130, 246, 0.35); transform: translateY(-5px); }

.theme-purple { border: 1px solid #a855f7; box-shadow: 0 0 15px rgba(168, 85, 247, 0.15); }
.theme-purple:hover { border-color: #c084fc; box-shadow: 0 0 25px rgba(168, 85, 247, 0.35); transform: translateY(-5px); }

.theme-yellow { border: 1px solid #eab308; box-shadow: 0 0 15px rgba(234, 179, 8, 0.15); }
.theme-yellow:hover { border-color: #fde047; box-shadow: 0 0 25px rgba(234, 179, 8, 0.35); transform: translateY(-5px); }

.theme-orange { border: 1px solid #f97316; box-shadow: 0 0 15px rgba(249, 115, 22, 0.15); }
.theme-orange:hover { border-color: #fb923c; box-shadow: 0 0 25px rgba(249, 115, 22, 0.35); transform: translateY(-5px); }

.theme-cyan { border: 1px solid #06b6d4; box-shadow: 0 0 15px rgba(6, 182, 212, 0.15); }
.theme-cyan:hover { border-color: #22d3ee; box-shadow: 0 0 25px rgba(6, 182, 212, 0.35); transform: translateY(-5px); }

.theme-red { border: 1px solid #ef4444; box-shadow: 0 0 15px rgba(239, 68, 68, 0.15); }
.theme-red:hover { border-color: #f87171; box-shadow: 0 0 25px rgba(239, 68, 68, 0.35); transform: translateY(-5px); }

.mem-popular { border: 2px solid #a855f7 !important; box-shadow: 0 0 25px rgba(168,85,247,0.3) !important; }
.mem-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #a855f7, #7e22ce);
    color: #fff;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(168,85,247,0.5);
    white-space: nowrap;
}

.mem-plan-header { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.plan-icon {
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    flex-shrink: 0;
}
.plan-title-area h3 { font-size: 19px; font-weight: 800; letter-spacing: 1px; margin-bottom: 2px; }
.mem-price { font-size: 30px; font-weight: 800; color: #fff; display: flex; align-items: baseline; gap: 5px; }
.mem-price span { font-size: 13px; color: #94a3b8; font-weight: 600; }
.plan-title-area p { font-size: 12px; color: #94a3b8; margin-top: 3px; font-weight: 400; }

.mem-plan-features { list-style: none; padding: 0; margin: 0 0 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); flex-grow: 1; }
.mem-plan-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 13px; color: #cbd5e1; }
.mem-plan-features li i { font-size: 14px; }

.mem-plan-details { margin-bottom: 20px; }
.detail-row { text-align: center; margin-bottom: 14px; }
.detail-row .label { display: block; font-size: 11px; font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.8px; }
.detail-row .value { display: block; font-size: 18px; font-weight: 800; color: #fff; }
.detail-row .sub-value { display: block; font-size: 12px; color: #94a3b8; margin-top: 2px; }
.val-green { color: #22c55e !important; }
.val-blue { color: #3b82f6 !important; }
.val-purple { color: #a855f7 !important; }
.val-yellow { color: #eab308 !important; }
.val-orange { color: #f97316 !important; }
.val-cyan { color: #06b6d4 !important; }
.val-red { color: #ef4444 !important; }

.mem-plan-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    letter-spacing: 0.3px;
}
.btn-green { background: linear-gradient(135deg, #22c55e, #16a34a); color: #000; box-shadow: 0 4px 12px rgba(34,197,94,0.3); }
.btn-green:hover { background: linear-gradient(135deg, #16a34a, #15803d); box-shadow: 0 6px 20px rgba(34,197,94,0.5); color: #000; }

.btn-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; box-shadow: 0 4px 12px rgba(59,130,246,0.3); }
.btn-blue:hover { background: linear-gradient(135deg, #2563eb, #1d4ed8); box-shadow: 0 6px 20px rgba(59,130,246,0.5); color: #fff; }

.btn-purple { background: linear-gradient(135deg, #a855f7, #9333ea); color: #fff; box-shadow: 0 4px 12px rgba(168,85,247,0.3); }
.btn-purple:hover { background: linear-gradient(135deg, #9333ea, #7e22ce); box-shadow: 0 6px 20px rgba(168,85,247,0.5); color: #fff; }

.btn-yellow { background: linear-gradient(135deg, #eab308, #ca8a04); color: #000; box-shadow: 0 4px 12px rgba(234,179,8,0.3); }
.btn-yellow:hover { background: linear-gradient(135deg, #ca8a04, #a16207); box-shadow: 0 6px 20px rgba(234,179,8,0.5); color: #000; }

.btn-orange { background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; box-shadow: 0 4px 12px rgba(249,115,22,0.3); }
.btn-orange:hover { background: linear-gradient(135deg, #ea580c, #c2410c); box-shadow: 0 6px 20px rgba(249,115,22,0.5); color: #fff; }

.btn-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); color: #fff; box-shadow: 0 4px 12px rgba(6,182,212,0.3); }
.btn-cyan:hover { background: linear-gradient(135deg, #0891b2, #0e7490); box-shadow: 0 6px 20px rgba(6,182,212,0.5); color: #fff; }

.btn-red { background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; box-shadow: 0 4px 12px rgba(239,68,68,0.3); }
.btn-red:hover { background: linear-gradient(135deg, #dc2626, #b91c1c); box-shadow: 0 6px 20px rgba(239,68,68,0.5); color: #fff; }

/* Compare Table */
.mem-compare-table-wrapper { overflow-x: auto; margin-bottom: 60px; background: rgba(15,23,42,0.6); border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); }
.mem-compare-table { width: 100%; border-collapse: collapse; min-width: 800px; }
.mem-compare-table th, .mem-compare-table td { padding: 18px 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); border-right: 1px solid rgba(255,255,255,0.02); }
.mem-compare-table th:last-child, .mem-compare-table td:last-child { border-right: none; }
.mem-compare-table th { font-weight: 700; font-size: 14px; letter-spacing: 1px; background: rgba(0,0,0,0.2); }
.mem-compare-table th:first-child, .mem-compare-table td:first-child { text-align: left; font-weight: 600; color: #cbd5e1; width: 30%; }
.mem-compare-table td { color: #94a3b8; font-size: 14px; }
.mem-compare-table tr:hover td { background: rgba(255,255,255,0.02); }

/* Upgrade Rewards */
.mem-upgrade-box { display: flex; align-items: center; background: rgba(15,23,42,0.8); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 40px; margin-bottom: 60px; gap: 40px; }
.upgrade-info { min-width: 200px; }
.upgrade-info h2 { font-size: 24px; color: #fff; margin-bottom: 10px; }
.upgrade-info p { color: #94a3b8; font-size: 14px; line-height: 1.5; }
.upgrade-steps { display: flex; align-items: center; flex-grow: 1; justify-content: space-between; }
.u-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 15px; }
.u-box { width: 80px; height: 80px; border-radius: 12px; border: 2px solid; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); }
.u-num { font-size: 28px; font-weight: 700; line-height: 1; }
.u-label { font-size: 11px; color: #94a3b8; text-transform: uppercase; margin-top: 5px; font-weight: 600; }
.u-reward { display: flex; flex-direction: column; gap: 5px; }
.u-val { font-size: 16px; font-weight: 700; }
.u-desc { font-size: 12px; color: #94a3b8; }
.u-arrow { color: #475569; font-size: 20px; }

/* Journey & Ecosystem */
.mem-ecosystem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 60px; }
.eco-left, .eco-right { background: rgba(15,23,42,0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 35px; }
.eco-left h3, .eco-right h3 { font-size: 20px; color: #fff; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
.journey-flow { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; gap: 8px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; -ms-overflow-style: none; }
.journey-flow::-webkit-scrollbar { display: none; }
.j-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; flex: 1; min-width: 40px; }
.j-step i { font-size: 22px; }
.j-step span { font-size: 9px; color: #cbd5e1; font-weight: 500; line-height: 1.2; word-break: break-word; }
.j-arrow { color: #334155; font-size: 10px; flex-shrink: 0; }
.eco-version-split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.eco-ver { position: relative; }
.eco-v-header h4 { color: #fff; font-size: 16px; margin-bottom: 5px; }
.eco-v-header span { font-size: 11px; font-weight: 700; display: block; margin-bottom: 20px; }
.eco-list { list-style: none; padding: 0; margin: 0; position: relative; z-index: 2; }
.eco-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #cbd5e1; margin-bottom: 12px; }
.eco-img-ph { position: absolute; right: -20px; bottom: 0; width: 120px; height: 120px; opacity: 0.3; object-fit: contain; z-index: 1; border: 1px dashed rgba(255,255,255,0.2); border-radius: 10px; }

/* FAQ Grid */
.mem-faq-flex { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 80px; }
.mem-faq-card { background: rgba(15,23,42,0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 25px; display: flex; gap: 15px; width: calc(33.333% - 14px); min-width: 300px; flex-grow: 1; transition: all 0.3s; }
.mem-faq-card:hover { background: rgba(30,41,59,0.6); border-color: rgba(255,255,255,0.1); }
.faq-icon { font-size: 20px; color: #64748b; margin-top: 3px; }
.faq-content h4 { color: #fff; font-size: 15px; margin-bottom: 10px; line-height: 1.4; font-weight: 600; }
.faq-content p { color: #94a3b8; font-size: 13px; line-height: 1.6; }

/* Bottom Grid */
.mem-bot-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; }
.mem-risk-card { background: rgba(15,23,42,0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 35px; display: flex; gap: 20px; }
.risk-icon { font-size: 32px; color: var(--accent-yellow); }
.risk-content h3 { color: #fff; font-size: 18px; margin-bottom: 15px; }
.risk-content p { color: #94a3b8; font-size: 13px; line-height: 1.6; margin-bottom: 15px; }
.mem-join-card { background: rgba(15,23,42,0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 35px; display: flex; align-items: center; justify-content: space-between; position: relative; overflow: hidden; }
.join-content { position: relative; z-index: 2; max-width: 60%; }
.join-content h3 { font-size: 28px; color: #fff; margin-bottom: 10px; }
.join-content p { color: #94a3b8; font-size: 15px; margin-bottom: 25px; }
.join-btns { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 10px; }
.join-btns a { white-space: nowrap; }
.join-ph-img { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); width: 300px; height: auto; max-height: 250px; object-fit: contain; z-index: 1; mix-blend-mode: screen; }

@media (max-width: 1200px) {
    .mem-pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .mem-upgrade-box { flex-direction: column; align-items: flex-start; }
    .upgrade-steps { width: 100%; flex-wrap: wrap; gap: 20px; justify-content: flex-start; }
    .u-arrow { display: none; }
    .mem-ecosystem-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .mem-features-bar { grid-template-columns: repeat(2, 1fr); }
    .mem-bot-grid { grid-template-columns: 1fr; }
    .mem-hero { flex-direction: column; text-align: center; }
    .mem-hero-image { margin-top: 40px; justify-content: center; width: 100%; }
}
@media (max-width: 768px) {
    .mem-pricing-grid { grid-template-columns: 1fr; }
    .mem-features-bar { grid-template-columns: 1fr; }
    .mem-faq-card { width: 100%; }
    .eco-version-split { grid-template-columns: 1fr; }
    .join-ph-img { display: none; }
    .join-content { max-width: 100%; text-align: center; }
    .join-btns { justify-content: center; }
    .mem-hero-content h1 { font-size: 36px; }
    .mem-hero-content h2 { font-size: 20px; }
}

/* ==========================================================================
   Roadmap Page CSS
   ========================================================================== */
.rm-wrapper { background-color: #060b19; color: var(--text-white); font-family: var(--font-main); padding-bottom: 80px; }
.rm-container { max-width: 100%; margin: 0 auto; padding: 0; }

/* Hero Section */
.rm-hero { display: flex; align-items: center; justify-content: space-between; padding: 60px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.rm-hero-content { flex: 1; max-width: 600px; }
.rm-version-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(168,85,247,0.1); border: 1px solid var(--accent-purple); color: var(--text-white); padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 20px; letter-spacing: 1px; }
.rm-version-tag i { color: var(--accent-purple); font-size: 8px; }
.rm-hero-title { font-size: 50px; font-weight: 800; margin-bottom: 10px; line-height: 1.1; color: #fff; }
.rm-hero-subtitle { font-size: 24px; font-weight: 600; color: #fff; margin-bottom: 15px; }
.rm-hero-desc { font-size: 16px; color: var(--text-gray); line-height: 1.6; margin-bottom: 30px; max-width: 90%; }
.rm-hero-btns { display: flex; gap: 15px; }
.rm-join-btn { background: var(--accent-yellow); color: #000; padding: 12px 24px; border-radius: 8px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 10px; transition: all 0.3s; }
.rm-join-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(250,204,21,0.4); }
.rm-outline-btn { background: transparent; color: #fff; padding: 12px 24px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s; }
.rm-outline-btn:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }
.rm-hero-image { flex: 1; display: flex; justify-content: flex-end; }
.rm-hero-ph { width: 450px; height: 350px; border: none; border-radius: 20px; background: transparent; mix-blend-mode: screen; object-fit: contain; animation: float 6s ease-in-out infinite; }

/* Common Section */
.rm-section { margin-top: 60px; }
.rm-sec-header { text-align: center; margin-bottom: 40px; position: relative; }
.rm-sec-header h3 { display: inline-block; font-size: 18px; font-weight: 700; color: #fff; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; position: relative; }
.rm-sec-header h3::before, .rm-sec-header h3::after { content: ''; position: absolute; top: 50%; width: 40px; height: 1px; background: rgba(255,255,255,0.2); }
.rm-sec-header h3::before { right: 100%; margin-right: 15px; }
.rm-sec-header h3::after { left: 100%; margin-left: 15px; }
.rm-sec-header p { font-size: 14px; color: var(--text-gray); }

/* Timeline */
.rm-timeline { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.rm-tl-node { display: flex; flex-direction: column; align-items: center; text-align: center; }
.rm-tl-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 15px; border: 2px solid; background: rgba(13,19,35,0.8); }
.rm-tl-node h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; color: #fff; }
.rm-tl-node span { font-size: 11px; font-weight: 600; }
.rm-tl-arrow { color: rgba(255,255,255,0.2); font-size: 16px; margin-bottom: 40px; }
.rm-tl-green .rm-tl-icon { border-color: var(--accent-green); color: var(--accent-green); box-shadow: 0 0 20px rgba(34,197,94,0.2); }
.rm-tl-green span { color: var(--accent-green); }
.rm-tl-yellow .rm-tl-icon { border-color: var(--accent-yellow); color: var(--accent-yellow); box-shadow: 0 0 20px rgba(250,204,21,0.2); }
.rm-tl-yellow span { color: var(--accent-yellow); }
.rm-tl-blue .rm-tl-icon { border-color: #3b82f6; color: #3b82f6; box-shadow: 0 0 20px rgba(59,130,246,0.2); }
.rm-tl-blue span { color: #3b82f6; }
.rm-tl-purple .rm-tl-icon { border-color: var(--accent-purple); color: var(--accent-purple); box-shadow: 0 0 20px rgba(168,85,247,0.2); }
.rm-tl-purple span { color: var(--accent-purple); }

/* Versions Grid */
.rm-versions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.rm-ver-card { background: rgba(13, 19, 35, 0.4); border-radius: 12px; border: 1px solid; padding: 25px 20px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.rm-ver-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100px; background: inherit; opacity: 0.1; z-index: 0; }
.rm-ver-head { position: relative; z-index: 1; margin-bottom: 25px; min-height: 85px; }
.rm-ver-num { font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; display: block; }
.rm-ver-title { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.rm-ver-badge { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 700; border: 1px solid; }

.rm-ver-list { list-style: none; padding: 0; margin: 0 0 30px 0; position: relative; z-index: 1; flex: 1; }
.rm-ver-list li { font-size: 13px; color: #e2e8f0; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.rm-ver-list li i { font-size: 14px; margin-top: 2px; }

.rm-ver-img-box { position: relative; z-index: 1; text-align: center; }
.rm-col-ph { width: auto; max-width: 100%; height: 150px; border: 1px dashed rgba(255,255,255,0.1); border-radius: 10px; background: rgba(0,0,0,0.2); object-fit: contain; margin-bottom: 15px; display: inline-block; }
.rm-ver-text { font-size: 12px; color: var(--text-gray); line-height: 1.5; }
.rm-ver-status { display: inline-flex; align-items: center; gap: 8px; padding: 6px 15px; border-radius: 20px; font-size: 12px; font-weight: 600; border: 1px solid; margin: 0 auto; }

/* Colors mapping */
.rm-ver-active { border-color: rgba(34,197,94,0.3); box-shadow: inset 0 0 30px rgba(34,197,94,0.05); }
.rm-ver-active .rm-ver-num { color: var(--accent-green); }
.rm-ver-active::before { background: var(--accent-green); }
.badge-green { border-color: var(--accent-green); color: var(--accent-green); background: rgba(34,197,94,0.1); }
.list-green li i { color: var(--accent-green); }
.rm-ver-active .rm-ver-status { border-color: var(--accent-green); color: var(--accent-green); background: rgba(34,197,94,0.05); }

.rm-ver-coming { border-color: rgba(250,204,21,0.3); box-shadow: inset 0 0 30px rgba(250,204,21,0.05); }
.rm-ver-coming .rm-ver-num { color: var(--accent-yellow); }
.rm-ver-coming::before { background: var(--accent-yellow); }
.badge-yellow { border-color: var(--accent-yellow); color: var(--accent-yellow); background: rgba(250,204,21,0.1); }
.list-yellow li i { color: var(--accent-yellow); }

.rm-ver-future { border-color: rgba(59,130,246,0.3); box-shadow: inset 0 0 30px rgba(59,130,246,0.05); }
.rm-ver-future .rm-ver-num { color: #3b82f6; }
.rm-ver-future::before { background: #3b82f6; }
.badge-blue { border-color: #3b82f6; color: #3b82f6; background: rgba(59,130,246,0.1); }
.list-blue li i { color: #3b82f6; }

.rm-ver-beyond { border-color: rgba(168,85,247,0.3); box-shadow: inset 0 0 30px rgba(168,85,247,0.05); }
.rm-ver-beyond .rm-ver-num { color: var(--accent-purple); }
.rm-ver-beyond::before { background: var(--accent-purple); }
.list-purple li i { color: var(--accent-purple); }
.rm-ver-beyond .rm-ver-text { color: var(--accent-purple); }

/* Goals Grid */
.rm-goals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rm-goal-card { background: rgba(13, 19, 35, 0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 25px; }
.rm-goal-head { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.rm-goal-list { list-style: none; padding: 0; margin: 0; }
.rm-goal-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
.rm-goal-list li i { font-size: 20px; margin-top: 2px; }
.rm-goal-list li div { display: flex; flex-direction: column; }
.rm-goal-list li div strong { font-size: 14px; color: #fff; margin-bottom: 3px; }
.rm-goal-list li div span { font-size: 12px; color: var(--text-gray); line-height: 1.3; }
.list-green-alt li i { color: var(--accent-green); }
.list-yellow-alt li i { color: var(--accent-yellow); }
.list-blue-alt li i { color: #3b82f6; }

/* Mid & Bot Splits */
.rm-mid-split, .rm-bot-split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 60px; }
.rm-sec-header-sm h3 { font-size: 14px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; text-align: center; }

/* Why Roadmap */
.rm-why-card, .rm-flow-card, .rm-faq-card, .rm-disclaimer-card { background: rgba(13, 19, 35, 0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 30px; }
.rm-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
.rm-why-item { display: flex; flex-direction: column; align-items: center; }
.rm-why-icon { font-size: 24px; margin-bottom: 15px; }
.icon-green { color: var(--accent-green); }
.icon-yellow { color: var(--accent-yellow); }
.icon-blue { color: #3b82f6; }
.rm-why-item h4 { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.rm-why-item p { font-size: 10px; color: var(--text-gray); line-height: 1.4; }

/* Flow */
.rm-flow-track { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.rm-flow-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 60px; }
.rm-flow-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 10px; background: rgba(0,0,0,0.2); }
.rm-flow-step span { font-size: 9px; color: #fff; line-height: 1.2; }
.rm-flow-arrow { font-size: 10px; color: rgba(255,255,255,0.2); margin-bottom: 20px; }

/* FAQ */
.rm-faq-list { display: flex; flex-direction: column; gap: 10px; }
.rm-faq-item { background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: all 0.3s; }
.rm-faq-item:hover { border-color: rgba(255,255,255,0.1); }
.rm-faq-q { font-size: 13px; color: #fff; display: flex; align-items: center; gap: 10px; }
.rm-faq-icon { color: var(--text-gray); font-size: 12px; }

/* Disclaimer */
.rm-disclaimer-card { border-color: rgba(250,204,21,0.2); }
.rm-disc-content { display: flex; gap: 20px; align-items: flex-start; }
.rm-disc-icon { font-size: 30px; color: var(--accent-yellow); flex-shrink: 0; }
.rm-disc-content p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* Bottom CTA */
.rm-cta-card { background: rgba(13, 19, 35, 0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 40px 50px; margin-top: 60px; display: flex; justify-content: space-between; align-items: center; position: relative; overflow: hidden; }
.rm-cta-content h2 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.rm-cta-content p { font-size: 14px; color: var(--text-gray); line-height: 1.5; }
.rm-cta-btns { display: flex; gap: 15px; margin: 0 30px; z-index: 2; }
.rm-cta-img-box { position: absolute; right: 0; top: 0; bottom: 0; display: flex; align-items: center; padding-right: 30px; z-index: 1; }
.rm-cta-ph { width: 150px; height: 150px; border: 1px dashed rgba(255,255,255,0.1); border-radius: 10px; object-fit: contain; background: rgba(0,0,0,0.2); }

/* Responsive Roadmap */
@media (max-width: 1200px) {
    .rm-versions-grid { grid-template-columns: repeat(2, 1fr); }
    .rm-goals-grid { grid-template-columns: 1fr; }
    .rm-mid-split, .rm-bot-split { grid-template-columns: 1fr; }
    .rm-cta-card { flex-direction: column; text-align: center; gap: 30px; padding: 40px 20px; }
    .rm-cta-btns { margin: 0; }
    .rm-cta-img-box { position: relative; padding-right: 0; }
}

@media (max-width: 768px) {
    .rm-hero { flex-direction: column; text-align: center; gap: 40px; }
    .rm-hero-desc { margin: 0 auto 30px; }
    .rm-hero-btns { justify-content: center; }
    .rm-versions-grid { grid-template-columns: 1fr; }
    .rm-why-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .rm-hero-ph { width: 100%; max-width: 350px; height: auto; aspect-ratio: 4/3; }
}

/* ==========================================================================
   Agents Page CSS
   ========================================================================== */
.agt-hero-ph { width: 450px; height: 350px; border: none; border-radius: 20px; background: transparent; mix-blend-mode: screen; object-fit: contain; animation: float 6s ease-in-out infinite; }

.agt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.agt-card { background: rgba(13, 19, 35, 0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 30px; text-align: center; position: relative; overflow: hidden; transition: all 0.3s ease; }
.agt-card:hover { transform: translateY(-5px); border-color: rgba(59,130,246,0.3); box-shadow: 0 10px 30px rgba(59,130,246,0.1); }
.agt-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple)); }

.agt-img-wrap { width: 100px; height: 100px; margin: 0 auto 20px; border-radius: 50%; padding: 3px; background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)); position: relative; }
.agt-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 3px solid rgba(13, 19, 35, 0.8); background-color: var(--panel-bg); }
.agt-initials { width: 100%; height: 100%; border-radius: 50%; border: 3px solid rgba(13, 19, 35, 0.8); background-color: var(--panel-border); display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: bold; color: var(--text-white); }

.agt-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.agt-status { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--accent-green); background: rgba(34, 197, 94, 0.1); padding: 5px 12px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

.agt-contact { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.agt-contact-item { font-size: 13px; color: var(--text-gray); display: flex; align-items: center; gap: 8px; }
.agt-contact-item i { color: var(--accent-blue); width: 16px; text-align: center; }

.agt-code { background: rgba(0, 0, 0, 0.3); padding: 12px; border-radius: 8px; border: 1px dashed rgba(255,255,255,0.1); margin-bottom: 20px; }
.agt-code span { font-size: 10px; font-weight: 700; color: var(--text-gray); display: block; margin-bottom: 5px; letter-spacing: 1px; }
.agt-code strong { font-size: 16px; font-family: monospace; color: var(--accent-yellow); letter-spacing: 2px; }

.agt-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3); color: var(--accent-blue); text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.agt-btn:hover { background: var(--accent-blue); color: #fff; border-color: var(--accent-blue); }

.agt-empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; background: rgba(13, 19, 35, 0.4); border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); }
.agt-empty i { font-size: 48px; color: var(--text-gray); margin-bottom: 20px; }
.agt-empty h3 { color: #fff; margin-bottom: 10px; font-size: 20px; }
.agt-empty p { color: var(--text-gray); font-size: 14px; }

@media (max-width: 900px) {
    .agt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .agt-grid { grid-template-columns: 1fr; }
    .agt-hero-ph { width: 100%; max-width: 350px; height: auto; aspect-ratio: 4/3; }
}
