/* ========== CSS RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden; }

/* ========== ANIMATIONS ========== */
.anim-target { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.anim-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 20px rgba(106,17,203,0.3); } 50% { box-shadow: 0 0 40px rgba(106,17,203,0.6); } }
@keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes orbFloat1 { 0% { transform: translate(0, 0) scale(1); } 33% { transform: translate(80px, -60px) scale(1.15); } 66% { transform: translate(-40px, 40px) scale(0.9); } 100% { transform: translate(0, 0) scale(1); } }
@keyframes orbFloat2 { 0% { transform: translate(0, 0) scale(1); } 33% { transform: translate(-60px, 50px) scale(1.1); } 66% { transform: translate(50px, -30px) scale(0.95); } 100% { transform: translate(0, 0) scale(1); } }
@keyframes orbFloat3 { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(40px, 60px) scale(1.2); } 100% { transform: translate(0, 0) scale(1); } }

.v2-gradient-text {
    background: linear-gradient(135deg, #2575fc 0%, #e74c3c 40%, #f1c40f 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 4s ease infinite;
}

/* ========== HEADER ========== */
.v2-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 5000;
    background: transparent; transition: all 0.4s ease;
}
.v2-header.scrolled {
    background: rgba(255,255,255,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(20px);
}
.v2-header-inner {
    max-width: 1300px; margin: 0 auto; padding: 16px 30px;
    display: flex; align-items: center; justify-content: space-between;
}
.v2-logo img { height: 48px; transition: height 0.3s; }
.v2-header.scrolled .v2-logo img { height: 42px; }
.v2-nav { display: flex; align-items: center; gap: 8px; }
.v2-nav-link {
    padding: 8px 16px; font-size: 14px; font-weight: 600;
    color: rgba(255,255,255,0.9); text-decoration: none;
    border-radius: 8px; transition: all 0.3s;
}
.v2-header.scrolled .v2-nav-link { color: #333; }
.v2-nav-link:hover { background: rgba(255,255,255,0.15); }
.v2-header.scrolled .v2-nav-link:hover { background: #f1f5f9; }

.v2-nav-profile {
    display: flex; align-items: center; gap: 8px; padding: 6px 14px;
    border-radius: 50px; cursor: pointer; transition: background 0.3s;
    color: #fff; font-size: 13px;
}
.v2-header.scrolled .v2-nav-profile { color: #333; }
.v2-nav-profile:hover { background: rgba(255,255,255,0.15); }
.v2-header.scrolled .v2-nav-profile:hover { background: #f1f5f9; }
.v2-nav-profile img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.5); }
.v2-header.scrolled .v2-nav-profile img { border-color: #ddd; }

.v2-nav-btn {
    padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: all 0.3s; border: 2px solid transparent;
}
.v2-btn-outline {
    background: transparent; color: #fff; border-color: rgba(255,255,255,0.5);
}
.v2-header.scrolled .v2-btn-outline { color: #1a1a2e; border-color: #1a1a2e; }
.v2-btn-outline:hover { background: rgba(255,255,255,0.15); }
.v2-header.scrolled .v2-btn-outline:hover { background: #1a1a2e; color: #fff; }
.v2-btn-primary {
    background: linear-gradient(135deg, #6a11cb, #2575fc); color: #fff; border: none;
    box-shadow: 0 4px 15px rgba(106,17,203,0.4);
}
.v2-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(106,17,203,0.5); }

.v2-mobile-toggle {
    display: none; background: none; border: none; font-size: 24px; cursor: pointer;
    color: #fff; padding: 8px;
}
.v2-header.scrolled .v2-mobile-toggle { color: #1a1a2e; }

/* ========== MOBILE NAV ========== */
.v2-mobile-nav {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px; height: 100vh;
    background: #1a1a2e; z-index: 10000; transition: right 0.35s ease;
    display: flex; flex-direction: column; padding: 80px 30px 30px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}
.v2-mobile-nav.open { right: 0; }
.v2-mobile-close {
    position: absolute; top: 25px; right: 25px; background: none; border: none;
    color: #fff; font-size: 28px; cursor: pointer;
}
.v2-mobile-profile {
    display: flex; align-items: center; gap: 12px; padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 10px; cursor: pointer;
}
.v2-mobile-profile img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.v2-mobile-profile span { color: #fff; font-size: 14px; }
.v2-mobile-link {
    display: block; padding: 14px 0; color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 15px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.3s;
}
.v2-mobile-link:hover { color: #fff; }
.v2-mobile-logout, .v2-mobile-cta {
    margin-top: 12px; padding: 12px; border-radius: 10px; border: none;
    font-size: 15px; font-weight: 700; cursor: pointer; width: 100%;
}
.v2-mobile-logout { background: #ef4444; color: #fff; }
.v2-mobile-cta { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.v2-mobile-cta.primary { background: linear-gradient(135deg, #6a11cb, #2575fc); border: none; }

/* ========== HERO ========== */
.v2-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden;
}
.v2-hero-bg { position: absolute; inset: 0; }
.v2-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.v2-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.5) 100%);
}
.v2-hero-content {
    position: relative; z-index: 2; max-width: 800px; padding: 120px 30px 80px;
    text-align: center; color: #fff;
}
.v2-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
    margin-bottom: 30px; backdrop-filter: blur(10px);
}
.v2-hero-badge i { color: #f39c12; }
.v2-hero-content h1 {
    font-size: 3.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 24px;
    letter-spacing: -1.5px;
}
.v2-hero-content p {
    font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.85);
    max-width: 650px; margin: 0 auto 40px;
}
.v2-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.v2-btn { padding: 14px 32px; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s; border: none; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.v2-btn-hero {
    background: linear-gradient(135deg, #6a11cb, #2575fc); color: #fff;
    box-shadow: 0 8px 30px rgba(106,17,203,0.4);
}
.v2-btn-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(106,17,203,0.5); }
.v2-btn-hero-outline {
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4);
}
.v2-btn-hero-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.v2-hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 30px;
    padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.15);
}
.v2-stat { text-align: center; }
.v2-stat-num { display: block; font-size: 1.8rem; font-weight: 900; color: #fff; }
.v2-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.v2-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.v2-hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
    animation: float 2s ease infinite;
}
.v2-hero-scroll a { color: rgba(255,255,255,0.6); font-size: 24px; text-decoration: none; }
.v2-hero-scroll a:hover { color: #fff; }

/* ========== SECTIONS COMMON ========== */
.v2-section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 30px; }
.v2-section-header { text-align: center; margin-bottom: 60px; }
.v2-section-tag {
    display: inline-block; background: linear-gradient(135deg, rgba(106,17,203,0.1), rgba(37,117,252,0.1));
    color: #6a11cb; padding: 8px 20px; border-radius: 50px; font-size: 13px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.v2-section-header h2 { font-size: 2.8rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; color: #1a1a2e; }
.v2-section-header p { font-size: 1.1rem; color: #64748b; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ========== SERVICES ========== */
.v2-services { background: #f8fafc; position: relative; }
.v2-services::before {
    content: ''; position: absolute; top: -80px; left: 0; right: 0; height: 80px;
    background: linear-gradient(to bottom, transparent, #f8fafc); pointer-events: none; z-index: 3;
}
.v2-services .v2-section-tag { background: linear-gradient(135deg, rgba(37,117,252,0.1), rgba(231,76,60,0.08)); color: #2575fc; }

.v2-services-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    position: relative; 
}

/* Exam Circle in Middle */
.v2-exam-shortcut {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    pointer-events: auto;
}

.v2-exam-circle {
    width: 160px;
    height: 160px;
    background: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), 0 0 0 10px rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    animation: float 3s ease-in-out infinite;
    padding: 20px;
}

.v2-exam-tag {
    font-size: 10px;
    font-weight: 900;
    background: #fff;
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.v2-exam-circle h3 {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    color: #fff !important;
}

.v2-exam-circle p {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.95;
    margin: 0;
    color: #fff !important;
}

.v2-exam-circle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 0 12px rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .v2-exam-shortcut {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        margin: 20px 0;
    }
    .v2-exam-circle {
        width: 140px;
        height: 140px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 1);
    }
    .v2-exam-circle:hover {
        transform: scale(1.1);
    }
}
.v2-service-card {
    background: #fff; border-radius: 20px; padding: 40px 32px;
    border: 1px solid #e8ecf1; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden; z-index: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.v2-service-card::before {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 60%;
    background-size: cover; background-position: right center; background-repeat: no-repeat;
    z-index: -1; opacity: 0.15;
    mask-image: linear-gradient(to right, transparent 0%, black 60%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60%);
    transition: opacity 0.4s, transform 0.4s;
}
.v2-service-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 8px 40px rgba(37,117,252,0.25), 0 0 80px rgba(37,117,252,0.1);
}
.v2-service-card:hover::before { opacity: 0.3; transform: scale(1.05); }

/* Card specific background images from Unsplash (Safe/Legal) */
.v2-service-card.card-vod::before { background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=800&auto=format&fit=crop'); }
.v2-service-card.card-library::before { background-image: url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?q=80&w=800&auto=format&fit=crop'); }
.v2-service-card.card-forum::before { background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?q=80&w=800&auto=format&fit=crop'); }
.v2-service-card.card-seminar::before { background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?q=80&w=800&auto=format&fit=crop'); }
.v2-service-card.card-assessment::before { background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=800&auto=format&fit=crop'); }
.v2-service-card.card-registration::before { background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?q=80&w=800&auto=format&fit=crop'); }

.v2-card-icon {
    width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center;
    justify-content: center; font-size: 26px; color: #fff; margin-bottom: 24px;
}
.v2-service-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; color: #1a1a2e; }
.v2-service-card > p { font-size: 0.95rem; color: #64748b; line-height: 1.7; margin-bottom: 20px; }
.v2-card-features { list-style: none; margin-bottom: 24px; }
.v2-card-features li {
    display: flex; align-items: center; gap: 10px; padding: 6px 0;
    font-size: 0.9rem; color: #475569;
}
.v2-card-features li i { color: #22c55e; font-size: 12px; flex-shrink: 0; }
.v2-card-cta {
    display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700;
    color: #2575fc; margin-top: auto;
    transition: gap 0.3s;
}
.v2-service-card:hover .v2-card-cta { gap: 14px; }
.v2-service-card:hover .v2-card-cta i { transform: translateX(4px); }
.v2-card-cta i { transition: transform 0.3s; }

/* ========== FEATURES ========== */
.v2-features { background: #fff; position: relative; }
.v2-features::before {
    content: ''; position: absolute; top: -60px; left: 0; right: 0; height: 60px;
    background: linear-gradient(to bottom, #f8fafc, #fff); pointer-events: none;
}
.v2-features .v2-section-tag { background: linear-gradient(135deg, rgba(241,196,15,0.15), rgba(231,76,60,0.1)); color: #e67e22; }
.v2-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.v2-feature-item {
    text-align: center; padding: 40px 28px; border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid #f1f5f9;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.v2-feature-item:hover {
    background: #fff; transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 8px 40px rgba(231,76,60,0.2), 0 0 60px rgba(231,76,60,0.08);
}
.v2-feature-icon {
    width: 64px; height: 64px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(37,117,252,0.1), rgba(37,117,252,0.05));
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #2575fc; margin: 0 auto 20px;
}
.v2-feature-item:nth-child(1) .v2-feature-icon { background: linear-gradient(135deg, rgba(241,196,15,0.15), rgba(241,196,15,0.05)); color: #d4a017; }
.v2-feature-item:nth-child(2) .v2-feature-icon { background: linear-gradient(135deg, rgba(231,76,60,0.1), rgba(231,76,60,0.05)); color: #e74c3c; }
.v2-feature-item:nth-child(3) .v2-feature-icon { background: linear-gradient(135deg, rgba(37,117,252,0.1), rgba(37,117,252,0.05)); color: #2575fc; }
.v2-feature-item:nth-child(4) .v2-feature-icon { background: linear-gradient(135deg, rgba(241,196,15,0.15), rgba(241,196,15,0.05)); color: #d4a017; }
.v2-feature-item:nth-child(5) .v2-feature-icon { background: linear-gradient(135deg, rgba(231,76,60,0.1), rgba(231,76,60,0.05)); color: #e74c3c; }
.v2-feature-item:nth-child(6) .v2-feature-icon { background: linear-gradient(135deg, rgba(37,117,252,0.1), rgba(37,117,252,0.05)); color: #2575fc; }
.v2-feature-item h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; color: #1a1a2e; }
.v2-feature-item p { font-size: 0.9rem; color: #64748b; line-height: 1.7; }

/* ========== CTA SECTION ========== */
.v2-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #1a1a2e 100%);
    padding: 0; position: relative; overflow: hidden;
}
.v2-cta-section::before {
    content: ''; position: absolute; top: -60px; left: 0; right: 0; height: 60px;
    background: linear-gradient(to bottom, #fff, #1a1a2e); pointer-events: none; z-index: 2;
}
.v2-cta-orb {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.7; pointer-events: none;
}
.v2-cta-orb.orb-1 {
    width: 500px; height: 500px; top: -150px; left: -80px;
    background: rgba(106,17,203,0.5);
    animation: orbFloat1 12s ease-in-out infinite;
}
.v2-cta-orb.orb-2 {
    width: 450px; height: 450px; bottom: -120px; right: -60px;
    background: rgba(37,117,252,0.45);
    animation: orbFloat2 10s ease-in-out infinite;
}
.v2-cta-orb.orb-3 {
    width: 350px; height: 350px; top: 40%; left: 45%;
    background: rgba(231,76,60,0.35);
    animation: orbFloat3 14s ease-in-out infinite;
}
.v2-cta-inner {
    position: relative; z-index: 1; max-width: 750px; margin: 0 auto;
    padding: 100px 30px; text-align: center;
}
.v2-cta-inner h2 { font-size: 2.5rem; font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px; }
.v2-cta-inner p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; line-height: 1.7; }
.v2-btn-cta {
    background: linear-gradient(135deg, #6a11cb, #2575fc); color: #fff;
    padding: 16px 40px; border-radius: 12px; font-size: 17px; font-weight: 700;
    cursor: pointer; border: none; text-decoration: none;
    box-shadow: 0 8px 30px rgba(106,17,203,0.4);
    transition: all 0.3s; display: inline-block;
}
.v2-btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(106,17,203,0.6); }

/* ========== FOOTER ========== */
.v2-footer { background: #0a0a14; color: #fff; }
.v2-footer-inner { max-width: 1200px; margin: 0 auto; padding: 60px 30px 30px; }
.v2-footer-top { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; margin-bottom: 40px; }
.v2-footer-logo { height: 80px; margin-bottom: 12px; }
.v2-footer-title { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.v2-footer-tagline { font-size: 13px; color: #94a3b8; }
.v2-footer-links h4, .v2-footer-contact h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: #fff; }
.v2-footer-links a { display: block; color: #94a3b8; text-decoration: none; font-size: 13px; padding: 4px 0; transition: color 0.3s; }
.v2-footer-links a:hover { color: #fff; }
.v2-footer-contact p { font-size: 13px; color: #94a3b8; line-height: 1.8; }
.v2-footer-contact p i { width: 18px; color: #6a11cb; margin-right: 8px; }
.v2-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
    font-size: 12px; color: #64748b;
}

/* ========== AUTH MODAL ========== */
.v2-auth-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(10px);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s; z-index: 20000;
    padding: 30px; overflow-y: auto;
}
.v2-auth-overlay.active { opacity: 1; pointer-events: all; }
.v2-auth-close { position: fixed; top: 25px; right: 30px; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; z-index: 20001; }
.v2-auth-wrapper { width: 100%; max-width: 440px; }
.v2-auth-box {
    background: rgba(255,255,255,0.97); border-radius: 28px; padding: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3); position: relative;
    animation: fadeInUp 0.5s ease;
}
.v2-auth-toggle {
    display: flex; background: rgba(0,0,0,0.05); padding: 6px; border-radius: 14px;
    margin-bottom: 30px;
}
.v2-auth-opt {
    flex: 1; padding: 10px; text-align: center; font-size: 14px; font-weight: 700;
    cursor: pointer; border-radius: 10px; transition: all 0.3s; color: #888;
}
.v2-auth-opt.active { background: #fff; color: #6a11cb; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.v2-auth-box h2 { text-align: center; font-size: 28px; font-weight: 800; color: #1d1d1f; margin-bottom: 8px; margin-top: 10px; }
.v2-auth-desc { text-align: center; color: #666; font-size: 15px; margin-bottom: 30px; }
.v2-input-group { margin-bottom: 18px; }
.v2-input-group input {
    width: 100%; padding: 14px 18px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.1);
    font-size: 15px; background: rgba(0,0,0,0.02); outline: none;
    transition: all 0.3s; font-family: inherit;
}
.v2-input-group input:focus { border-color: #6a11cb; box-shadow: 0 0 0 3px rgba(106,17,203,0.1); background: #fff; }
.v2-auth-box button[type="submit"] {
    width: 100%; padding: 14px; border: none; border-radius: 12px;
    background: linear-gradient(135deg, #007bff 0%, #3b82f6 50%, #ff0000 100%);
    background-size: 200% 200%; animation: gradientMove 4s ease infinite;
    color: #fff; font-weight: 700; font-size: 16px; cursor: pointer;
    transition: all 0.3s; margin-top: 10px;
}
.v2-auth-box button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,123,255,0.3); }
.v2-auth-switch { text-align: center; margin-top: 20px; font-size: 14px; color: #888; cursor: pointer; }
.v2-auth-switch strong { color: #e74c3c; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .v2-services-grid { grid-template-columns: 1fr 1fr; }
    .v2-footer-top { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
    .v2-nav { display: none; }
    .v2-mobile-toggle { display: block; }
    .v2-hero-content h1 { font-size: 2.4rem; }
    .v2-hero-content p { font-size: 1rem; }
    .v2-hero-stats { flex-wrap: wrap; gap: 20px; }
    .v2-stat-divider { display: none; }
    .v2-services-grid { grid-template-columns: 1fr; }
    .v2-features-grid { grid-template-columns: 1fr; }
    .v2-section-header h2 { font-size: 2rem; }
    .v2-cta-inner h2 { font-size: 1.8rem; }
    .v2-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .v2-hero-content { padding: 100px 20px 60px; }
    .v2-hero-content h1 { font-size: 2rem; }
    .v2-section-inner { padding: 60px 20px; }
    .v2-auth-box { padding: 30px 24px; }
}
