/* --- Base & Layout --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; min-height: 100vh; background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%); color: #ffffff; overflow-x: hidden; }

/* --- Header --- */
header { width: 100%; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; position: fixed; top: 0; left: 0; z-index: 1000; background: rgba(0, 0, 0, 0.2); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.logo-area { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, #7C3AED, #5B21B6); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; color: #fff; }
.brand-name { font-size: 1.4rem; font-weight: 700; color: #fff; }
.nav-center { display: flex; justify-content: center; align-items: center; gap: 30px; }
.nav-center a { color: #A1A1AA; text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: color 0.3s ease; }
.nav-center a:hover { color: #fff; }
.header-right { display: flex; align-items: center; gap: 20px; z-index: 1001; }
.auth-buttons { display: flex; align-items: center; gap: 12px; }
.btn { padding: 8px 20px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.3s ease; }
.btn-login { background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; }
.btn-login:hover { background: rgba(255, 255, 255, 0.1); border-color: #A78BFA; }
.btn-signup { background: linear-gradient(90deg, #7C3AED, #5B21B6); border: none; color: #fff; }
.btn-signup:hover { box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4); }

/* Language Switcher */
.lang-switcher { position: relative; display: flex; align-items: center; }
.lang-btn { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; padding: 6px 12px; border-radius: 6px; cursor: pointer; display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; transition: all 0.3s; }
.lang-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: #7C3AED; }
.lang-dropdown { position: absolute; top: 120%; right: 0; background: rgba(30, 30, 40, 0.95); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; width: 120px; padding: 5px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 1005; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.lang-switcher:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option { display: block; padding: 8px 12px; color: #a1a1aa; text-decoration: none; font-size: 0.85rem; border-radius: 5px; transition: background 0.2s; cursor: pointer; }
.lang-option:hover { background: rgba(124, 58, 237, 0.2); color: #fff; }
.lang-option.selected { color: #7C3AED; font-weight: 600; }

/* Mobile Menu */
.menu-toggle { display: none; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; cursor: pointer; z-index: 1002; }
.menu-toggle span { display: block; width: 100%; height: 2px; background-color: #fff; border-radius: 3px; transition: all 0.3s ease; }
.mobile-menu { position: fixed; top: 65px; right: 20px; width: 280px; background: rgba(30, 30, 40, 0.95); backdrop-filter: blur(20px); border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); padding: 20px; display: flex; flex-direction: column; gap: 5px; transform: translateY(-150%); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; z-index: 998; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.mobile-menu.active { transform: translateY(0); opacity: 1; }
.mobile-menu a { color: #fff; text-decoration: none; font-size: 0.95rem; font-weight: 500; padding: 12px; border-radius: 8px; transition: background 0.2s; text-align: left; }
.mobile-menu a:hover { background: rgba(124, 58, 237, 0.2); }
.mobile-auth { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-lang-section { margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: center; gap: 10px; }
.mobile-lang-btn { background: transparent; border: 1px solid rgba(255,255,255,0.1); color: #a1a1aa; padding: 8px 16px; border-radius: 20px; cursor: pointer; font-size: 0.85rem; transition: all 0.3s; }
.mobile-lang-btn.active { background: #7C3AED; color: #fff; border-color: #7C3AED; }

@media (max-width: 900px) { .nav-center { display: none; } .auth-buttons { display: none; } .lang-switcher { display: none; } .menu-toggle { display: flex; } }

/* Hero */
.hero-section { min-height: 90vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 5%; padding-top: 60px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid #ffffff; border-radius: 40px; padding: 8px 20px; background: rgba(255, 255, 255, 0.05); margin-bottom: 30px; }
.badge-icon { width: 10px; height: 10px; background-color: #22c55e; border-radius: 50%; box-shadow: 0 0 10px #22c55e; animation: pulse 2s infinite; }
.badge-text { font-size: 0.9rem; font-weight: 500; color: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); } 70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }
.hero-content { max-width: 800px; }
.hero-title { font-size: 3.5rem; font-weight: 700; line-height: 1.1; margin-bottom: 20px; background: linear-gradient(to right, #ffffff, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.1rem; color: #a1a1aa; line-height: 1.6; margin-bottom: 40px; }
.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-cta { display: inline-block; padding: 12px 30px; background: linear-gradient(90deg, #7C3AED, #5B21B6); color: white; font-size: 0.95rem; font-weight: 600; border-radius: 8px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 0 15px rgba(124, 58, 237, 0.3); }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 5px 25px rgba(124, 58, 237, 0.5); }
.btn-learn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 30px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: white; font-size: 0.95rem; font-weight: 600; border-radius: 8px; text-decoration: none; transition: all 0.3s ease; }
.btn-learn:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-3px); }
@media (max-width: 768px) { .hero-title { font-size: 2.2rem; } .hero-buttons { flex-direction: column; width: 100%; } .btn-cta, .btn-learn { width: 100%; text-align: center; justify-content: center; } }

/* Stats */
.portfolio-section { padding: 80px 5%; background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.stat-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 25px 15px; background: rgba(255, 255, 255, 0.03); border: 1px solid #ffffff; border-radius: 15px; transition: all 0.3s ease; cursor: default; }
.stat-badge:hover { transform: scale(1.05); background: rgba(255, 255, 255, 0.08); }
.stat-number { font-size: 2.5rem; font-weight: 700; color: #ffffff; margin-bottom: 5px; transition: font-weight 0.3s ease; display: flex; align-items: center; }
.stat-label { font-size: 0.9rem; color: #ffffff; font-weight: 400; text-align: center; opacity: 0.8; }
.stat-icon { color: #22c55e; font-size: 0.8rem; margin-left: 5px; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* Why Us */
.why-us-section { padding: 80px 5%; background: #0F0F0F; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 15px; color: #fff; }
.section-header p { color: #a1a1aa; font-size: 1rem; line-height: 1.6; }
.reasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.reason-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 20px; text-align: left; transition: all 0.3s ease; opacity: 0; transform: translateY(50px); }
.reason-card.visible { opacity: 1; transform: translateY(0); }
.icon-box { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; font-size: 1rem; }
.reason-card:nth-child(1) .icon-box { background: rgba(124, 58, 237, 0.1); color: #7C3AED; }
.reason-card:nth-child(2) .icon-box { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.reason-card:nth-child(3) .icon-box { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.reason-card:nth-child(4) .icon-box { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.reason-card h3 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.reason-card p { font-size: 0.85rem; color: #a1a1aa; line-height: 1.5; }
.reason-card:hover { transform: translateY(-5px); border-color: rgba(124, 58, 237, 0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
@media (max-width: 900px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reasons-grid { grid-template-columns: 1fr; } }

/* Coins */
.top-rated-section { padding: 80px 5%; background: linear-gradient(135deg, #1a0b2e 0%, #000000 100%); }
.coin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.coin-badge { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 20px; display: flex; align-items: center; justify-content: space-between; transition: transform 0.3s; }
.coin-badge:hover { transform: translateY(-3px); border-color: #7C3AED; }
.coin-info { display: flex; align-items: center; gap: 12px; }
.coin-icon { width: 35px; height: 35px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.8rem; }
.coin-name { font-weight: 600; font-size: 0.95rem; }
.coin-rate { text-align: right; }
.rate-value { font-weight: 700; font-size: 1.1rem; color: #fff; }
.rate-change { font-size: 0.8rem; display: flex; align-items: center; gap: 5px; justify-content: flex-end; }
.rate-up { color: #22c55e; }
.rate-down { color: #ef4444; }
@media (max-width: 900px) { .coin-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .coin-grid { grid-template-columns: 1fr; } }

/* Steps */
.how-to-section { padding: 80px 5%; background: #0F0F0F; }
.steps-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; position: relative; }
.steps-container::before { content: ''; position: absolute; top: 40px; left: 10%; width: 80%; height: 2px; background: rgba(255,255,255,0.1); z-index: 0; }
.step-item { position: relative; z-index: 1; text-align: center; }
.step-circle { width: 80px; height: 80px; background: #1a1a1a; border: 2px solid #7C3AED; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #7C3AED; box-shadow: 0 0 15px rgba(124, 58, 237, 0.2); transition: all 0.3s; }
.step-item:hover .step-circle { background: #7C3AED; color: #fff; transform: scale(1.1); }
.step-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: #fff; }
.step-desc { font-size: 0.9rem; color: #a1a1aa; line-height: 1.5; }
@media (max-width: 900px) { .steps-container { grid-template-columns: repeat(2, 1fr); gap: 40px; } .steps-container::before { display: none; } }
@media (max-width: 600px) { .steps-container { grid-template-columns: 1fr; } }

/* FAQ */
.faq-section { padding: 80px 5%; background: linear-gradient(135deg, #000000 0%, #1a0b2e 100%); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; background: rgba(255, 255, 255, 0.02); }
.faq-question { width: 100%; padding: 20px; background: transparent; border: none; color: #fff; font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: rgba(0,0,0,0.2); }
.faq-answer p { padding: 20px; color: #a1a1aa; font-size: 0.95rem; line-height: 1.6; }
.faq-item.active .faq-answer { max-height: 500px; }

/* CTA */
.final-cta-section { padding: 100px 5%; background: radial-gradient(circle at center, #2d1b4e 0%, #000000 70%); text-align: center; position: relative; overflow: hidden; }
.cta-blob { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; }
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; color: #fff; }
.cta-subtext { font-size: 1.1rem; color: #a1a1aa; margin-bottom: 40px; }
.btn-cta-large { display: inline-block; padding: 16px 40px; background: linear-gradient(90deg, #7C3AED, #5B21B6); color: white; font-size: 1.1rem; font-weight: 600; border-radius: 8px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 0 25px rgba(124, 58, 237, 0.4); }
.btn-cta-large:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 35px rgba(124, 58, 237, 0.6); }

/* Footer */
.main-footer { background: #090909; padding: 60px 5% 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-brand p { color: #a1a1aa; margin-top: 15px; font-size: 0.9rem; line-height: 1.6; max-width: 300px; }
.footer-col h5 { color: #fff; margin-bottom: 20px; font-size: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #a1a1aa; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: #7C3AED; }
.social-links { display: flex; gap: 15px; margin-top: 5px; }
.social-links a { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; transition: all 0.3s; }
.social-links a:hover { background: #7C3AED; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; text-align: center; color: #555; font-size: 0.85rem; max-width: 1200px; margin: 0 auto; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .cta-title { font-size: 2rem; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } .footer-brand { margin-bottom: 20px; } .footer-brand p { margin: 15px auto 0; } .social-links { justify-content: center; } }

.review-wrapper {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    padding: 80px 0; /* Padding for the whole page */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Container with Margins --- */
.review-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%; /* Margins at sides */
}

/* --- Animations --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.review-animate { opacity: 0; animation: fadeIn 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }

/* --- Section Title Badge & Header (Left Aligned) --- */
.review-header-section {
    margin-bottom: 40px;
    text-align: left; /* Left Aligned */
}

.review-section-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    color: #A78BFA;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.review-header-section h1 { 
    font-size: 2rem; 
    margin-bottom: 8px; 
    background: linear-gradient(to right, #ffffff, #a78bfa); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}
.review-header-section p { color: #a1a1aa; font-size: 0.9rem; max-width: 500px; }

/* --- Carousel Section --- */
.review-carousel-section { 
    width: 100%; 
    overflow: hidden; 
    position: relative;
}

.review-carousel-container { position: relative; width: 100%; }

.review-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth loop transition */
    gap: 20px; /* Gap between cards */
}

.review-slide {
    flex: 0 0 auto; /* Prevent shrinking/growing */
    /* Calculated width via JS based on slidesToShow */
}

/* --- Card Styling (Decreased Size) --- */
.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 220px; /* Min height for uniformity */
}

.review-quote-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: rgba(124, 58, 237, 0.15);
}

.review-stars {
    margin-bottom: 12px;
    color: #fbbf24;
    font-size: 0.8rem;
}

.far.fa-star { color: #4b5563; } /* Empty star */

.review-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d1d5db;
    margin-bottom: 15px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #5B21B6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.review-author-info h4 { font-size: 0.85rem; margin-bottom: 2px; }
.review-author-info p { font-size: 0.7rem; color: #7C3AED; font-weight: 500; }

/* --- Navigation --- */
.review-nav-wrapper {
    display: flex;
    justify-content: flex-start; /* Left align or center? Defaulting to left under title looks nice, but let's center for standard carousel */
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.review-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.review-nav-btn:hover { background: #7C3AED; border-color: #7C3AED; }

.review-dots {
    display: flex;
    gap: 8px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.review-dot.active { background: #7C3AED; width: 24px; border-radius: 10px; } /* Active dot elongated */


.about-wrapper {
font-family: 'Inter', sans-serif;
min-height: 100vh;
background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%);
color: #ffffff;
overflow-x: hidden;
position: relative;
padding-top: 100px; /* Space for breadcrumb */
}

/* --- Breadcrumb --- */
.about-breadcrumb {
position: absolute;
top: 15vh;
left: 5%;
font-size: 0.9rem;
color: #a1a1aa;
z-index: 10;
display: flex;
align-items: center;
gap: 10px;
opacity: 0;
animation: fadeIn 1s ease forwards;
}
.about-breadcrumb a {
color: #7C3AED;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.about-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.about-breadcrumb span { color: #666; }

/* --- Animations --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.about-animate-item {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.about-animate-item.visible {
opacity: 1;
transform: translateY(0);
}
/* Staggering delay utility classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Section Title Badge --- */
.about-section-badge {
display: inline-block;
padding: 8px 24px;
background: rgba(124, 58, 237, 0.1);
border: 1px solid rgba(124, 58, 237, 0.3);
border-radius: 50px; /* Pill shape */
color: #A78BFA;
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
}

/* --- Page Hero --- */
.about-hero {
padding: 60px 5% 80px;
text-align: center;
position: relative;
}
.about-hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
background: linear-gradient(to right, #ffffff, #a78bfa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.about-hero p {
color: #a1a1aa;
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto;
}

/* --- Mission Section --- */
.about-mission {
padding: 100px 5%;
background: #0F0F0F;
}
.about-mission-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
max-width: 1200px;
margin: 0 auto;
align-items: center;
}
.about-mission-content h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #fff;
margin-top: 10px; /* Space for badge */
}
.about-mission-content p {
color: #a1a1aa;
font-size: 1rem;
line-height: 1.8;
margin-bottom: 15px;
}
.about-mission-visual {
position: relative;
height: 400px;
background: rgba(124, 58, 237, 0.05);
border-radius: 20px;
border: 1px solid rgba(255,255,255,0.05);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
transition: transform 0.5s ease;
}
.about-mission-visual:hover { transform: scale(1.02); }
.about-mission-visual i {
font-size: 8rem;
color: #7C3AED;
opacity: 0.2;
transition: all 0.5s ease;
}
.about-mission-visual:hover i { opacity: 0.4; transform: scale(1.1); }

.about-floating-card {
position: absolute;
background: rgba(255,255,255,0.05);
backdrop-filter: blur(10px);
padding: 15px 25px;
border-radius: 10px;
border: 1px solid rgba(255,255,255,0.1);
color: #fff;
font-weight: 600;
box-shadow: 0 10px 20px rgba(0,0,0,0.3);
transition: all 0.3s ease;
}
.about-mission-visual:hover .about-floating-card { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }

@media (max-width: 900px) {
.about-mission-grid { grid-template-columns: 1fr; }
.about-hero h1 { font-size: 2.5rem; }
}

/* --- Values Section --- */
.about-values {
padding: 100px 5%;
background: linear-gradient(135deg, #1a0b2e 0%, #000000 100%);
}
.about-values-header {
text-align: center;
max-width: 700px;
margin: 0 auto 60px;
}
.about-values-header h2 { font-size: 2.5rem; margin-bottom: 15px; color: #fff; }
.about-values-header p { color: #a1a1aa; font-size: 1rem; line-height: 1.6; }

.about-values-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}
.about-value-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 40px 30px;
text-align: center;
transition: all 0.4s ease;
}
.about-value-card:hover {
transform: translateY(-10px);
border-color: rgba(124, 58, 237, 0.3);
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
background: rgba(255, 255, 255, 0.05);
}
.about-value-icon {
width: 70px;
height: 70px;
background: rgba(124, 58, 237, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
color: #7C3AED;
font-size: 1.8rem;
transition: all 0.4s ease;
}
.about-value-card:hover .about-value-icon {
background: #7C3AED;
color: #fff;
transform: rotate(5deg) scale(1.1);
}
.about-value-card h3 { margin-bottom: 15px; color: #fff; font-size: 1.3rem; transition: color 0.3s; }
.about-value-card:hover h3 { color: #A78BFA; }
.about-value-card p { color: #a1a1aa; font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 768px) { .about-values-grid { grid-template-columns: 1fr; } }

/* --- Story / Timeline --- */
.about-story {
padding: 100px 5%;
}
.about-timeline {
position: relative;
max-width: 800px;
margin: 0 auto;
}
.about-timeline::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 2px;
background: rgba(255,255,255,0.1);
transform: translateX(-50%);
}
.about-timeline-item {
padding: 20px;
position: relative;
width: 50%;
}
.about-timeline-item.left { left: 0; text-align: right; padding-right: 40px; }
.about-timeline-item.right { left: 50%; text-align: left; padding-left: 40px; }
.about-timeline-dot {
position: absolute;
top: 25px;
width: 16px;
height: 16px;
background: #7C3AED;
border-radius: 50%;
z-index: 1;
border: 3px solid #0F0F0F;
transition: transform 0.3s;
}
.about-timeline-item:hover .about-timeline-dot { transform: scale(1.5); }

.about-timeline-item.left .about-timeline-dot { right: -8px; }
.about-timeline-item.right .about-timeline-dot { left: -8px; }

.about-timeline-year { color: #7C3AED; font-weight: 700; font-size: 1.2rem; margin-bottom: 5px; }
.about-timeline-title { color: #fff; font-size: 1.1rem; margin-bottom: 5px; transition: color 0.3s; }
.about-timeline-item:hover .about-timeline-title { color: #A78BFA; }
.about-timeline-desc { color: #a1a1aa; font-size: 0.9rem; }

@media (max-width: 768px) {
.about-timeline::before { left: 20px; }
.about-timeline-item { width: 100%; text-align: left; padding-left: 60px; padding-right: 20px; }
.about-timeline-item.left, .about-timeline-item.right { left: 0; }
.about-timeline-dot { left: 12px; }
}

/* --- Team Section --- */
.about-team {
padding: 100px 5%;
background: #0F0F0F;
}
.about-team-header { text-align: center; margin-bottom: 60px; }
.about-team-header h2 { font-size: 2.5rem; color: #fff; margin-top: 10px; }

.about-team-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}
.about-team-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 30px;
text-align: center;
transition: all 0.4s ease;
}
.about-team-card:hover {
transform: translateY(-10px) scale(1.02);
border-color: rgba(124, 58, 237, 0.5);
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.about-team-avatar {
width: 100px;
height: 100px;
background: linear-gradient(135deg, #7C3AED, #5B21B6);
border-radius: 50%;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
font-weight: 700;
color: #fff;
border: 3px solid #1a0b2e;
transition: border-color 0.3s;
}
.about-team-card:hover .about-team-avatar { border-color: #A78BFA; }

.about-team-card h3 {
font-size: 1.2rem;
margin-bottom: 5px;
color: #fff;
}
.about-team-role {
color: #7C3AED;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 15px;
display: block;
}
.about-team-card p {
color: #a1a1aa;
font-size: 0.9rem;
margin-bottom: 20px;
line-height: 1.5;
}
.about-social-links {
display: flex;
justify-content: center;
gap: 15px;
}
.about-social-links a {
color: #a1a1aa;
transition: color 0.3s, transform 0.3s;
display: inline-block;
}
.about-social-links a:hover { color: #fff; transform: translateY(-3px); }

@media (max-width: 900px) { .about-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .about-team-grid { grid-template-columns: 1fr; } }

/* --- CTA Section (Confined Container) --- */
.about-cta-section {
padding: 100px 5%;
display: flex;
justify-content: center;
align-items: center;
}
.about-cta-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(124, 58, 237, 0.2);
border-radius: 20px;
padding: 60px 40px;
max-width: 800px;
width: 100%;
text-align: center;
position: relative;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
transition: border-color 0.3s, transform 0.3s;
}
.about-cta-card:hover {
border-color: #7C3AED;
transform: translateY(-5px);
}
/* Decorative background inside card */
.about-cta-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
z-index: 0;
animation: rotate 20s linear infinite;
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.about-cta-content { position: relative; z-index: 1; }
.about-cta-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; color: #fff; }
.about-cta-subtext { font-size: 1.1rem; color: #a1a1aa; margin-bottom: 40px; }
.about-btn-main {
display: inline-block;
padding: 16px 40px;
background: linear-gradient(90deg, #7C3AED, #5B21B6);
color: white;
font-size: 1.1rem;
font-weight: 600;
border-radius: 8px;
text-decoration: none;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}
.about-btn-main:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 5px 25px rgba(124, 58, 237, 0.5); }

.plans-wrapper {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    padding-top: 100px; /* Space for breadcrumb */
}

/* --- Utilities --- */
.plans-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* --- Animations --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.plans-animate { opacity: 0; animation: fadeInUp 0.8s ease forwards; }
.plans-animate.visible { opacity: 1; } /* For JS trigger */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* --- Breadcrumb --- */
.plans-breadcrumb {
    position: absolute;
    top: 15vh;
    left: 5%;
    font-size: 0.9rem;
    color: #a1a1aa;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}
.plans-breadcrumb a { color: #7C3AED; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.plans-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.plans-breadcrumb span { color: #666; }

/* --- Section Title Badge --- */
.plans-section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    color: #A78BFA;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* --- Hero Section --- */
.plans-hero { padding: 60px 0 80px; text-align: center; }
.plans-hero h1 { font-size: 3.5rem; margin-bottom: 20px; background: linear-gradient(to right, #ffffff, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.plans-hero p { color: #a1a1aa; font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; }

.plans-hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.plans-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
}
.plans-hero-feature i { color: #22c55e; }

/* --- Pricing Cards --- */
.plans-pricing-section { padding: 80px 0; background: #0F0F0F; }
.plans-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.plans-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.plans-card:hover { transform: translateY(-10px); border-color: rgba(124, 58, 237, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

.plans-card-popular { border-color: #7C3AED; background: rgba(124, 58, 237, 0.05); }
.plans-card-popular:hover { border-color: #A78BFA; }

.plans-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.badge-popular { background: #7C3AED; color: #fff; }
.badge-value { background: #22c55e; color: #fff; }
.badge-vip { background: #f59e0b; color: #000; }

.plans-card-header { margin-bottom: 20px; text-align: center; }
.plans-card-title { font-size: 1.5rem; margin-bottom: 5px; }
.plans-card-range { color: #a1a1aa; font-size: 0.85rem; margin-bottom: 15px; display: block; }

.plans-price-box {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}
.plans-price-rate { font-size: 2rem; font-weight: 700; color: #7C3AED; }
.plans-price-period { font-size: 0.85rem; color: #a1a1aa; }
.plans-price-row { display: flex; justify-content: space-between; font-size: 0.8rem; color: #a1a1aa; margin-top: 5px; padding-top: 5px; border-top: 1px solid rgba(255,255,255,0.05); }

.plans-card-features { list-style: none; margin-bottom: 30px; }
.plans-card-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #ccc; margin-bottom: 10px; }
.plans-card-features li i { color: #22c55e; font-size: 0.8rem; }

.plans-card-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}
.plans-card-btn:hover { background: #fff; color: #000; }
.plans-card-popular .plans-card-btn { background: #7C3AED; border-color: #7C3AED; }
.plans-card-popular .plans-card-btn:hover { background: #A78BFA; border-color: #A78BFA; }

@media (max-width: 1100px) { .plans-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .plans-pricing-grid { grid-template-columns: 1fr; } }

/* --- Comparison Table --- */
.plans-compare-section { padding: 100px 0; }
.plans-table-container { overflow-x: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); }
.plans-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.plans-table th, .plans-table td { padding: 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.plans-table th { background: rgba(124, 58, 237, 0.1); color: #fff; font-weight: 600; font-size: 0.9rem; }
.plans-table td { color: #a1a1aa; font-size: 0.9rem; }
.plans-table tr:hover td { background: rgba(255,255,255,0.02); }
.plans-table .feature-name { text-align: left; font-weight: 500; color: #fff; }

/* --- Features Grid --- */
.plans-features-section { padding: 100px 0; }
.plans-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plans-feature-card { padding: 30px; background: rgba(255,255,255,0.02); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); text-align: center; transition: transform 0.3s; }
.plans-feature-card:hover { transform: translateY(-5px); }
.plans-feature-card i { font-size: 2rem; color: #7C3AED; margin-bottom: 15px; }
.plans-feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.plans-feature-card p { font-size: 0.85rem; color: #a1a1aa; line-height: 1.5; }
@media (max-width: 900px) { .plans-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plans-features-grid { grid-template-columns: 1fr; } }

/* --- FAQ --- */
.plans-faq-section { padding: 100px 0; background: #0F0F0F; }
.plans-faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.plans-faq-question { width: 100%; background: none; border: none; padding: 20px 0; text-align: left; color: #fff; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.plans-faq-question i { transition: transform 0.3s; color: #7C3AED; }
.plans-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: #a1a1aa; font-size: 0.9rem; line-height: 1.6; }
.plans-faq-item.active .plans-faq-answer { max-height: 200px; padding-bottom: 20px; }
.plans-faq-item.active .plans-faq-question i { transform: rotate(45deg); }

/* --- CTA --- */
.plans-cta-section { padding: 100px 0; text-align: center; }
.plans-cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.plans-cta-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.plans-cta-content { position: relative; z-index: 1; }
.plans-cta-title { font-size: 2.5rem; margin-bottom: 15px; }
.plans-cta-text { color: #a1a1aa; margin-bottom: 30px; font-size: 1.1rem; }
.plans-btn-main { display: inline-block; padding: 16px 40px; background: linear-gradient(90deg, #7C3AED, #5B21B6); color: white; font-size: 1.1rem; font-weight: 600; border-radius: 8px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 0 15px rgba(124, 58, 237, 0.3); }
.plans-btn-main:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 5px 25px rgba(124, 58, 237, 0.5); }
      
.contact-wrapper {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    padding-top: 80px;
    padding-bottom: 60px;
}

/* --- Consistent Container with Margins --- */
.contact-container {
    max-width: 1100px; /* Controlled width */
    margin: 0 auto;
    padding: 0 40px; /* Consistent side margins */
    width: 100%;
}

/* --- Animations --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.contact-animate { opacity: 0; animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* --- Breadcrumb --- */
.contact-breadcrumb {
    position: absolute;
    top: 15vh;
    left: 5vw;
    font-size: 0.8rem;
    color: #a1a1aa;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-breadcrumb a { color: #7C3AED; text-decoration: none; font-weight: 500; }
.contact-breadcrumb span { color: #666; }

/* --- Section Title Badge --- */
.contact-section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    color: #A78BFA;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* --- Hero Section --- */
.contact-hero { padding: 40px 0 30px; text-align: center; }
.contact-hero h1 { font-size: 2.2rem; margin-bottom: 10px; background: linear-gradient(to right, #ffffff, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-hero p { color: #a1a1aa; font-size: 0.9rem; max-width: 500px; margin: 0 auto; line-height: 1.5; }

/* --- Contact Methods Grid --- */
.contact-methods-section { padding: 30px 0; }
.contact-methods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }

.contact-method-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}
.contact-method-card:hover { transform: translateY(-3px); border-color: rgba(124, 58, 237, 0.3); }

.contact-method-icon { width: 40px; height: 40px; background: rgba(124, 58, 237, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: #7C3AED; font-size: 1rem; }
.contact-method-card h3 { font-size: 0.9rem; margin-bottom: 5px; color: #fff; }
.contact-method-card p { font-size: 0.75rem; color: #666; margin-bottom: 10px; line-height: 1.4; }
.contact-method-value { font-size: 0.8rem; color: #fff; font-weight: 500; margin-bottom: 8px; display: block; }
.contact-method-link { display: inline-block; font-size: 0.7rem; color: #7C3AED; font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.contact-method-link:hover { border-color: #7C3AED; }

@media (max-width: 900px) { .contact-methods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .contact-methods-grid { grid-template-columns: 1fr; } }

/* --- Main Content: Form & Info --- */
.contact-main-section { padding: 40px 0; background: #0F0F0F; }
.contact-main-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }

/* Form */
.contact-form-card { background: rgba(255,255,255,0.02); border-radius: 16px; padding: 25px; border: 1px solid rgba(255,255,255,0.05); }
.contact-form-header { margin-bottom: 20px; }
.contact-form-header h2 { font-size: 1.4rem; margin-bottom: 4px; color: #fff; }
.contact-form-header p { color: #666; font-size: 0.8rem; }

.contact-form-group { margin-bottom: 15px; }
.contact-form-group label { display: block; margin-bottom: 6px; font-size: 0.8rem; color: #ccc; }

.contact-input, .contact-select, .contact-textarea {
    width: 100%; padding: 10px 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; color: #fff; font-family: 'Inter'; font-size: 0.85rem; transition: border-color 0.3s; outline: none;
}
.contact-input:focus, .contact-select:focus, .contact-textarea:focus { border-color: #7C3AED; }
.contact-textarea { min-height: 100px; resize: vertical; }

.contact-btn-submit {
    width: 100%; padding: 12px; background: linear-gradient(90deg, #7C3AED, #5B21B6); border: none; border-radius: 6px; color: #fff; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: opacity 0.3s;
}
.contact-btn-submit:hover { opacity: 0.9; }

/* Info Sidebar */
.contact-info-sidebar { display: flex; flex-direction: column; gap: 20px; }

.contact-info-box { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 20px; border: 1px solid rgba(255,255,255,0.05); }
.contact-info-box h4 { font-size: 0.9rem; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.contact-info-box h4 i { color: #7C3AED; font-size: 0.9rem; }

.contact-hours-list { list-style: none; }
.contact-hours-list li { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.8rem; color: #888; }
.contact-hours-list li span:last-child { color: #ccc; font-weight: 500; }

.contact-social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-social-item { background: rgba(0,0,0,0.2); padding: 12px 10px; border-radius: 6px; text-align: center; transition: background 0.3s; }
.contact-social-item:hover { background: rgba(124, 58, 237, 0.1); }
.contact-social-item i { font-size: 1rem; margin-bottom: 4px; color: #A78BFA; display: block; }
.contact-social-item p { font-size: 0.75rem; color: #fff; font-weight: 500; }
.contact-social-item span { font-size: 0.65rem; color: #666; display: block; margin-top: 2px; }

@media (max-width: 900px) { .contact-main-grid { grid-template-columns: 1fr; } }

/* --- Offices Section --- */
.contact-offices-section { padding: 40px 0; }
.contact-offices-header { text-align: center; margin-bottom: 30px; }
.contact-offices-header h2 { font-size: 1.8rem; color: #fff; margin-top: 8px; }

.contact-offices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }

.contact-office-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s;
}
.contact-office-card:hover { transform: translateY(-3px); border-color: rgba(124, 58, 237, 0.3); }

.contact-office-card h3 { font-size: 0.95rem; color: #fff; margin-bottom: 8px; }
.contact-office-card p { font-size: 0.8rem; color: #888; line-height: 1.5; margin-bottom: 6px; }
.contact-office-card i { color: #7C3AED; margin-right: 6px; font-size: 0.75rem; }

@media (max-width: 1100px) { .contact-offices-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .contact-offices-grid { grid-template-columns: 1fr; } }
    
.faq-wrapper {
font-family: 'Inter', sans-serif;
min-height: 100vh;
background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%);
color: #ffffff;
overflow-x: hidden;
position: relative;
padding-top: 80px;
padding-bottom: 60px;
}

/* --- Consistent Container --- */
.faq-container {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
width: 100%;
}

/* --- Animations --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.faq-animate { opacity: 0; animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }

/* --- Breadcrumb --- */
.faq-breadcrumb {
position: absolute;
top: 15vh;
left: 5vw;
font-size: 0.8rem;
color: #a1a1aa;
z-index: 10;
display: flex;
align-items: center;
gap: 8px;
}
.faq-breadcrumb a { color: #7C3AED; text-decoration: none; font-weight: 500; }
.faq-breadcrumb span { color: #666; }

/* --- Section Title Badge --- */
.faq-section-badge {
display: inline-block;
padding: 5px 14px;
background: rgba(124, 58, 237, 0.1);
border: 1px solid rgba(124, 58, 237, 0.3);
border-radius: 50px;
color: #A78BFA;
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}

/* --- Hero Section --- */
.faq-hero { padding: 40px 0 30px; text-align: center; }
.faq-hero h1 { font-size: 2.2rem; margin-bottom: 10px; background: linear-gradient(to right, #ffffff, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.faq-hero p { color: #a1a1aa; font-size: 0.9rem; max-width: 500px; margin: 0 auto; line-height: 1.5; }

/* --- Main Layout Grid --- */
.faq-main-grid {
display: grid;
grid-template-columns: 1fr 350px; /* Left Content, Right Sidebar */
gap: 40px;
align-items: start;
}

@media (max-width: 900px) {
.faq-main-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
}
}

/* --- Category Tabs (Left Column) --- */
.faq-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }

.faq-tab-btn {
padding: 8px 16px;
background: transparent;
border: 1px solid rgba(255,255,255,0.1);
border-radius: 20px;
color: #a1a1aa;
font-size: 0.75rem;
cursor: pointer;
transition: all 0.3s;
}

.faq-tab-btn:hover, .faq-tab-btn.active {
background: #7C3AED;
border-color: #7C3AED;
color: #fff;
}

/* --- Accordion Section --- */
.faq-accordion-section { padding: 0; } /* Removed padding to fit grid */

.faq-accordion-item {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 10px;
margin-bottom: 10px;
overflow: hidden;
transition: all 0.3s;
}
.faq-accordion-item:hover { border-color: rgba(124, 58, 237, 0.2); }
/* Hide items by default if not active category (handled by JS, but good to know) */

.faq-accordion-question {
width: 100%;
text-align: left;
padding: 15px 18px;
background: transparent;
border: none;
color: #fff;
font-size: 0.9rem;
font-weight: 500;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}

.faq-accordion-icon {
font-size: 0.75rem;
color: #7C3AED;
transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-icon {
transform: rotate(45deg);
}

.faq-accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
padding: 0 18px;
color: #a1a1aa;
font-size: 0.85rem;
line-height: 1.6;
}

.faq-accordion-item.active .faq-accordion-content {
max-height: 300px;
padding-bottom: 18px;
}

/* --- Right Sidebar --- */
.faq-sidebar {
position: sticky;
top: 100px;
display: flex;
flex-direction: column;
gap: 25px;
}

.faq-stats-box {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 12px;
padding: 20px;
}

.faq-stats-box h4 { font-size: 0.9rem; color: #fff; margin-bottom: 15px; }

.faq-stat-item {
display: flex;
justify-content: space-between;
margin-bottom: 12px;
padding-bottom: 12px;
border-bottom: 1px solid rgba(255,255,255,0.05);
}
.faq-stat-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-stat-item span { font-size: 0.8rem; color: #888; }
.faq-stat-item strong { font-size: 0.85rem; color: #A78BFA; }

.faq-cta-box {
background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(30, 10, 60, 0.5));
border: 1px solid rgba(124, 58, 237, 0.2);
border-radius: 12px;
padding: 25px 20px;
text-align: center;
}

.faq-cta-box i { font-size: 2rem; color: #7C3AED; margin-bottom: 15px; }
.faq-cta-box h3 { font-size: 1.1rem; margin-bottom: 8px; }
.faq-cta-box p { font-size: 0.8rem; color: #a1a1aa; margin-bottom: 15px; }

.faq-btn {
display: inline-block;
padding: 10px 24px;
background: linear-gradient(90deg, #7C3AED, #5B21B6);
color: #fff;
text-decoration: none;
border-radius: 6px;
font-size: 0.85rem;
font-weight: 600;
transition: opacity 0.3s;
}
.faq-btn:hover { opacity: 0.9; }

.register-wrapper {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Consistent Container --- */
.register-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* --- Animations --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.register-animate { opacity: 0; animation: fadeIn 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* --- Left Side: Process --- */
.register-left {
    padding: 50px 40px;
    background: rgba(124, 58, 237, 0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-left-header { margin-bottom: 40px; }
.register-left-header h1 { font-size: 1.8rem; margin-bottom: 10px; color: #fff; }
.register-left-header p { font-size: 0.9rem; color: #a1a1aa; }

.process-list {
    list-style: none;
    position: relative;
}

/* Connecting Line */
.process-list::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.process-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.process-item:last-child { margin-bottom: 0; }

.process-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #7C3AED;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7C3AED;
    font-size: 1rem;
    z-index: 1;
    flex-shrink: 0;
}

.process-content h3 { font-size: 1rem; margin-bottom: 5px; color: #fff; }
.process-content p { font-size: 0.8rem; color: #888; line-height: 1.4; }

/* --- Right Side: Form --- */
.register-right {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-form-header { margin-bottom: 30px; text-align: center; }
.register-form-header h2 { font-size: 1.6rem; margin-bottom: 5px; }
.register-form-header p { font-size: 0.85rem; color: #666; }

.register-form-group {
    margin-bottom: 20px;
    position: relative;
}

.register-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 0.9rem;
    pointer-events: none;
}

.register-input {
    width: 100%;
    padding: 14px 15px 14px 45px; /* Space for icon */
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.register-input:focus { border-color: #7C3AED; }
.register-input::placeholder { color: #555; }

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.password-toggle:hover { color: #7C3AED; }

/* Checkbox */
.register-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.8rem;
    color: #888;
}
.register-checkbox-group input { margin-top: 3px; accent-color: #7C3AED; }
.register-checkbox-group a { color: #7C3AED; text-decoration: none; }
.register-checkbox-group a:hover { text-decoration: underline; }

.register-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #7C3AED, #5B21B6);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}
.register-btn:hover { opacity: 0.9; }

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
}
.login-link a { color: #7C3AED; font-weight: 600; text-decoration: none; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .register-grid {
        grid-template-columns: 1fr;
    }
    .register-left {
        display: none; /* Hide left side on mobile for simplicity, or stack it */
        padding: 30px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    /* Show left side if needed, but usually forms take full width on mobile */
    .register-right { padding: 30px 20px; }
}

/* Breadcrumb */
.register-breadcrumb {
    padding: 20px;
    font-size: 0.8rem;
    color: #a1a1aa;
}
.register-breadcrumb a { color: #7C3AED; text-decoration: none; }
.register-breadcrumb span { color: #666; }
        
.login-wrapper {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Consistent Container --- */
.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* --- Animations --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.login-animate { opacity: 0; animation: fadeIn 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }

/* --- Left Side: Secure Access --- */
.login-left {
    padding: 50px 40px;
    background: rgba(124, 58, 237, 0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-left-header { margin-bottom: 40px; }
.login-left-header h1 { font-size: 1.8rem; margin-bottom: 10px; color: #fff; }
.login-left-header p { font-size: 0.9rem; color: #a1a1aa; }

.secure-list {
    list-style: none;
    position: relative;
}

/* Connecting Line */
.secure-list::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.secure-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}
.secure-item:last-child { margin-bottom: 0; }

.secure-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #7C3AED;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7C3AED;
    font-size: 1rem;
    z-index: 1;
    flex-shrink: 0;
}

.secure-content h3 { font-size: 1rem; margin-bottom: 5px; color: #fff; }
.secure-content p { font-size: 0.8rem; color: #888; line-height: 1.4; }

/* --- Right Side: Form --- */
.login-right {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-header { margin-bottom: 30px; text-align: center; }
.login-form-header h2 { font-size: 1.6rem; margin-bottom: 5px; }
.login-form-header p { font-size: 0.85rem; color: #666; }

.login-form-group {
    margin-bottom: 20px;
    position: relative;
}

.login-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 0.9rem;
    pointer-events: none;
}

.login-input {
    width: 100%;
    padding: 14px 15px 14px 45px; /* Space for icon */
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.login-input:focus { border-color: #7C3AED; }
.login-input::placeholder { color: #555; }

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.password-toggle:hover { color: #7C3AED; }

/* Form Options (Remember & Forgot) */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.8rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a1a1aa;
    cursor: pointer;
}
.remember-me input { accent-color: #7C3AED; }

.forgot-link {
    color: #7C3AED;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.forgot-link:hover { color: #fff; }

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #7C3AED, #5B21B6);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}
.login-btn:hover { opacity: 0.9; }

.signup-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
}
.signup-link a { color: #7C3AED; font-weight: 600; text-decoration: none; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .login-grid {
        grid-template-columns: 1fr;
    }
    .login-left {
        display: none; /* Hide left side on mobile */
    }
    .login-right { padding: 30px 20px; }
}

/* Breadcrumb */
.login-breadcrumb {
    padding: 20px;
    font-size: 0.8rem;
    color: #a1a1aa;
}
.login-breadcrumb a { color: #7C3AED; text-decoration: none; }
.login-breadcrumb span { color: #666; }

.forgot-wrapper {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Consistent Container --- */
.forgot-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.forgot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* --- Animations --- */
@keyframes fadeIn { 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); } }

.forgot-animate { opacity: 0; animation: fadeIn 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }

/* --- Left Side: Visual --- */
.forgot-left {
    padding: 50px 40px;
    background: rgba(124, 58, 237, 0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.forgot-illustration {
    font-size: 5rem;
    color: #7C3AED;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.forgot-left-header h1 { font-size: 1.8rem; margin-bottom: 10px; color: #fff; }
.forgot-left-header p { font-size: 0.9rem; color: #a1a1aa; max-width: 300px; margin: 0 auto; }

.forgot-tips {
    margin-top: 40px;
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    width: 100%;
    max-width: 300px;
}
.forgot-tips h4 { font-size: 0.9rem; color: #fff; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.forgot-tips ul { list-style: none; }
.forgot-tips li { font-size: 0.8rem; color: #888; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.forgot-tips li i { color: #22c55e; margin-top: 3px; font-size: 0.7rem; }

/* --- Right Side: Form --- */
.forgot-right {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.forgot-form-header { margin-bottom: 30px; }
.forgot-form-header h2 { font-size: 1.6rem; margin-bottom: 5px; }
.forgot-form-header p { font-size: 0.85rem; color: #666; }

.forgot-form-group {
    margin-bottom: 20px;
    position: relative;
}

.forgot-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 0.9rem;
    pointer-events: none;
}

.forgot-input {
    width: 100%;
    padding: 14px 15px 14px 45px; /* Space for icon */
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.forgot-input:focus { border-color: #7C3AED; }
.forgot-input::placeholder { color: #555; }

.forgot-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #7C3AED, #5B21B6);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}
.forgot-btn:hover { opacity: 0.9; }

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
}
.login-link a { color: #7C3AED; font-weight: 600; text-decoration: none; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .forgot-grid {
        grid-template-columns: 1fr;
    }
    .forgot-left {
        display: none; /* Hide left side on mobile */
    }
    .forgot-right { padding: 30px 20px; }
}

/* Breadcrumb */
.forgot-breadcrumb {
    padding: 70px;
    font-size: 0.8rem;
    color: #a1a1aa;
}
.forgot-breadcrumb a { color: #7C3AED; text-decoration: none; }
.forgot-breadcrumb span { color: #666; }

.terms-wrapper {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* --- Utilities --- */
.terms-container { max-width: 1100px; margin: 0 auto; padding: 10vh 20px; width: 100%; }

/* --- Animations --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.terms-animate { opacity: 0; animation: fadeIn 0.6s ease forwards; }

/* --- Breadcrumb --- */
.terms-breadcrumb {
    padding: 20px 0;
    font-size: 0.8rem;
    color: #a1a1aa;
    display: flex;
    align-items: center;
    gap: 8px;
}
.terms-breadcrumb a { color: #7C3AED; text-decoration: none; }
.terms-breadcrumb span { color: #666; }

/* --- Section Title Badge --- */
.terms-section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    color: #A78BFA;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* --- Main Layout --- */
.terms-main-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding-bottom: 80px;
}

@media (max-width: 900px) {
    .terms-main-grid { grid-template-columns: 1fr; }
}

/* --- Sidebar Navigation --- */
.terms-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.terms-nav-title { font-size: 0.7rem; color: #555; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; }

.terms-nav-link {
    display: block;
    padding: 10px 15px;
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.85rem;
    border-left: 2px solid transparent;
    transition: all 0.3s;
    margin-bottom: 2px;
}
.terms-nav-link:hover { color: #fff; background: rgba(255,255,255,0.02); }
.terms-nav-link.active { color: #A78BFA; border-left-color: #7C3AED; background: rgba(124, 58, 237, 0.05); font-weight: 500; }

@media (max-width: 900px) {
    .terms-sidebar { display: none; }
}

/* --- Content Area --- */
.terms-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.terms-content h2:first-child { margin-top: 0; }

.terms-content p, .terms-content li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 15px;
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-content strong { color: #d1d5db; }

.terms-highlight-box {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
.terms-highlight-box h4 { color: #A78BFA; margin-bottom: 8px; font-size: 0.9rem; }
.terms-highlight-box p { margin-bottom: 0; font-size: 0.85rem; }

.priv-wrapper {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a0b2e 40%, #2d1b4e 70%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* --- Utilities --- */
.priv-container { max-width: 1100px; margin: 0 auto; padding: 10vh 20px; width: 100%; }

/* --- Animations --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.priv-animate { opacity: 0; animation: fadeIn 0.6s ease forwards; }

/* --- Breadcrumb --- */
.priv-breadcrumb {
    padding: 20px 0;
    font-size: 0.8rem;
    color: #a1a1aa;
    display: flex;
    align-items: center;
    gap: 8px;
}
.priv-breadcrumb a { color: #7C3AED; text-decoration: none; }
.priv-breadcrumb span { color: #666; }

/* --- Section Title Badge --- */
.priv-section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    color: #A78BFA;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* --- Main Layout --- */
.priv-main-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding-bottom: 80px;
}

@media (max-width: 900px) {
    .priv-main-grid { grid-template-columns: 1fr; }
}

/* --- Sidebar Navigation --- */
.priv-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.priv-nav-title { font-size: 0.7rem; color: #555; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; }

.priv-nav-link {
    display: block;
    padding: 10px 15px;
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.85rem;
    border-left: 2px solid transparent;
    transition: all 0.3s;
    margin-bottom: 2px;
}
.priv-nav-link:hover { color: #fff; background: rgba(255,255,255,0.02); }
.priv-nav-link.active { color: #A78BFA; border-left-color: #7C3AED; background: rgba(124, 58, 237, 0.05); font-weight: 500; }

@media (max-width: 900px) {
    .priv-sidebar { display: none; }
}

/* --- Content Area --- */
.priv-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.priv-content h2:first-child { margin-top: 0; }

.priv-content p, .priv-content li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 15px;
}

.priv-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.priv-content strong { color: #d1d5db; }

.priv-highlight-box {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
.priv-highlight-box h4 { color: #A78BFA; margin-bottom: 8px; font-size: 0.9rem; }
.priv-highlight-box p { margin-bottom: 0; font-size: 0.85rem; }

