/* ============================================
   ONLINE BUSINESS STORE - PREMIUM STYLESHEET
   ============================================ */

/* ============================================
   GLOBAL PERFORMANCE OPTIMIZATION
   ============================================ */

/* Smooth scroll performance */
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Mobile scroll optimization */
@media (max-width: 768px) {
    
    /* শুরুতে মূল নেভবারে ব্লাকড্রপ ফিল্টার বন্ধ থাকবে (ভারী লোড কমানোর জন্য)।
       এটি স্ক্রল করার পর '.navbar-scrolled' ক্লাসের মাধ্যমে অ্যাক্টিভ হবে।
    */
    .navbar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* যখন স্ক্রল করা হবে, তখন মোবাইলেও হালকা কাঁচের মতো ব্লার ইফেক্ট আসবে */
    .navbar-scrolled {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        background-color: rgba(11, 15, 25, 0.75) !important;
    }
    
    /* Disable backdrop blur on mobile menu */
    .mobile-menu-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.7) !important;
    }
    
    /* Disable heavy floating animations on mobile */
    .floating-shape {
        animation-duration: 30s !important;
        opacity: 0.04 !important;
    }
    
    .shape-3,
    .shape-4,
    .shape-5 {
        display: none;
    }
    
    /* Simplify hover effects */
    .feature-card:hover,
    .step-card:hover {
        transform: translateY(-4px) !important;
    }
    
    /* Reduce shadow complexity */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Better scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }
}


/* Use GPU acceleration only where needed */
.pricing-card,
.feature-card,
.step-card,
.video-card,
.btn {
    will-change: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Image loading optimization */
img {
    content-visibility: auto;
}

/* Disable backdrop-filter on low-end devices */
@media (max-width: 480px) {
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .navbar {
        background: rgba(10, 14, 26, 0.95) !important;
    }
}

/* Smooth scroll with reduced motion */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1629;
    --bg-card: #141b2d;
    --bg-card-hover: #1a2340;
    --bg-elevated: #1e2642;
    
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --border-color: rgba(99, 102, 241, 0.15);
    --border-color-hover: rgba(99, 102, 241, 0.3);
    
    --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-blue: linear-gradient(135deg, #3b82f6, #6366f1);
    --gradient-purple: linear-gradient(135deg, #8b5cf6, #a855f7);
    --gradient-gold: linear-gradient(135deg, #f59e0b, #d97706);
    --gradient-green: linear-gradient(135deg, #10b981, #06d6a0);
    --gradient-starter: linear-gradient(135deg, #1e3a8a, #3b82f6);
    --gradient-popular: linear-gradient(135deg, #6d28d9, #8b5cf6, #3b82f6);
    --gradient-premium-card: linear-gradient(135deg, #78350f, #d97706, #f59e0b);
    --gradient-launch: linear-gradient(135deg, #064e3b, #10b981, #06d6a0);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.15);
    --shadow-glow-primary: 0 0 40px rgba(99, 102, 241, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --font-primary: 'Poppins', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', 'Poppins', -apple-system, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

ul, ol {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.5); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes rotate3d {
    0% { transform: perspective(1000px) rotateY(0deg); }
    100% { transform: perspective(1000px) rotateY(360deg); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(99, 102, 241, 0.2); }
    50% { border-color: rgba(99, 102, 241, 0.5); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, #818cf8, #c084fc, #818cf8);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-google:hover {
    background: #f8f8f8;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.google-icon { width: 20px; height: 20px; }

/* ============================================
   NAVBAR - PREMIUM REDESIGN (UPDATED)
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0; /* শুরুতে নেভবারটি একটু চওড়া দেখানোর জন্য প্যাডিং ১৪px থেকে বাড়িয়ে ১৮px করা হলো */
    background: rgba(10, 14, 26, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

/* স্ক্রল করার পর নেভবার ছোট এবং আরও ট্রান্সপারেন্ট হবে */
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 14, 26, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px; 
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 44px;  /* লোগোটি সামান্য বড় করার জন্য ৩৮px থেকে বাড়িয়ে ৪৪px করা হয়েছে */
    height: 44px; /* লোগোটি সামান্য বড় করার জন্য ৩৮px থেকে বাড়িয়ে ৪৪px করা হয়েছে */
    object-fit: contain;
    position: relative;
    z-index: 1;
    mix-blend-mode: screen; /* লোগো অটোমেটিক ট্রান্সপারেন্ট করার জন্য */
    transition: all 0.3s ease;
}

/* স্ক্রল করার পর লোগোও সামান্য ছোট হয়ে ব্যালেন্স ঠিক রাখবে */
.navbar.scrolled .logo-img {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 21px; /* লেখাটি সামান্য বড় করার জন্য ১৯px থেকে বাড়িয়ে ২১px করা হয়েছে */
    color: var(--text-primary);
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

/* স্ক্রল করার পর লোগো টেক্সটও সামান্য ছোট হবে */
.navbar.scrolled .logo-text {
    font-size: 18px;
}

/* Desktop Menu (Center) */
.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.nav-links-desktop .nav-link {
    padding: 8px 18px;
    color: var(--text-secondary);
    font-size: 15px; /* মেনুর লেখাটি সামান্য বড় করার জন্য ১৪px থেকে ১৫px করা হয়েছে */
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}

.nav-links-desktop .nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links-desktop .nav-link.active {
    color: white;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    padding: 3px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    border-radius: 100px;
    transition: color 0.3s ease;
    z-index: 1;
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.lang-btn.active {
    color: white;
}

.lang-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 100px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
}

/* Mobile Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* মোবাইল রেসপন্সিভ অপ্টিমাইজেশন */
@media (max-width: 480px) {
    .logo-img {
        width: 34px !important;  /* মোবাইলেও লোগো সামান্য বড় করা হলো */
        height: 34px !important;
    }
    .logo-text {
        font-size: 16px !important; /* মোবাইলেও লেখার সাইজ অ্যাডজাস্ট করা হলো */
    }
    .navbar.scrolled .logo-img {
        width: 30px !important;
        height: 30px !important;
    }
    .navbar.scrolled .logo-text {
        font-size: 14px !important;
    }
}

/* ============================================
   MOBILE MENU - PREMIUM SIDE DRAWER (FIXED & SMOOTH)
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0; /* পজিশন জিরো থাকবে, মুভমেন্ট হবে ট্রান্সফর্ম দিয়ে */
    width: 85%;
    max-width: 330px; /* মোবাইলে বাটনের জায়গা বাড়াতে সামান্য কমানো হলো */
    height: 100vh;
    background: linear-gradient(180deg, #0f1629 0%, #0a0e1a 100%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    
    /* ফিক্স: right এর বদলে transform ব্যবহার করা হয়েছে মাখনের মতো স্মুথনেসের জন্য */
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    will-change: transform;
    
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(99, 102, 241, 0.15);
    overflow: hidden;
}

/* ফিক্স: right: 0 এর বদলে translateX(0) দিয়ে মেনু সামনে আনা */
.mobile-menu.active {
    transform: translateX(0) !important;
}

/* Mobile menu decorative glow */
.mobile-menu::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    pointer-events: none;
}

.mobile-menu::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 70%);
    pointer-events: none;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px; /* প্যাডিং সামান্য কমানো হয়েছে */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-menu-logo .logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.mobile-menu-logo span {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    background: linear-gradient(135deg, #fff, #c7d2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
    transform: rotate(90deg);
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px; /* প্যাডিং ব্যালেন্স করা হয়েছে */
    position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: touch; /* আইফোনে স্মুথ স্ক্রলিং এর জন্য */
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px; /* লিংকগুলোর উচ্চতা সামান্য কমানো হয়েছে যাতে নিচের বাটন উপরে উঠে */
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    border-radius: 0 3px 3px 0;
    transition: height 0.3s ease;
}

.mobile-nav-link i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-nav-link:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
    padding-left: 20px;
}

.mobile-nav-link:hover::before {
    height: 60%;
}

.mobile-nav-link:hover i {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    transform: scale(1.1);
}

.mobile-nav-link.active {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
}

.mobile-nav-link.active::before {
    height: 60%;
}

.mobile-nav-link.active i {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

/* ফিক্সড মোবাইল ফুটার: লগইন বাটন যেন সবসময় স্ক্রিনে দেখা যায় */
.mobile-menu-footer {
    padding: 16px 20px 28px 20px !important; /* নিচে সেফ প্যাডিং */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px; /* বাটনের ভেতরের গ্যাপ কমানো হলো */
    position: relative;
    z-index: 1;
    background: #0a0e1a !important; /* ট্রান্সপারেন্ট বাদ দিয়ে সলিড কালার যাতে পেছনের টেক্সট গন্ডগোল না করে */
}

/* ফুটারের ভেতরের বাটন রিসাইজ */
.mobile-menu-footer .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 11px !important; /* বাটন সামান্য কম চওড়া করা হলো যেন স্ক্রিনে ধরে */
    font-size: 14px !important;
    margin: 0 !important;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65) !important;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease !important;
    
    /* ফিক্স: মোবাইলের ল্যাগ দূর করতে ভারী ব্লার ইফেক্ট রিমুভ করা হলো */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ============================================
   RESPONSIVE - HIDE/SHOW
   ============================================ */
@media (max-width: 968px) {
    .nav-links-desktop {
        display: none;
    }
    
    .nav-login-btn,
    .nav-register-btn {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
        gap: 10px;
    }
    
    .logo-text {
        font-size: 15px;
    }
    
    .logo-icon-wrapper {
        width: auto;
        height: auto;
    }
    
    .logo-img {
        width: 30px;  
        height: 30px; 
    }
    
    .lang-toggle {
        padding: 2px;
    }
    
    .lang-btn {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    /* একদম ছোট স্ক্রিনের ফোনে ফুটার প্যাডিং আরও একটু অপ্টিমাইজড */
    .mobile-menu-footer {
        padding: 12px 16px 20px 16px !important;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation-duration: 20s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    left: -80px;
    animation-duration: 18s;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-duration: 12s;
    animation-delay: -3s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    top: 30%;
    right: 20%;
    animation-duration: 16s;
    animation-delay: -7s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: var(--success);
    bottom: 30%;
    right: 10%;
    animation-duration: 14s;
    animation-delay: -2s;
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--primary-light);
    margin-bottom: 24px;
    animation: glow 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--warning);
    font-size: 12px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-tagline {
    font-size: 18px;
    color: var(--primary-light);
    margin-bottom: 16px;
    font-style: italic;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.check-icon {
    width: 22px;
    height: 22px;
    color: var(--success);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Video */
.hero-video {
    margin-top: 60px;
}

.video-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-thumbnail:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-primary);
    border-color: var(--border-color-hover);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.video-thumbnail:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.play-btn i {
    margin-left: 4px;
}

.video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    margin-bottom: 20px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-light);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.icon-blue { 
    background: rgba(59, 130, 246, 0.1) !important; 
    color: #60a5fa !important; 
}
.feature-card:hover .icon-blue { 
    background: var(--gradient-blue) !important; 
    color: white !important; 
}

.icon-purple { 
    background: rgba(139, 92, 246, 0.1) !important; 
    color: #a78bfa !important; 
}
.feature-card:hover .icon-purple { 
    background: var(--gradient-purple) !important; 
    color: white !important; 
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.step-icon-wrapper {
    margin-bottom: 16px;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-light);
    transition: var(--transition-normal);
}

.step-card:hover .step-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.06);
    line-height: 1;
    transition: var(--transition-normal);
}

.step-card:hover .step-number {
    color: rgba(99, 102, 241, 0.12);
    transform: scale(1.1);
}

.step-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.steps-cta {
    text-align: center;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-normal);
}

.link-arrow:hover {
    color: white;
    gap: 12px;
}

/* ============================================
   PRICING SECTION - MOBILE OPTIMIZED PREMIUM
   ============================================ */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Background glow - only on desktop */
.pricing-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
    padding: 24px 8px;
    position: relative;
    z-index: 1;
}

/* ============================================
   BASE PRICING CARD - OPTIMIZED
   ============================================ */
.pricing-card {
    border-radius: 20px;
    padding: 36px 26px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   PACKAGE BADGES - NEON GLOW (LIGHTWEIGHT)
   ============================================ */
.package-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-badge i {
    font-size: 11px;
}

.badge-starter {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    border: 1px solid rgba(96, 165, 250, 0.5);
}

.badge-popular {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1a1a1a;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
    border: 1px solid rgba(251, 191, 36, 0.6);
}

.badge-premium {
    background: linear-gradient(135deg, #d97706, #fbbf24);
    color: #1a1a1a;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    border: 1px solid rgba(251, 191, 36, 0.6);
}

.badge-launch {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    border: 1px solid rgba(52, 211, 153, 0.5);
}

/* ============================================
   PACKAGE 1: STARTER - BLUE NEON
   ============================================ */
.package-starter {
    background: linear-gradient(160deg, #0c1e4f 0%, #1e3a8a 50%, #1e40af 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PACKAGE 2: POPULAR - PURPLE NEON
   ============================================ */
.package-popular {
    background: linear-gradient(160deg, #2e1065 0%, #5b21b6 40%, #6d28d9 70%, #4f46e5 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 0 35px rgba(139, 92, 246, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PACKAGE 3: PREMIUM - GOLD NEON
   ============================================ */
.package-premium {
    background: linear-gradient(160deg, #2e1a05 0%, #78350f 40%, #92400e 70%, #b45309 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    box-shadow: 
        0 0 35px rgba(245, 158, 11, 0.18),
        0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PACKAGE 4: LAUNCH - GREEN NEON
   ============================================ */
.package-launch {
    background: linear-gradient(160deg, #022c22 0%, #064e3b 40%, #065f46 70%, #047857 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 
        0 0 35px rgba(16, 185, 129, 0.18),
        0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PACKAGE CONTENT
   ============================================ */
.package-header {
    margin-top: 14px;
    margin-bottom: 24px;
}

.package-name {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: #fff;
}

.package-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.package-price {
    margin-bottom: 26px;
    padding: 18px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-price .currency {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.package-price .amount {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -1.5px;
}

.package-price .period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-left: 6px;
    font-weight: 500;
}

.package-features {
    flex: 1;
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.package-features .check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.package-starter .check { color: #60a5fa; }
.package-popular .check { color: #fbbf24; }
.package-premium .check { color: #fcd34d; }
.package-launch .check { color: #34d399; }

.btn-package {
    width: 100%;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

/* ============================================
   DESKTOP HOVER EFFECTS (Only on devices with hover)
   ============================================ */
@media (hover: hover) and (pointer: fine) {
    .pricing-card {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    box-shadow 0.4s ease,
                    border-color 0.3s ease;
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
    }
    
    .package-starter:hover {
        box-shadow: 
            0 0 50px rgba(59, 130, 246, 0.35),
            0 25px 60px rgba(0, 0, 0, 0.4);
        border-color: rgba(96, 165, 250, 0.6);
    }
    
    .package-popular:hover {
        box-shadow: 
            0 0 50px rgba(139, 92, 246, 0.4),
            0 25px 60px rgba(0, 0, 0, 0.4);
        border-color: rgba(167, 139, 250, 0.6);
    }
    
    .package-premium:hover {
        box-shadow: 
            0 0 50px rgba(245, 158, 11, 0.4),
            0 25px 60px rgba(0, 0, 0, 0.4);
        border-color: rgba(251, 191, 36, 0.6);
    }
    
    .package-launch:hover {
        box-shadow: 
            0 0 50px rgba(16, 185, 129, 0.4),
            0 25px 60px rgba(0, 0, 0, 0.4);
        border-color: rgba(52, 211, 153, 0.6);
    }
}

/* ============================================
   PRICING FOOTER
   ============================================ */
.pricing-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.pricing-footer a {
    color: var(--primary-light);
    font-weight: 600;
}

.link-highlight {
    color: #a78bfa !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(167, 139, 250, 0.3);
}

.pricing-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ============================================
   MOBILE RESPONSIVE - HEAVILY OPTIMIZED
   ============================================ */
@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 70px 0;
    }
    
    /* Remove heavy background on mobile */
    .pricing-section::before {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 20px 4px;
    }
    
    .pricing-card {
        padding: 32px 22px;
        border-radius: 18px;
        /* Lighter shadows on mobile */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Reduce neon glow on mobile for performance */
    .package-starter {
        box-shadow: 
            0 0 20px rgba(59, 130, 246, 0.12),
            0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }
    
    .package-popular {
        box-shadow: 
            0 0 20px rgba(139, 92, 246, 0.15),
            0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }
    
    .package-premium {
        box-shadow: 
            0 0 20px rgba(245, 158, 11, 0.12),
            0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }
    
    .package-launch {
        box-shadow: 
            0 0 20px rgba(16, 185, 129, 0.12),
            0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Lighter badge shadows */
    .package-badge {
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.3) !important;
    }
    
    .package-name {
        font-size: 22px;
    }
    
    .package-price .amount {
        font-size: 42px;
    }
    
    .package-price .currency {
        font-size: 26px;
    }
    
    .btn-package {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        gap: 24px;
        padding: 16px 0;
    }
    
    .pricing-card {
        padding: 28px 20px;
    }
    
    .package-name {
        font-size: 20px;
    }
    
    .package-desc {
        font-size: 13px;
    }
    
    .package-price .amount {
        font-size: 38px;
    }
    
    .package-features li {
        font-size: 13px;
    }
}

/* ============================================
   REDUCE MOTION FOR ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .pricing-card,
    .btn-package {
        transition: none !important;
        animation: none !important;
    }
}

/* ============================================
   TOUCH DEVICE OPTIMIZATION
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    .pricing-card {
        /* No hover transforms on touch devices */
        transition: none;
    }
    
    .pricing-card:active {
        transform: scale(0.99);
        transition: transform 0.15s ease;
    }
    
    .btn-package:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.slider-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-lg);
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 10px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    max-width: 560px;
    margin: 0 auto;
}

.video-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.play-btn-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-btn-sm:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.play-btn-sm i {
    margin-left: 3px;
}

.video-title {
    padding: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Slider Buttons */
.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    inset: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: white;
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: white;
    bottom: -100px;
    left: -50px;
    animation: floatSlow 15s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition-normal);
}

.contact-item:hover {
    color: var(--text-primary);
}

.contact-item i {
    margin-top: 3px;
    width: 18px;
    text-align: center;
}

.contact-item .fa-phone { color: #60a5fa; }
.contact-item .fa-whatsapp { color: #25D366; }
.whatsapp-contact .fa-whatsapp { color: #25D366; }
.contact-item .fa-envelope { color: #f472b6; }
.contact-item .fa-map-marker-alt { color: #f87171; }

/* Social Icons - Original Colors */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-facebook {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}
.social-facebook:hover {
    background: #1877F2;
    color: white;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
    border-color: #1877F2;
}

.social-youtube {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}
.social-youtube:hover {
    background: #FF0000;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    border-color: #FF0000;
}

.social-instagram {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}
.social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.4);
    border-color: #E4405F;
}

.social-tiktok {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
.social-tiktok:hover {
    background: #000;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(37, 244, 238, 0.3), 0 0 10px rgba(254, 44, 85, 0.3);
    border-color: #25f4ee;
}

.social-location {
    color: #EA4335;
    background: rgba(234, 67, 53, 0.1);
}
.social-location:hover {
    background: #EA4335;
    color: white;
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.4);
    border-color: #EA4335;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links-col h4 {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-links-col a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-mini {
    padding: 0;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 900px;
    animation: scaleIn 0.4s ease;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-video-wrapper {
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modal-video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: 100vh;
}

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    position: relative;
    overflow: hidden;
}

.auth-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.auth-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
}

.auth-header h1 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 14px;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 42px;
    background: var(--bg-elevated);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition-normal);
}

.input-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: var(--bg-card);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.toggle-pass {
    position: absolute;
    right: 14px;
    color: var(--text-muted);
    font-size: 14px;
    padding: 4px;
    transition: var(--transition-normal);
}

.toggle-pass:hover {
    color: var(--text-primary);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid var(--border-color);
    background: var(--bg-elevated);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-check label {
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}

.form-check label a {
    color: var(--primary-light);
    font-weight: 600;
}

.form-check label a:hover {
    text-decoration: underline;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link {
    font-size: 13px;
    color: var(--primary-light);
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary-light);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.legal-card h1 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 36px;
}

.legal-content h2 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    padding-left: 16px;
}

.legal-content ul li::before {
    content: '•';
    color: var(--primary-light);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-login-btn,
    .nav-register-btn {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid var(--border-color);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 20px;
    }

    .nav-close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--bg-elevated);
        color: var(--text-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--radius-md);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(99, 102, 241, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-menu-footer {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }

    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Steps Mobile */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* CTA Mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Auth Mobile */
    .auth-card {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Legal Mobile */
    .legal-card {
        padding: 32px 24px;
    }

    .legal-card h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .logo-text {
        font-size: 15px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .package-price .amount {
        font-size: 40px;
    }

    .auth-header h1 {
        font-size: 24px;
    }
}

/* ===== 3D CARD EFFECTS ===== */
.feature-card,
.step-card,
.pricing-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
}

.step-card:hover {
    transform: translateY(-6px) rotateX(1deg) rotateY(1deg);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: white;
}

/* ===== LOADING ANIMATION FOR PAGE ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

body.loading::after {
    opacity: 1;
    pointer-events: all;
}

/* Nav menu overlay for mobile */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO BUTTONS - MOBILE SIDE BY SIDE FIX
   ============================================ */
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: stretch;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
}

/* Mobile specific */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: row !important;
        gap: 10px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        flex: 1;
        width: auto !important;
        padding: 14px 16px;
        font-size: 14px;
        justify-content: center;
    }
    
    .hero-buttons .btn i {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 8px;
    }
    
    .hero-buttons .btn {
        padding: 13px 12px;
        font-size: 13px;
    }
    
    .hero-buttons .btn i {
        font-size: 12px;
        margin-left: 2px;
    }
}

/* For very small screens - stack if needed */
@media (max-width: 360px) {
    .hero-buttons .btn {
        padding: 12px 10px;
        font-size: 12px;
    }
}

/* ============================================
   CTA BUTTONS - MOBILE SIDE BY SIDE
   ============================================ */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: row !important;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-buttons .btn {
        flex: 1;
        width: auto !important;
        max-width: none !important;
        padding: 14px 16px;
        font-size: 14px;
        justify-content: center;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        gap: 8px;
    }
    
    .cta-buttons .btn {
        padding: 13px 12px;
        font-size: 13px;
    }
}

/* ============================================
   ANIMATED "CREATE FREE ACCOUNT" BUTTON
   ============================================ */

/* Target the primary button in hero buttons */
.hero-buttons .btn-primary {
    position: relative;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #6366f1);
    background-size: 200% 200%;
    animation: gradientFlow 3s ease infinite, btnPulse 2s ease-in-out infinite;
    overflow: hidden;
    z-index: 1;
    border: none;
    box-shadow: 
        0 4px 20px rgba(99, 102, 241, 0.4),
        0 0 40px rgba(139, 92, 246, 0.2);
}

/* Animated gradient background flow */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Pulsing glow animation */
@keyframes btnPulse {
    0%, 100% { 
        box-shadow: 
            0 4px 20px rgba(99, 102, 241, 0.4),
            0 0 40px rgba(139, 92, 246, 0.2);
    }
    50% { 
        box-shadow: 
            0 6px 30px rgba(99, 102, 241, 0.6),
            0 0 60px rgba(139, 92, 246, 0.4),
            0 0 80px rgba(99, 102, 241, 0.3);
    }
}

/* Shimmer light sweep effect */
.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shimmerSweep 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Glowing border ring effect */
.hero-buttons .btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899, #6366f1);
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: gradientFlow 3s ease infinite;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.hero-buttons .btn-primary:hover::after {
    opacity: 0.8;
}

/* Arrow icon animation */
.hero-buttons .btn-primary i {
    animation: arrowBounce 1.5s ease-in-out infinite;
    display: inline-block;
    position: relative;
    z-index: 2;
}

@keyframes arrowBounce {
    0%, 100% { 
        transform: translateX(0); 
    }
    50% { 
        transform: translateX(5px); 
    }
}

/* Text stays above effects */
.hero-buttons .btn-primary span {
    position: relative;
    z-index: 2;
}

/* Hover state */
.hero-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    animation: gradientFlow 1.5s ease infinite, btnPulseHover 1s ease-in-out infinite;
}

@keyframes btnPulseHover {
    0%, 100% { 
        box-shadow: 
            0 8px 30px rgba(99, 102, 241, 0.6),
            0 0 60px rgba(139, 92, 246, 0.4);
    }
    50% { 
        box-shadow: 
            0 12px 40px rgba(99, 102, 241, 0.8),
            0 0 80px rgba(139, 92, 246, 0.6),
            0 0 100px rgba(236, 72, 153, 0.3);
    }
}

/* Active/click state */
.hero-buttons .btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* ============================================
   MOBILE OPTIMIZATION (Lighter animations)
   ============================================ */
@media (max-width: 768px) {
    .hero-buttons .btn-primary {
        animation: gradientFlow 4s ease infinite, btnPulseMobile 2.5s ease-in-out infinite;
    }
    
    @keyframes btnPulseMobile {
        0%, 100% { 
            box-shadow: 
                0 4px 15px rgba(99, 102, 241, 0.4),
                0 0 25px rgba(139, 92, 246, 0.2);
        }
        50% { 
            box-shadow: 
                0 6px 25px rgba(99, 102, 241, 0.6),
                0 0 40px rgba(139, 92, 246, 0.4);
        }
    }
    
    /* Disable blur glow on mobile for performance */
    .hero-buttons .btn-primary::after {
        display: none;
    }
    
    /* Keep shimmer but slower */
    .hero-buttons .btn-primary::before {
        animation: shimmerSweep 4s ease-in-out infinite;
    }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-buttons .btn-primary,
    .hero-buttons .btn-primary::before,
    .hero-buttons .btn-primary::after,
    .hero-buttons .btn-primary i {
        animation: none !important;
    }
}

/* ============================================
   BONUS: Sparkle particles effect
   ============================================ */
.hero-buttons .btn-primary {
    overflow: visible;
}

.hero-buttons .btn-primary .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 3;
}

.hero-buttons .btn-primary .sparkle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: sparkle 2s ease-in-out infinite;
    animation-delay: 0s;
}

.hero-buttons .btn-primary .sparkle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation: sparkle 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-buttons .btn-primary .sparkle:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation: sparkle 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
        box-shadow: 
            0 0 10px white,
            0 0 20px rgba(255, 255, 255, 0.8);
    }
}

/* Hide sparkles on mobile for performance */
@media (max-width: 768px) {
    .hero-buttons .btn-primary .sparkle {
        display: none;
    }
}

/* ============================================
   PRICING BADGE FIX - SHOW FULLY
   ============================================ */

/* Pricing grid needs extra top padding for badges */
.pricing-grid {
    padding-top: 40px !important;
    overflow: visible !important;
}

/* Pricing section overflow fix */
.pricing-section {
    overflow: visible !important;
}

/* Cards should allow badge to overflow */
.pricing-card {
    overflow: visible !important;
}

/* Badge positioning - move down slightly so it sits on card edge */
.package-badge {
    top: -16px !important;
    z-index: 10 !important;
    padding: 8px 20px !important;
    font-size: 11px !important;
}

/* For mobile - make sure badge is fully visible */
@media (max-width: 768px) {
    .pricing-grid {
        padding-top: 50px !important;
        gap: 50px !important;
    }
    
    .package-badge {
        top: -14px !important;
        font-size: 10px !important;
        padding: 7px 16px !important;
        letter-spacing: 0.3px !important;
    }
    
    .pricing-card {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        padding-top: 45px !important;
        gap: 45px !important;
    }
    
    .package-badge {
        top: -13px !important;
        font-size: 10px !important;
        padding: 6px 14px !important;
    }
}

/* If badge still cuts, make it sit nicely on card */
.pricing-card .package-badge {
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 20px var(--card-glow, rgba(99, 102, 241, 0.4));
}

/* ============================================
   PRICING - PREMIUM FONTS ONLY
   ============================================ */

/* Import premium fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* Package Badge - Premium Font */
.package-badge {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase;
}

/* Package Name - Premium Heading */
.package-name {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.8px !important;
    line-height: 1.2 !important;
}

/* Package Description */
.package-desc {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.1px !important;
    line-height: 1.65 !important;
}

/* Price - Premium Bold */
.package-price .currency {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
}

.package-price .amount {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -2.5px !important;
}

.package-price .period {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
}

/* Features List */
.package-features li {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.2px !important;
    line-height: 1.55 !important;
}

/* ============================================
   ANIMATED "GET STARTED" BUTTONS
   ============================================ */
.btn-package {
    position: relative;
    overflow: hidden !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase;
    font-size: 14px !important;
    isolation: isolate;
}

/* Shimmer light sweep on button */
.btn-package::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    ) !important;
    animation: btnShimmer 2.5s ease-in-out infinite !important;
    z-index: 1;
    pointer-events: none;
}

@keyframes btnShimmer {
    0% { left: -100%; }
    60%, 100% { left: 100%; }
}

/* Arrow icon sliding animation */
.btn-package i {
    animation: arrowSlide 1.5s ease-in-out infinite;
    display: inline-block;
    position: relative;
    z-index: 2;
}

@keyframes arrowSlide {
    0%, 100% { 
        transform: translateX(0); 
    }
    50% { 
        transform: translateX(6px); 
    }
}

/* Button text on top */
.btn-package span {
    position: relative;
    z-index: 2;
}


/* ============================================
   HOVER EFFECTS (Desktop only)
   ============================================ */
@media (hover: hover) and (pointer: fine) {
    .btn-package:hover {
        transform: translateY(-3px) !important;
    }
}

/* ============================================
   MOBILE OPTIMIZATION
   ============================================ */
@media (max-width: 768px) {
    /* Slower animations on mobile */
    .btn-starter,
    .btn-launch {
        animation-duration: 3s !important;
    }
    
    .btn-popular,
    .btn-premium {
        animation-duration: 2.5s !important;
    }
    
    /* Slower shimmer */
    .btn-package::before {
        animation: btnShimmer 3.5s ease-in-out infinite !important;
    }
    
    /* Slower arrow */
    .btn-package i {
        animation: arrowSlide 2s ease-in-out infinite;
    }
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .btn-package,
    .btn-package::before,
    .btn-package i {
        animation: none !important;
    }
}

/* ============================================
   GET STARTED BUTTONS - MATCH PACKAGE COLORS
   ============================================ */

/* ============================================
   STARTER BUTTON - DEEP BLUE (matches blue package)
   ============================================ */
.btn-starter {
    background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6) !important;
    background-size: 200% 200% !important;
    color: #ffffff !important;
    border: 2px solid #60a5fa !important;
    animation: pulseBlue 2.5s ease-in-out infinite, gradientShiftBlue 4s ease infinite !important;
}

@keyframes gradientShiftBlue {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulseBlue {
    0%, 100% { 
        box-shadow: 
            0 0 15px rgba(59, 130, 246, 0.4),
            0 4px 15px rgba(30, 64, 175, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(59, 130, 246, 0.7),
            0 0 50px rgba(59, 130, 246, 0.4),
            0 6px 20px rgba(30, 64, 175, 0.5);
    }
}

/* ============================================
   POPULAR BUTTON - PURPLE (matches purple package)
   ============================================ */
.btn-popular {
    background: linear-gradient(135deg, #6d28d9, #7c3aed, #8b5cf6) !important;
    background-size: 200% 200% !important;
    color: #ffffff !important;
    border: 2px solid #a78bfa !important;
    animation: pulsePurple 2.5s ease-in-out infinite, gradientShiftPurple 4s ease infinite !important;
}

@keyframes gradientShiftPurple {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulsePurple {
    0%, 100% { 
        box-shadow: 
            0 0 15px rgba(139, 92, 246, 0.4),
            0 4px 15px rgba(109, 40, 217, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(139, 92, 246, 0.7),
            0 0 50px rgba(167, 139, 250, 0.4),
            0 6px 20px rgba(109, 40, 217, 0.5);
    }
}

/* ============================================
   PREMIUM BUTTON - GOLD (matches gold package)
   ============================================ */
.btn-premium {
    background: linear-gradient(135deg, #b45309, #d97706, #f59e0b, #fbbf24) !important;
    background-size: 200% 200% !important;
    color: #1a1a1a !important;
    border: 2px solid #fcd34d !important;
    animation: pulseGold 2s ease-in-out infinite, gradientShiftGold 3s ease infinite !important;
}

@keyframes gradientShiftGold {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulseGold {
    0%, 100% { 
        box-shadow: 
            0 0 15px rgba(251, 191, 36, 0.4),
            0 4px 15px rgba(180, 83, 9, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 35px rgba(251, 191, 36, 0.8),
            0 0 60px rgba(245, 158, 11, 0.5),
            0 6px 20px rgba(217, 119, 6, 0.5);
    }
}

/* ============================================
   LAUNCH BUTTON - GREEN (matches green package)
   ============================================ */
.btn-launch {
    background: linear-gradient(135deg, #047857, #059669, #10b981) !important;
    background-size: 200% 200% !important;
    color: #ffffff !important;
    border: 2px solid #34d399 !important;
    animation: pulseGreen 2.5s ease-in-out infinite, gradientShiftGreen 4s ease infinite !important;
}

@keyframes gradientShiftGreen {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulseGreen {
    0%, 100% { 
        box-shadow: 
            0 0 15px rgba(16, 185, 129, 0.4),
            0 4px 15px rgba(4, 120, 87, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(16, 185, 129, 0.7),
            0 0 50px rgba(52, 211, 153, 0.4),
            0 6px 20px rgba(4, 120, 87, 0.5);
    }
}

/* ============================================
   COMMON BUTTON STYLES
   ============================================ */
.btn-package {
    position: relative;
    overflow: hidden !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase;
    font-size: 14px !important;
    padding: 16px 32px !important;
    border-radius: 14px !important;
    isolation: isolate;
    transition: transform 0.3s ease !important;
}

/* Shimmer light sweep on all buttons */
.btn-package::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    ) !important;
    animation: btnShimmer 2.5s ease-in-out infinite !important;
    z-index: 1;
    pointer-events: none;
}

@keyframes btnShimmer {
    0% { left: -100%; }
    60%, 100% { left: 100%; }
}

/* Arrow sliding animation */
.btn-package i {
    animation: arrowSlide 1.5s ease-in-out infinite;
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-left: 6px;
}

@keyframes arrowSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

.btn-package span {
    position: relative;
    z-index: 2;
}

/* ============================================
   HOVER EFFECTS (Desktop only)
   ============================================ */
@media (hover: hover) and (pointer: fine) {
    .btn-package:hover {
        transform: translateY(-3px) scale(1.02) !important;
    }
    
    .btn-starter:hover {
        box-shadow: 
            0 0 40px rgba(59, 130, 246, 0.9),
            0 0 70px rgba(59, 130, 246, 0.5) !important;
    }
    
    .btn-popular:hover {
        box-shadow: 
            0 0 40px rgba(139, 92, 246, 0.9),
            0 0 70px rgba(167, 139, 250, 0.5) !important;
    }
    
    .btn-premium:hover {
        box-shadow: 
            0 0 45px rgba(251, 191, 36, 1),
            0 0 80px rgba(245, 158, 11, 0.6) !important;
    }
    
    .btn-launch:hover {
        box-shadow: 
            0 0 40px rgba(16, 185, 129, 0.9),
            0 0 70px rgba(52, 211, 153, 0.5) !important;
    }
}

/* ============================================
   MOBILE OPTIMIZATION
   ============================================ */
@media (max-width: 768px) {
    .btn-package {
        padding: 14px 28px !important;
        font-size: 13px !important;
    }
    
    /* Slower animations on mobile */
    .btn-starter,
    .btn-launch {
        animation-duration: 3s, 5s !important;
    }
    
    .btn-popular,
    .btn-premium {
        animation-duration: 2.5s, 4s !important;
    }
    
    .btn-package::before {
        animation: btnShimmer 3.5s ease-in-out infinite !important;
    }
    
    .btn-package i {
        animation: arrowSlide 2s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .btn-package {
        padding: 13px 24px !important;
        font-size: 12px !important;
        letter-spacing: 0.4px !important;
    }
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .btn-package,
    .btn-package::before,
    .btn-package i {
        animation: none !important;
    }
}

/* ============================================
   FOOTER LINKS - SIDE BY SIDE + COLORS
   ============================================ */

/* Footer links grid - 3 columns side by side */
.footer-links-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}

/* COMPANY heading - Blue color */
.footer-links-col:nth-child(1) h4 {
    color: #60a5fa !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    margin-bottom: 20px !important;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-col:nth-child(1) h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, transparent);
    border-radius: 2px;
}

/* LEGAL heading - Purple color */
.footer-links-col:nth-child(2) h4 {
    color: #a78bfa !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    margin-bottom: 20px !important;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-col:nth-child(2) h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #a78bfa, transparent);
    border-radius: 2px;
}

/* ACCOUNT heading - Green color */
.footer-links-col:nth-child(3) h4 {
    color: #34d399 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    margin-bottom: 20px !important;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-col:nth-child(3) h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #34d399, transparent);
    border-radius: 2px;
}

/* COMPANY links - Blue hover */
.footer-links-col:nth-child(1) a {
    color: #94a3b8 !important;
    font-size: 14px;
    transition: all 0.25s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links-col:nth-child(1) a:hover {
    color: #60a5fa !important;
    transform: translateX(4px) !important;
}

.footer-links-col:nth-child(1) a::before {
    content: '';
    width: 0px;
    height: 1px;
    background: #60a5fa;
    transition: width 0.25s ease;
    display: inline-block;
}

.footer-links-col:nth-child(1) a:hover::before {
    width: 8px;
}

/* LEGAL links - Purple hover */
.footer-links-col:nth-child(2) a {
    color: #94a3b8 !important;
    font-size: 14px;
    transition: all 0.25s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links-col:nth-child(2) a:hover {
    color: #a78bfa !important;
    transform: translateX(4px) !important;
}

.footer-links-col:nth-child(2) a::before {
    content: '';
    width: 0px;
    height: 1px;
    background: #a78bfa;
    transition: width 0.25s ease;
    display: inline-block;
}

.footer-links-col:nth-child(2) a:hover::before {
    width: 8px;
}

/* ACCOUNT links - Green hover */
.footer-links-col:nth-child(3) a {
    color: #94a3b8 !important;
    font-size: 14px;
    transition: all 0.25s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links-col:nth-child(3) a:hover {
    color: #34d399 !important;
    transform: translateX(4px) !important;
}

.footer-links-col:nth-child(3) a::before {
    content: '';
    width: 0px;
    height: 1px;
    background: #34d399;
    transition: width 0.25s ease;
    display: inline-block;
}

.footer-links-col:nth-child(3) a:hover::before {
    width: 8px;
}

/* ============================================
   MOBILE - STACK 2 COLUMNS THEN 1
   ============================================ */
@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 28px !important;
    }
    
    /* ACCOUNT goes full width on small mobile */
    .footer-links-col:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
    
    .footer-links-col h4 {
        font-size: 11px !important;
        letter-spacing: 1.2px !important;
    }
    
    .footer-links-col a {
        font-size: 13px !important;
    }
}

/* ============================================
   HOW IT WORKS PAGE - PREMIUM DESIGN
   ============================================ */

.how-page-section {
    padding: 130px 0 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Background Animation */
.how-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.how-bg-animation .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(80px);
}

.how-bg-animation .shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.how-bg-animation .shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation: floatSlow 18s ease-in-out infinite;
}

.how-bg-animation .grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.how-page-section .container {
    position: relative;
    z-index: 1;
}

/* Page Header */
.how-page-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: glow 3s ease-in-out infinite;
}

.page-badge i {
    color: #fbbf24;
    font-size: 12px;
}

.how-page-title {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #ffffff;
}

.how-page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* Steps Container */
.how-steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Step Card */
.how-step-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.how-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    transition: height 0.4s ease;
    border-radius: 0 4px 4px 0;
}

.how-step-card:hover::before {
    height: 100%;
}

.how-step-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background: var(--bg-card-hover);
    transform: translateX(4px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(99, 102, 241, 0.1);
}

/* Step Icon */
.how-step-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #a78bfa;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.how-step-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.how-step-icon i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease, transform 0.4s ease;
}

.how-step-card:hover .how-step-icon::before {
    opacity: 1;
}

.how-step-card:hover .how-step-icon {
    border-color: transparent;
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.5);
    transform: rotate(-5deg) scale(1.05);
}

.how-step-card:hover .how-step-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Step Content */
.how-step-content {
    flex: 1;
    min-width: 0;
}

.how-step-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #818cf8;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.how-step-card:hover .how-step-number {
    color: #a78bfa;
}

.how-step-title {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.how-step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* CTA Box */
.how-cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border: 1.5px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.how-cta-bg-effect {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15), transparent 50%);
    pointer-events: none;
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.how-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.how-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.how-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .how-page-section {
        padding: 100px 0 60px;
    }
    
    .how-page-header {
        margin-bottom: 40px;
    }
    
    .how-page-title {
        font-size: 32px;
    }
    
    .how-page-subtitle {
        font-size: 15px;
    }
    
    .how-step-card {
        padding: 22px 20px;
        gap: 16px;
        border-radius: 16px;
    }
    
    .how-step-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .how-step-number {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
    
    .how-step-title {
        font-size: 19px;
    }
    
    .how-step-desc {
        font-size: 14px;
    }
    
    .how-cta-box {
        padding: 40px 24px;
        border-radius: 20px;
    }
    
    .how-cta-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .how-cta-buttons .btn {
        flex: 1;
        padding: 14px 16px;
        font-size: 14px;
        justify-content: center;
        white-space: nowrap;
    }
    
    .how-bg-animation .floating-shape {
        opacity: 0.03;
    }
    
    /* Disable hover transform on mobile */
    .how-step-card:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .how-page-section {
        padding: 90px 0 50px;
    }
    
    .how-step-card {
        padding: 20px 16px;
        gap: 14px;
    }
    
    .how-step-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }
    
    .how-step-title {
        font-size: 17px;
    }
    
    .how-step-desc {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .how-cta-title {
        font-size: 26px;
    }
    
    .how-cta-text {
        font-size: 14px;
    }
    
    .how-cta-box {
        padding: 32px 20px;
    }
    
    .how-cta-buttons .btn {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .page-badge {
        font-size: 12px;
        padding: 7px 16px;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .how-bg-animation .floating-shape,
    .how-cta-bg-effect {
        animation: none !important;
    }
}

/* ============================================
   ABOUT PAGE - PREMIUM DESIGN
   ============================================ */

/* ========== ABOUT HERO ========== */
.about-hero {
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15), transparent 50%),
        radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.1), transparent 50%),
        linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about-hero-bg .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(100px);
}

.about-hero-bg .shape-1 {
    width: 500px;
    height: 500px;
    background: #6366f1;
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.about-hero-bg .shape-2 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    bottom: -100px;
    left: -100px;
    animation: floatSlow 18s ease-in-out infinite;
}

.about-hero-bg .shape-3 {
    width: 300px;
    height: 300px;
    background: #ec4899;
    top: 40%;
    left: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.about-hero-bg .grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.about-hero-title {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.about-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ========== ABOUT CONTENT SECTION ========== */
.about-content-section {
    padding: 80px 0;
    background: 
        linear-gradient(180deg, #0f1629 0%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

.about-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05), transparent 70%);
    pointer-events: none;
}

.about-content-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05), transparent 70%);
    pointer-events: none;
}

.about-content-section .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.about-content-block {
    margin-bottom: 50px;
}

.about-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Feature Block */
.about-feature-block {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(139, 92, 246, 0.04));
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.about-feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--block-color, #6366f1), transparent);
    opacity: 0.6;
}

.about-feature-block:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(99, 102, 241, 0.1);
}

/* Feature Block Icons */
.feature-block-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #a78bfa;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-block-icon.icon-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
    border-color: rgba(139, 92, 246, 0.4);
    color: #c084fc;
}

.feature-block-icon.icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
    border-color: rgba(16, 185, 129, 0.4);
    color: #34d399;
}

.feature-block-icon.icon-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.1));
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.feature-block-icon.icon-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(244, 114, 182, 0.1));
    border-color: rgba(236, 72, 153, 0.4);
    color: #f472b6;
}

.feature-block-icon.icon-gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
    border-color: rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}

.about-feature-block:hover .feature-block-icon {
    transform: rotate(-5deg) scale(1.05);
}

.about-block-title {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Quote */
.about-quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 20px 0;
    margin-bottom: 16px;
    position: relative;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
}

.quote-mark {
    font-size: 40px;
    color: rgba(139, 92, 246, 0.4);
    font-family: Georgia, serif;
    line-height: 0;
    position: relative;
    top: 12px;
    margin-right: 4px;
}

.quote-mark.closing {
    margin-left: 4px;
    margin-right: 0;
}

/* About List */
.about-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.04);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-list li:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateX(4px);
}

.about-list li i {
    color: #a78bfa;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* About Grid (Who We Serve) */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.about-grid-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-grid-item i {
    color: #34d399;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.about-grid-item:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

/* Commitment Block - Special */
.commitment-block {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(217, 119, 6, 0.05));
    border-color: rgba(245, 158, 11, 0.25);
}

.commitment-block::before {
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
}

/* ========== CONTACT SECTION ========== */
.about-contact-section {
    padding: 80px 0;
    background: 
        radial-gradient(ellipse at top, rgba(139, 92, 246, 0.08), transparent 50%),
        linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
    position: relative;
    overflow: hidden;
}

.about-contact-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, linear-gradient(90deg, #6366f1, #8b5cf6));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 18px;
    transition: all 0.4s ease;
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-card:hover .contact-icon::after {
    opacity: 0.6;
}

.icon-blue-grad {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
.icon-blue-grad::after { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.icon-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.icon-whatsapp::after { background: linear-gradient(135deg, #25D366, #128C7E); }

.icon-pink-grad {
    background: linear-gradient(135deg, #ec4899, #db2777);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}
.icon-pink-grad::after { background: linear-gradient(135deg, #ec4899, #db2777); }

.icon-red-grad {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}
.icon-red-grad::after { background: linear-gradient(135deg, #ef4444, #dc2626); }

.contact-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-info {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.contact-email {
    font-size: 13px;
}

.contact-address {
    font-size: 13px;
    line-height: 1.6;
}

.contact-action {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #818cf8;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.contact-card:hover .contact-action {
    color: #a78bfa;
    transform: translateX(4px);
}

/* Social Section */
.about-social-section {
    text-align: center;
    padding-top: 20px;
}

.social-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.social-icon-large {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.social-icon-large.social-facebook {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}
.social-icon-large.social-facebook:hover {
    background: #1877F2;
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
    border-color: #1877F2;
}

.social-icon-large.social-youtube {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}
.social-icon-large.social-youtube:hover {
    background: #FF0000;
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    border-color: #FF0000;
}

.social-icon-large.social-instagram {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}
.social-icon-large.social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.5);
    border-color: #E4405F;
}

.social-icon-large.social-tiktok {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}
.social-icon-large.social-tiktok:hover {
    background: #000;
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(37, 244, 238, 0.3),
        0 0 15px rgba(254, 44, 85, 0.3);
    border-color: #25f4ee;
}

/* ========== CTA SECTION ========== */
.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f1629 0%, #0a0e1a 100%);
}

.about-cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1.5px solid rgba(99, 102, 241, 0.3);
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-glow-effect {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.2), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.2), transparent 50%);
    pointer-events: none;
    animation: rotateBg 20s linear infinite;
}

.about-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.about-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 50px;
    }
    
    .about-hero-title {
        font-size: 42px;
    }
    
    .about-hero-subtitle {
        font-size: 15px;
    }
    
    .about-hero-buttons {
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }
    
    .about-hero-buttons .btn {
        flex: 1;
        padding: 14px 12px;
        font-size: 13px;
        justify-content: center;
        white-space: nowrap;
    }
    
    .about-content-section {
        padding: 50px 0;
    }
    
    .about-feature-block {
        padding: 30px 22px;
        border-radius: 18px;
    }
    
    .feature-block-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        border-radius: 14px;
    }
    
    .about-block-title {
        font-size: 24px;
    }
    
    .about-quote {
        font-size: 20px;
    }
    
    .about-paragraph {
        font-size: 15px;
    }
    
    .about-list li {
        font-size: 14px;
        padding: 11px 14px;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .about-grid-item {
        padding: 14px 12px;
        font-size: 13px;
    }
    
    .about-contact-section {
        padding: 50px 0;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .contact-card {
        padding: 26px 18px;
    }
    
    .contact-icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
        border-radius: 14px;
    }
    
    .contact-title {
        font-size: 16px;
    }
    
    .contact-info {
        font-size: 13px;
    }
    
    .contact-email,
    .contact-address {
        font-size: 12px;
    }
    
    .about-cta-section {
        padding: 50px 0;
    }
    
    .about-cta-box {
        padding: 40px 24px;
        border-radius: 20px;
    }
    
    .about-cta-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .about-cta-buttons .btn {
        flex: 1;
        padding: 14px 16px;
        font-size: 14px;
        justify-content: center;
        white-space: nowrap;
    }
    
    /* Disable hover transforms */
    .about-feature-block:hover,
    .contact-card:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-feature-block {
        padding: 24px 18px;
    }
    
    .about-block-title {
        font-size: 22px;
    }
    
    .about-quote {
        font-size: 18px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-title {
        font-size: 24px;
    }
    
    .about-cta-text {
        font-size: 14px;
    }
    
    .about-cta-buttons .btn {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .social-icon-large {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

/* ============================================
   BLOG PAGE - PREMIUM DESIGN
   ============================================ */

/* ========== BLOG HERO ========== */
.blog-hero {
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.1), transparent 50%),
        linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-bg .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(100px);
}

.blog-hero-bg .shape-1 {
    width: 500px;
    height: 500px;
    background: #6366f1;
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.blog-hero-bg .shape-2 {
    width: 400px;
    height: 400px;
    background: #ec4899;
    bottom: -100px;
    left: -100px;
    animation: floatSlow 18s ease-in-out infinite;
}

.blog-hero-bg .grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.blog-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Search */
.blog-search {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.blog-search i {
    position: absolute;
    left: 22px;
    color: var(--text-muted);
    font-size: 16px;
    z-index: 1;
    pointer-events: none;
}

.blog-search input {
    width: 100%;
    padding: 18px 24px 18px 54px;
    background: rgba(99, 102, 241, 0.06);
    border: 1.5px solid rgba(99, 102, 241, 0.25);
    border-radius: 100px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-search input:focus {
    border-color: rgba(99, 102, 241, 0.6);
    background: rgba(99, 102, 241, 0.1);
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.1),
        0 8px 25px rgba(99, 102, 241, 0.15);
}

.blog-search input::placeholder {
    color: var(--text-muted);
}

/* ========== CATEGORY TABS ========== */
.blog-categories {
    padding: 30px 0;
    background: linear-gradient(180deg, #0f1629 0%, #0a0e1a 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.category-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-tab i {
    font-size: 12px;
}

.category-tab:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #818cf8;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* ========== FEATURED POST ========== */
.featured-post-section {
    padding: 50px 0 30px;
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
}

.featured-post {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.08));
    border: 1.5px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.featured-post:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(99, 102, 241, 0.15);
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: absolute;
    top: 24px;
    right: 24px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    z-index: 2;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
    align-items: center;
}

.featured-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-img-overlay {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.featured-category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.featured-info {
    padding: 10px 0;
}

.post-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.post-date,
.post-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
}

.post-date i,
.post-read i {
    color: #818cf8;
    font-size: 11px;
}

.featured-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.featured-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.featured-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.6);
}

.featured-link i {
    transition: transform 0.3s ease;
}

.featured-link:hover i {
    transform: translateX(4px);
}

/* ========== BLOG POSTS GRID ========== */
.blog-posts-section {
    padding: 50px 0 80px;
    background: linear-gradient(180deg, #0f1629 0%, #0a0e1a 100%);
}

.section-header-mini {
    text-align: center;
    margin-bottom: 40px;
}

.posts-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.posts-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(99, 102, 241, 0.1);
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-img-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.6s ease;
    position: relative;
}

.blog-img-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.4));
}

.blog-card:hover .blog-img-bg {
    transform: scale(1.1);
}

.gradient-1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.gradient-2 { background: linear-gradient(135deg, #3b82f6, #1e40af); }
.gradient-3 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.gradient-4 { background: linear-gradient(135deg, #10b981, #047857); }
.gradient-5 { background: linear-gradient(135deg, #ec4899, #db2777); }
.gradient-6 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.gradient-7 { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.gradient-8 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.gradient-9 { background: linear-gradient(135deg, #ef4444, #b91c1c); }

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.tag-blue {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.tag-purple {
    background: rgba(139, 92, 246, 0.9);
    color: white;
}

.tag-gold {
    background: rgba(245, 158, 11, 0.9);
    color: #1a1a1a;
}

.tag-green {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.tag-pink {
    background: rgba(236, 72, 153, 0.9);
    color: white;
}

.tag-cyan {
    background: rgba(6, 182, 212, 0.9);
    color: white;
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 10px 0 12px;
    line-height: 1.4;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #c7d2fe;
}

.blog-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #818cf8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.blog-card-link:hover {
    color: #c4b5fd;
    gap: 10px;
}

.blog-card-link i {
    transition: transform 0.3s ease;
    font-size: 11px;
}

/* Load More Button */
.load-more-wrapper {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    min-width: 200px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.no-results p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
}

.newsletter-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.08));
    border: 1.5px solid rgba(99, 102, 241, 0.3);
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.newsletter-bg-effect {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15), transparent 50%);
    pointer-events: none;
    animation: rotateBg 15s linear infinite;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.newsletter-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input-wrapper i {
    position: absolute;
    left: 18px;
    color: var(--text-muted);
    font-size: 14px;
}

.newsletter-input-wrapper input {
    width: 100%;
    padding: 14px 18px 14px 46px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input-wrapper input:focus {
    border-color: rgba(99, 102, 241, 0.6);
    outline: none;
    background: var(--bg-card-hover);
}

.newsletter-form button {
    white-space: nowrap;
    padding: 14px 24px;
    font-size: 14px;
}

/* ========== BLOG CTA SECTION ========== */
.blog-cta-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #0f1629 0%, #0a0e1a 100%);
}

.blog-cta-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.08));
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.blog-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.blog-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .featured-image {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 50px;
    }
    
    .blog-hero-title {
        font-size: 40px;
    }
    
    .blog-hero-subtitle {
        font-size: 15px;
    }
    
    .blog-search input {
        padding: 15px 22px 15px 48px;
        font-size: 14px;
    }
    
    .category-tabs {
        gap: 8px;
        padding: 4px 0;
    }
    
    .category-tab {
        padding: 9px 16px;
        font-size: 12px;
    }
    
    .featured-post {
        padding: 24px;
        border-radius: 20px;
    }
    
    .featured-badge {
        top: 16px;
        right: 16px;
        padding: 6px 14px;
        font-size: 10px;
    }
    
    .featured-title {
        font-size: 22px;
    }
    
    .featured-excerpt {
        font-size: 14px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 17px;
    }
    
    .blog-img-bg {
        font-size: 50px;
    }
    
    .newsletter-box {
        padding: 36px 24px;
        border-radius: 20px;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
    
    .blog-cta-box {
        padding: 36px 24px;
        border-radius: 20px;
    }
    
    .blog-cta-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .blog-cta-buttons .btn {
        flex: 1;
        padding: 14px 12px;
        font-size: 13px;
        justify-content: center;
        white-space: nowrap;
    }
    
    /* Disable hover transforms on mobile */
    .featured-post:hover,
    .blog-card:hover {
        transform: none;
    }
    
    .blog-card:hover .blog-img-bg {
        transform: none;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 34px;
    }
    
    .blog-search input {
        font-size: 13px;
        padding: 14px 20px 14px 44px;
    }
    
    .blog-search i {
        left: 18px;
        font-size: 14px;
    }
    
    .featured-post {
        padding: 20px;
    }
    
    .featured-title {
        font-size: 20px;
    }
    
    .blog-card-content {
        padding: 18px;
    }
    
    .blog-card-title {
        font-size: 16px;
    }
    
    .blog-card-excerpt {
        font-size: 13px;
    }
    
    .newsletter-title {
        font-size: 22px;
    }
    
    .newsletter-text {
        font-size: 14px;
    }
    
    .blog-cta-title {
        font-size: 24px;
    }
    
    .blog-cta-buttons .btn {
        padding: 12px 14px;
        font-size: 12px;
    }
}

/* ============================================
   CONTACT PAGE - PREMIUM DESIGN
   ============================================ */

/* ========== CONTACT HERO ========== */
.contact-hero {
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15), transparent 50%),
        radial-gradient(ellipse at bottom, rgba(236, 72, 153, 0.1), transparent 50%),
        linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.contact-hero-bg .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(100px);
}

.contact-hero-bg .shape-1 {
    width: 500px;
    height: 500px;
    background: #6366f1;
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.contact-hero-bg .shape-2 {
    width: 400px;
    height: 400px;
    background: #ec4899;
    bottom: -100px;
    left: -100px;
    animation: floatSlow 18s ease-in-out infinite;
}

.contact-hero-bg .shape-3 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: 50%;
    left: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.contact-hero-bg .grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.contact-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Stats */
.contact-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 24px 32px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    max-width: 720px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
}

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

/* ========== CONTACT SECTION TITLES ========== */
.contact-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.contact-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== CONTACT CHANNELS ========== */
.contact-channels-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0f1629 0%, #0a0e1a 100%);
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--card-glow, rgba(99, 102, 241, 0.1)), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.channel-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-border, rgba(99, 102, 241, 0.4));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.channel-card:hover::before {
    opacity: 1;
}

.channel-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    transition: all 0.4s ease;
    position: relative;
}

.channel-card:hover .channel-icon-wrapper {
    transform: rotate(-5deg) scale(1.05);
}

.channel-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
.channel-card:has(.channel-blue) { --card-glow: rgba(59, 130, 246, 0.08); --card-border: rgba(59, 130, 246, 0.4); }

.channel-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.channel-card:has(.channel-whatsapp) { --card-glow: rgba(37, 211, 102, 0.08); --card-border: rgba(37, 211, 102, 0.4); }

.channel-pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}
.channel-card:has(.channel-pink) { --card-glow: rgba(236, 72, 153, 0.08); --card-border: rgba(236, 72, 153, 0.4); }

.channel-messenger {
    background: linear-gradient(135deg, #006AFF, #00C6FF);
    box-shadow: 0 8px 20px rgba(0, 106, 255, 0.3);
}
.channel-card:has(.channel-messenger) { --card-glow: rgba(0, 106, 255, 0.08); --card-border: rgba(0, 106, 255, 0.4); }

.channel-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.channel-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #818cf8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.channel-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.channel-value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    margin: 4px 0;
    word-break: break-word;
    font-weight: 500;
}

.channel-email-text {
    font-size: 13px;
}

.channel-hours {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.channel-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #a78bfa;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.channel-card:hover .channel-action {
    color: #c4b5fd;
    gap: 10px;
}

/* ========== MAIN CONTACT SECTION ========== */
.contact-main-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
}

.form-header {
    margin-bottom: 30px;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 100px;
    color: #a78bfa;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-badge i {
    font-size: 11px;
}

.form-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form .form-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form .form-group label i {
    color: #818cf8;
    font-size: 12px;
    width: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(99, 102, 241, 0.6);
    outline: none;
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23818cf8' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    accent-color: #6366f1;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: #a78bfa;
    font-weight: 600;
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.btn-submit {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

/* ========== INFO PANEL ========== */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.4s ease;
}

.info-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.info-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}

.icon-grad-purple {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

.icon-grad-pink {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.3);
}

.info-card-label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #818cf8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.info-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-row > i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    font-size: 13px;
    flex-shrink: 0;
}

.info-row-label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.info-row p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Quick Buttons */
.quick-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.quick-btn-call {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.quick-btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
}

.quick-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.quick-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Social Grid */
.contact-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link i {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.contact-social-link.social-facebook {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}
.contact-social-link.social-facebook:hover {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.4);
}

.contact-social-link.social-youtube {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}
.contact-social-link.social-youtube:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
}

.contact-social-link.social-instagram {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}
.contact-social-link.social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: #E4405F;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(228, 64, 95, 0.4);
}

.contact-social-link.social-tiktok {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}
.contact-social-link.social-tiktok:hover {
    background: #000;
    color: white;
    border-color: #25f4ee;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* ========== MAP SECTION ========== */
.map-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0f1629 0%, #0a0e1a 100%);
}

.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(99, 102, 241, 0.25);
    margin-top: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.map-wrapper iframe {
    display: block;
    filter: invert(90%) hue-rotate(180deg) saturate(0.8);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: invert(90%) hue-rotate(180deg) saturate(1);
}

.map-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    max-width: 320px;
}

.map-info-card {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.map-pin {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
    0%, 100% { 
        box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4); 
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(239, 68, 68, 0.7); 
        transform: scale(1.05);
    }
}

.map-info-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.map-info-card p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
}

.map-link i {
    font-size: 13px;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-item.active {
    border-color: rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #c7d2fe;
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    color: #a78bfa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 22px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(99, 102, 241, 0.15);
}

/* ========== CTA SECTION ========== */
.contact-cta-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #0f1629 0%, #0a0e1a 100%);
}

.contact-cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1.5px solid rgba(99, 102, 241, 0.3);
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.contact-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 40px;
    }
    
    .contact-hero-title {
        font-size: 40px;
    }
    
    .contact-stats {
        gap: 16px;
        padding: 18px 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }
    
    .contact-stats::-webkit-scrollbar {
        display: none;
    }
    
    .stat-item {
        flex-shrink: 0;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .contact-channels-section,
    .contact-main-section,
    .map-section,
    .faq-section {
        padding: 40px 0;
    }
    
    .contact-channels-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .channel-card {
        padding: 22px 20px;
    }
    
    .channel-icon-wrapper {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .channel-title {
        font-size: 17px;
    }
    
    .contact-form-wrapper {
        padding: 28px 20px;
        border-radius: 18px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .info-card {
        padding: 22px 18px;
    }
    
    .info-card-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .info-card-title {
        font-size: 16px;
    }
    
    .quick-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .quick-btn {
        padding: 12px 14px;
        font-size: 12px;
    }
    
    .contact-social-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .map-overlay {
        position: static;
        max-width: 100%;
        padding: 16px;
        background: var(--bg-card);
    }
    
    .map-info-card {
        margin-bottom: 0;
        border-radius: 0;
        border: none;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 11px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
    
    .contact-cta-box {
        padding: 36px 24px;
        border-radius: 20px;
    }
    
    .contact-cta-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .contact-cta-buttons .btn {
        flex: 1;
        padding: 14px 12px;
        font-size: 13px;
        justify-content: center;
        white-space: nowrap;
    }
    
    .channel-card:hover,
    .info-card:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 34px;
    }
    
    .contact-hero-subtitle {
        font-size: 14px;
    }
    
    .form-title {
        font-size: 22px;
    }
    
    .channel-card {
        padding: 20px 16px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 13px;
        padding: 12px 14px;
    }
    
    .contact-social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-title {
        font-size: 22px;
    }
    
    .contact-cta-text {
        font-size: 13px;
    }
}

/* ============================================
   LEGAL PAGES - PREMIUM DESIGN
   (Terms, Privacy, Refund, Reseller Policy)
   ============================================ */

/* ========== LEGAL HERO ========== */
.legal-hero {
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15), transparent 50%),
        linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
}

.legal-hero-purple {
    background: 
        radial-gradient(ellipse at top, rgba(139, 92, 246, 0.15), transparent 50%),
        linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
}

.legal-hero-gold {
    background: 
        radial-gradient(ellipse at top, rgba(245, 158, 11, 0.15), transparent 50%),
        linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
}

.legal-hero-green {
    background: 
        radial-gradient(ellipse at top, rgba(16, 185, 129, 0.15), transparent 50%),
        linear-gradient(180deg, #0a0e1a 0%, #0f1629 100%);
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.legal-hero-bg .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(100px);
}

.legal-hero .shape-1 {
    width: 500px;
    height: 500px;
    background: #6366f1;
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.legal-hero-purple .shape-1 { background: #8b5cf6; }
.legal-hero-gold .shape-1 { background: #f59e0b; }
.legal-hero-green .shape-1 { background: #10b981; }

.legal-hero .shape-2 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    bottom: -100px;
    left: -100px;
    animation: floatSlow 18s ease-in-out infinite;
}

.legal-hero-purple .shape-2 { background: #d946ef; }
.legal-hero-gold .shape-2 { background: #fbbf24; }
.legal-hero-green .shape-2 { background: #34d399; }

.legal-hero-bg .grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.legal-hero .container {
    position: relative;
    z-index: 1;
}

.legal-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Legal Badges */
.legal-badge-blue {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    color: #60a5fa !important;
}

.legal-badge-purple {
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    color: #a78bfa !important;
}

.legal-badge-gold {
    background: rgba(245, 158, 11, 0.1) !important;
    border-color: rgba(245, 158, 11, 0.3) !important;
    color: #fbbf24 !important;
}

.legal-badge-green {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: #34d399 !important;
}

.legal-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(38px, 6vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

/* Color-specific gradient text */
.gradient-text-purple {
    background: linear-gradient(135deg, #a78bfa, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Legal Meta */
.legal-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.legal-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.legal-meta-item i {
    color: #818cf8;
    font-size: 12px;
}

/* ========== LEGAL CONTENT SECTION ========== */
.legal-content-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #0f1629 0%, #0a0e1a 100%);
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* ========== TABLE OF CONTENTS ========== */
.legal-toc {
    position: sticky;
    top: 100px;
}

.toc-card {
    background: var(--bg-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 18px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
}

.toc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.toc-purple::before { background: linear-gradient(90deg, #8b5cf6, #d946ef); }
.toc-gold::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.toc-green::before { background: linear-gradient(90deg, #10b981, #34d399); }

.toc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.toc-title i {
    color: #818cf8;
    font-size: 14px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toc-list a {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
    border-left: 2px solid transparent;
}

.toc-list a:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #ffffff;
    border-left-color: #6366f1;
    padding-left: 18px;
}

.toc-purple .toc-list a:hover { border-left-color: #8b5cf6; background: rgba(139, 92, 246, 0.08); }
.toc-gold .toc-list a:hover { border-left-color: #f59e0b; background: rgba(245, 158, 11, 0.08); }
.toc-green .toc-list a:hover { border-left-color: #10b981; background: rgba(16, 185, 129, 0.08); }

/* ========== LEGAL ARTICLE ========== */
.legal-article {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
}

/* Legal Intro */
.legal-intro {
    padding: 22px 26px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.05));
    border-left: 4px solid #6366f1;
    border-radius: 12px;
    margin-bottom: 40px;
}

.intro-gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(251, 191, 36, 0.05));
    border-left-color: #f59e0b;
}

.intro-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(52, 211, 153, 0.05));
    border-left-color: #10b981;
}

.legal-intro p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.75;
    margin: 0;
}

/* Quick Info Card */
.quick-info-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    margin-bottom: 40px;
}

.quick-info-card.gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border-color: rgba(245, 158, 11, 0.3);
}

.quick-info-card.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
    border-color: rgba(16, 185, 129, 0.3);
}

.quick-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3);
}

.quick-info-card.green .quick-info-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.quick-info-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.quick-info-content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Legal Section */
.legal-section {
    margin-bottom: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.legal-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.section-number {
    position: absolute;
    top: 28px;
    right: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 50px;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.08);
    line-height: 1;
    letter-spacing: -2px;
    pointer-events: none;
}

.legal-section.purple .section-number { color: rgba(139, 92, 246, 0.08); }
.legal-section.gold .section-number { color: rgba(245, 158, 11, 0.08); }
.legal-section.green .section-number { color: rgba(16, 185, 129, 0.08); }

.legal-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    scroll-margin-top: 100px;
    position: relative;
    padding-left: 16px;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    border-radius: 4px;
}

.legal-section.purple h2::before {
    background: linear-gradient(180deg, #8b5cf6, #d946ef);
}

.legal-section.gold h2::before {
    background: linear-gradient(180deg, #f59e0b, #fbbf24);
}

.legal-section.green h2::before {
    background: linear-gradient(180deg, #10b981, #34d399);
}

.legal-section p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-section strong {
    color: #ffffff;
    font-weight: 600;
}

/* Legal Lists */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-list li {
    position: relative;
    padding: 12px 16px 12px 38px;
    background: rgba(99, 102, 241, 0.04);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.25s ease;
}

.legal-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 14px;
    top: 12px;
    color: #818cf8;
    font-size: 14px;
}

.legal-list li:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateX(4px);
}

/* Success List (Green) */
.legal-list-success li {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.15);
}

.legal-list-success li::before {
    content: '\f00c';
    color: #34d399;
}

.legal-list-success li:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

/* Warning List (Red) */
.legal-list-warning li {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.15);
}

.legal-list-warning li::before {
    content: '\f00d';
    color: #f87171;
}

.legal-list-warning li:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.step-item {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(4px);
}

.step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.step-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.step-item p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Contact Grid */
.legal-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.legal-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.legal-contact-item:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}

.legal-contact-item > i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.legal-contact-item .fa-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.legal-contact-item div {
    min-width: 0;
    flex: 1;
}

.legal-contact-item span {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.legal-contact-item strong {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
    word-break: break-word;
}

/* Acceptance Footer */
.legal-acceptance {
    margin-top: 40px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.acceptance-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(217, 70, 239, 0.05));
    border-color: rgba(139, 92, 246, 0.3);
}

.acceptance-gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border-color: rgba(245, 158, 11, 0.3);
}

.acceptance-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
    border-color: rgba(16, 185, 129, 0.3);
}

.legal-acceptance > i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.acceptance-purple > i { background: linear-gradient(135deg, #8b5cf6, #d946ef); }
.acceptance-gold > i { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.acceptance-green > i { background: linear-gradient(135deg, #10b981, #34d399); }

.legal-acceptance p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* Related Links */
.legal-related {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-related h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-link:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

.related-link i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.related-link:hover i {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .legal-toc {
        position: static;
    }
    
    .toc-card {
        padding: 20px 18px;
    }
    
    .toc-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 0 50px;
    }
    
    .legal-hero-title {
        font-size: 36px;
    }
    
    .legal-hero-subtitle {
        font-size: 15px;
    }
    
    .legal-meta {
        gap: 10px;
    }
    
    .legal-meta-item {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .legal-content-section {
        padding: 40px 0 60px;
    }
    
    .legal-article {
        padding: 30px 22px;
        border-radius: 18px;
    }
    
    .legal-intro {
        padding: 18px 20px;
        margin-bottom: 28px;
    }
    
    .legal-intro p {
        font-size: 14px;
    }
    
    .quick-info-card {
        padding: 18px;
        gap: 14px;
        flex-direction: column;
    }
    
    .quick-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    
    .legal-section {
        margin-bottom: 28px;
        padding-top: 22px;
    }
    
    .legal-section h2 {
        font-size: 20px;
        padding-left: 14px;
    }
    
    .legal-section p {
        font-size: 14px;
    }
    
    .section-number {
        font-size: 40px;
    }
    
    .legal-list li {
        font-size: 13px;
        padding: 11px 14px 11px 34px;
    }
    
    .legal-list li::before {
        left: 12px;
        top: 11px;
        font-size: 12px;
    }
    
    .step-item {
        padding: 14px;
        gap: 12px;
    }
    
    .step-num {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 14px;
    }
    
    .step-item h4 {
        font-size: 14px;
    }
    
    .step-item p {
        font-size: 12px;
    }
    
    .legal-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-contact-item {
        padding: 14px 16px;
    }
    
    .legal-acceptance {
        padding: 18px 20px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .legal-acceptance p {
        font-size: 13px;
    }
    
    .related-links {
        grid-template-columns: 1fr;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    /* Disable hover effects */
    .legal-list li:hover,
    .step-item:hover,
    .legal-contact-item:hover,
    .related-link:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .legal-hero-title {
        font-size: 32px;
    }
    
    .legal-article {
        padding: 24px 18px;
    }
    
    .legal-section h2 {
        font-size: 18px;
    }
    
    .section-number {
        font-size: 32px;
    }
}

/* Smooth scroll for TOC links */
html {
    scroll-padding-top: 90px;
}

/* ============================================
   LEGAL PAGES - LIGHTWEIGHT PREMIUM
   ============================================ */

/* HERO */
.lp-hero {
    padding: 130px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15), transparent 60%),
                linear-gradient(180deg, #0a0e1a, #0f1629);
}

.lp-purple { background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.15), transparent 60%), linear-gradient(180deg, #0a0e1a, #0f1629); }
.lp-gold { background: radial-gradient(ellipse at top, rgba(245, 158, 11, 0.15), transparent 60%), linear-gradient(180deg, #0a0e1a, #0f1629); }
.lp-green { background: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.15), transparent 60%), linear-gradient(180deg, #0a0e1a, #0f1629); }

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    color: #a78bfa;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.lp-grad-blue { background: linear-gradient(135deg, #60a5fa, #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.lp-grad-purple { background: linear-gradient(135deg, #a78bfa, #d946ef); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.lp-grad-gold { background: linear-gradient(135deg, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.lp-grad-green { background: linear-gradient(135deg, #34d399, #10b981); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.lp-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.lp-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lp-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-secondary);
}

.lp-meta i {
    color: #818cf8;
}

/* CONTENT */
.lp-content {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #0f1629, #0a0e1a);
}

.lp-article {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.lp-intro {
    padding: 20px;
    background: rgba(99, 102, 241, 0.08);
    border-left: 4px solid #6366f1;
    border-radius: 10px;
    margin-bottom: 32px;
}

.lp-purple-intro { background: rgba(139, 92, 246, 0.08); border-left-color: #8b5cf6; }
.lp-gold-intro { background: rgba(245, 158, 11, 0.08); border-left-color: #f59e0b; }
.lp-green-intro { background: rgba(16, 185, 129, 0.08); border-left-color: #10b981; }

.lp-intro p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
}

.lp-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-section:last-of-type {
    border-bottom: none;
}

.lp-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    padding-left: 14px;
    border-left: 4px solid #6366f1;
}

.lp-section p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.lp-section strong {
    color: #fff;
    font-weight: 600;
}

/* LISTS */
.lp-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-list li {
    position: relative;
    padding: 10px 14px 10px 36px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.lp-list li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    top: 10px;
    color: #818cf8;
    font-weight: 700;
    font-size: 14px;
}

.lp-list-red li {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.15);
}

.lp-list-red li::before {
    content: '✕';
    color: #f87171;
}

.lp-list-green li {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.15);
}

.lp-list-green li::before {
    color: #34d399;
}

/* STEP LIST */
.lp-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.lp-step {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
}

.lp-step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 14px;
}

.lp-step h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.lp-step p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* QUICK INFO */
.lp-quick {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 14px;
    margin-bottom: 28px;
}

.lp-quick-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
    border-color: rgba(16, 185, 129, 0.3);
}

.lp-quick i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.lp-quick-green i {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.lp-quick h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.lp-quick p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* CONTACTS */
.lp-contacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
}

.lp-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

.lp-contact:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background: var(--bg-card-hover);
}

.lp-contact i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.lp-contact .fa-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* ACCEPT */
.lp-accept {
    margin-top: 32px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-accept i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.lp-accept p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
}

/* RELATED */
.lp-related {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-related h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.lp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.lp-related-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.lp-related-grid a:hover {
    border-color: rgba(99, 102, 241, 0.4);
    color: #fff;
    background: var(--bg-card-hover);
}

.lp-related-grid i {
    color: #818cf8;
}

/* Section colors */
.lp-section-purple h2 { border-left-color: #8b5cf6; }
.lp-section-gold h2 { border-left-color: #f59e0b; }
.lp-section-green h2 { border-left-color: #10b981; }

/* MOBILE */
@media (max-width: 768px) {
    .lp-hero {
        padding: 100px 0 40px;
    }
    
    .lp-title {
        font-size: 34px;
    }
    
    .lp-subtitle {
        font-size: 14px;
    }
    
    .lp-content {
        padding: 40px 0 60px;
    }
    
    .lp-article {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .lp-intro {
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .lp-intro p {
        font-size: 14px;
    }
    
    .lp-section {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    
    .lp-section h2 {
        font-size: 19px;
    }
    
    .lp-section p {
        font-size: 14px;
    }
    
    .lp-list li {
        font-size: 13px;
        padding: 10px 14px 10px 34px;
    }
    
    .lp-step {
        padding: 14px;
        gap: 12px;
    }
    
    .lp-quick {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .lp-accept {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }
    
    .lp-accept p {
        font-size: 12px;
    }
    
    .lp-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .lp-title {
        font-size: 28px;
    }
    
    .lp-article {
        padding: 20px 16px;
    }
    
    .lp-section h2 {
        font-size: 17px;
    }
}

/* ============================================
   LEGAL PAGES - PREMIUM BACKGROUND EFFECTS
   ============================================ */

/* Background animations */
.lp-hero {
    position: relative;
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.lp-hero .container {
    position: relative;
    z-index: 1;
}

/* Floating orbs */
.lp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: lpFloat 20s ease-in-out infinite;
}

.lp-orb-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
}

.lp-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

/* Different orb colors per page */
.lp-blue .lp-orb-1 { background: #3b82f6; }
.lp-blue .lp-orb-2 { background: #6366f1; }

.lp-purple .lp-orb-1 { background: #8b5cf6; }
.lp-purple .lp-orb-2 { background: #d946ef; }

.lp-gold .lp-orb-1 { background: #f59e0b; }
.lp-gold .lp-orb-2 { background: #fbbf24; }

.lp-green .lp-orb-1 { background: #10b981; }
.lp-green .lp-orb-2 { background: #34d399; }

@keyframes lpFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 30px) scale(1.1); }
    66% { transform: translate(30px, -20px) scale(0.95); }
}

/* Grid background */
.lp-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Color-specific badges */
.lp-badge-purple {
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    color: #a78bfa !important;
}

.lp-badge-gold {
    background: rgba(245, 158, 11, 0.1) !important;
    border-color: rgba(245, 158, 11, 0.3) !important;
    color: #fbbf24 !important;
}

.lp-badge-green {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: #34d399 !important;
}

/* Color-specific intros */
.lp-purple-intro { 
    background: rgba(139, 92, 246, 0.08) !important; 
    border-left-color: #8b5cf6 !important; 
}

.lp-gold-intro { 
    background: rgba(245, 158, 11, 0.08) !important; 
    border-left-color: #f59e0b !important; 
}

.lp-green-intro { 
    background: rgba(16, 185, 129, 0.08) !important; 
    border-left-color: #10b981 !important; 
}

/* Color-specific section headings */
.lp-section-purple h2 { border-left-color: #8b5cf6 !important; }
.lp-section-gold h2 { border-left-color: #f59e0b !important; }
.lp-section-green h2 { border-left-color: #10b981 !important; }

/* Color-specific accept boxes */
.lp-accept-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(217, 70, 239, 0.05)) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
}

.lp-accept-purple i {
    background: linear-gradient(135deg, #8b5cf6, #d946ef) !important;
}

.lp-accept-gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05)) !important;
    border-color: rgba(245, 158, 11, 0.3) !important;
}

.lp-accept-gold i {
    background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
}

.lp-accept-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05)) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.lp-accept-green i {
    background: linear-gradient(135deg, #10b981, #34d399) !important;
}

/* Mobile - lighter orbs */
@media (max-width: 768px) {
    .lp-orb {
        opacity: 0.25;
        filter: blur(80px);
    }
    
    .lp-orb-1 {
        width: 300px;
        height: 300px;
    }
    
    .lp-orb-2 {
        width: 250px;
        height: 250px;
    }
    
    .lp-grid-bg {
        background-size: 40px 40px;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .lp-orb {
        animation: none !important;
    }
}

/* ============================================
   AUTH PAGES - PREMIUM REGISTER & LOGIN
   ============================================ */

.auth-page {
    min-height: 100vh;
    background: #0a0e1a;
}

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 20px 40px;
    position: relative;
    overflow: hidden;
}

.auth-section-centered {
    align-items: center;
}

/* Background orbs */
.auth-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.auth-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.auth-orb-1 {
    width: 500px;
    height: 500px;
    background: #6366f1;
    top: -100px;
    right: -100px;
    animation: lpFloat 20s ease-in-out infinite;
}

.auth-orb-2 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    bottom: -100px;
    left: -100px;
    animation: lpFloat 18s ease-in-out infinite reverse;
}

.auth-orb-3 {
    width: 300px;
    height: 300px;
    background: #ec4899;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: lpFloat 15s ease-in-out infinite;
    opacity: 0.15;
}

/* Auth Container */
.auth-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
}

.auth-container-compact {
    max-width: 480px;
}

/* Auth Card */
.auth-card {
    background: rgba(20, 27, 45, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
}

/* Auth Header */
.auth-header {
    margin-bottom: 28px;
}

.auth-logo-wrapper {
    /* চারকোনা বক্সের সাইজ, ব্যাকগ্রাউন্ড ও বর্ডার বাদ দেওয়া হয়েছে */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px; /* নিচের লেখার সাথে গ্যাপ সামান্য বাড়ানো হলো */
}

.auth-logo {
    width: 80px;  /* লোগো বড় করার জন্য ৩৪px থেকে বাড়িয়ে ৬০px করা হয়েছে */
    height: 80px; /* লোগো বড় করার জন্য ৩৪px থেকে বাড়িয়ে ৬০px করা হয়েছে */
    object-fit: contain;
    
    /* লোগো অটোমেটিক ট্রান্সপারেন্ট করার জন্য */
    mix-blend-mode: screen; 
}


.auth-header h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.auth-header p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Google Button */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.25s ease;
}

.google-btn:hover {
    background: #f9fafb;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.google-icon {
    flex-shrink: 0;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.auth-divider span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-field label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.required {
    color: #ef4444;
    font-size: 14px;
}

.input-box {
    position: relative;
    display: flex;
    align-items: center;
}

.input-box > i {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 14px;
    z-index: 1;
    pointer-events: none;
}

.input-box input {
    width: 100%;
    padding: 14px 14px 14px 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.25s ease;
    outline: none;
}

.input-box input::placeholder {
    color: var(--text-muted);
    font-size: 13px;
}

.input-box input:focus {
    border-color: rgba(99, 102, 241, 0.6);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Eye button */
.eye-btn {
    position: absolute;
    right: 12px;
    padding: 6px;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 14px;
    transition: color 0.25s ease;
    z-index: 1;
}

.eye-btn:hover {
    color: var(--text-primary);
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.str-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.str-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease, background 0.3s ease;
}

.str-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    min-width: 50px;
    text-align: right;
}

/* Checkboxes */
.auth-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.auth-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.auth-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    accent-color: #6366f1;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.auth-check label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}

.auth-check label a {
    color: #818cf8;
    font-weight: 600;
    text-decoration: none;
}

.auth-check label a:hover {
    text-decoration: underline;
}

/* Login options row */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -4px;
}

.forgot-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #818cf8;
    font-weight: 600;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
    color: #a78bfa;
}

/* Submit Button */
.auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    margin-top: 8px;
}

.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.6);
}

.auth-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.auth-footer p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-footer a {
    color: #818cf8;
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Navbar auth text */
.nav-auth-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .auth-section {
        padding: 90px 16px 30px;
    }
    
    .auth-card {
        padding: 28px 22px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
    }
    
    .auth-header h1 {
        font-size: 24px;
    }
    
    .auth-header p {
        font-size: 13px;
    }
    
    .auth-logo-wrapper {
        /* মোবাইলেও চারকোনা বক্সটি দূর করার জন্য width ও height বাদ দেওয়া হলো */
        width: auto;
        height: auto;
        margin-bottom: 16px; /* মোবাইলের জন্য নিচের গ্যাপটি একটু কমানো হলো */
    }
    
    .auth-logo {
        width: 60px;  /* মোবাইলে ফর্মের লোগোটি সুন্দর দেখানোর জন্য সাইজ ৩০px থেকে বাড়িয়ে ৪৮px করা হলো */
        height: 60px;
    }

    
    .google-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .input-box input {
        padding: 12px 12px 12px 38px;
        font-size: 14px;
    }
    
    .auth-submit {
        padding: 14px;
        font-size: 14px;
    }
    
    .auth-orb {
        opacity: 0.15;
        filter: blur(100px);
    }
    
    .auth-orb-3 {
        display: none;
    }
    
    .nav-auth-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 80px 12px 20px;
    }
    
    .auth-card {
        padding: 24px 18px;
    }
    
    .auth-header h1 {
        font-size: 22px;
    }
    
    .auth-form {
        gap: 14px;
    }
    
    .input-box input {
        padding: 12px 12px 12px 36px;
        font-size: 13px;
    }
}

/* ============================================
   FORGOT PASSWORD PAGE
   ============================================ */

/* Progress Steps */
.fp-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 0 20px;
}

.fp-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.fp-step-dot.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #818cf8;
    color: #fff;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.fp-step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.4s ease;
    max-width: 80px;
}

.fp-step-line.active {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

/* Panels */
.fp-panel {
    display: none;
    text-align: center;
}

.fp-panel.active {
    display: block;
    animation: fadeSlideUp 0.4s ease;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Icon */
.fp-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.fp-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.fp-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.fp-icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.fp-icon-green {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.fp-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 36px;
}

/* Panel Text */
.fp-panel h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.fp-panel > p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.5;
}

.fp-email-display {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #818cf8 !important;
    font-weight: 600;
    margin-bottom: 24px !important;
    word-break: break-word;
}

.fp-panel .auth-form {
    text-align: left;
    margin-top: 20px;
}

/* Code Input Boxes */
.code-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 24px 0 10px;
}

.code-box {
    width: 48px;
    height: 56px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    outline: none;
    transition: all 0.25s ease;
    caret-color: #818cf8;
}

.code-box:focus {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.fp-error {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #f87171;
    text-align: center;
    min-height: 18px;
    margin-bottom: 8px;
}

/* Resend Section */
.fp-resend {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fp-resend p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.fp-resend-btn {
    background: none;
    border: none;
    color: #818cf8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s ease;
    padding: 6px 12px;
    border-radius: 8px;
}

.fp-resend-btn:hover:not(:disabled) {
    color: #a78bfa;
    background: rgba(99, 102, 241, 0.1);
}

.fp-resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fp-timer {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

/* Back Button */
.fp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    cursor: pointer;
    margin-top: 16px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.fp-back-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Green Submit */
.fp-submit-green {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

.fp-submit-green:hover {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.6) !important;
}

/* Success Redirect */
.fp-redirect-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #34d399;
}

.fp-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(52, 211, 153, 0.3);
    border-top-color: #34d399;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .fp-panel h1 {
        font-size: 22px;
    }
    
    .fp-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .fp-icon-large {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .code-inputs {
        gap: 8px;
    }
    
    .code-box {
        width: 44px;
        height: 52px;
        font-size: 22px;
        border-radius: 10px;
    }
    
    .fp-step-dot {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .fp-step-line {
        max-width: 60px;
    }
}

@media (max-width: 380px) {
    .code-inputs {
        gap: 6px;
    }
    
    .code-box {
        width: 40px;
        height: 48px;
        font-size: 20px;
    }
}

/* ============================================
   EXIT TOAST NOTIFICATION
   ============================================ */

.exit-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(20, 27, 45, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #fff;
    padding: 14px 24px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(99, 102, 241, 0.3);
    pointer-events: none;
}

.exit-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.exit-toast i {
    color: #f87171;
    font-size: 16px;
}

/* ============================================
   USER MENU (After Login)
   ============================================ */

.user-menu {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 6px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.user-menu-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.user-avatar-lg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.user-menu-btn > i {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}

.user-menu-dropdown.show ~ .user-menu-btn > i,
.user-menu:has(.user-menu-dropdown.show) .user-menu-btn > i {
    transform: rotate(180deg);
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: rgba(20, 27, 45, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.user-menu-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 12px;
    margin-bottom: 8px;
}

.user-menu-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.user-menu-email {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    word-break: break-all;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.user-menu-item i {
    width: 18px;
    color: #818cf8;
    font-size: 14px;
}

.user-menu-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #fff;
}

.user-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 8px 0;
}

.user-menu-logout {
    color: #f87171 !important;
}

.user-menu-logout i {
    color: #f87171 !important;
}

.user-menu-logout:hover {
    background: rgba(239, 68, 68, 0.1) !important;
}

/* Mobile */
@media (max-width: 768px) {
    .user-name {
        display: none;
    }
    
    .user-menu-btn {
        padding: 4px;
    }
    
    .user-menu-btn > i {
        display: none;
    }
    
    .user-menu-dropdown {
        width: 240px;
        right: -10px;
    }
    
    .exit-toast {
        bottom: 80px;
        font-size: 13px;
        padding: 12px 20px;
    }
}

/* ============================================
   PASSWORD MATCH INDICATOR
   ============================================ */

.password-match {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.password-match.match-success {
    color: #10b981;
}

.password-match.match-error {
    color: #ef4444;
}

.password-match i {
    font-size: 13px;
}

/* Optional label */
.optional {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 4px;
}

/* ============================================
   AUTH PAGE - CENTER LOGO ONLY
   ============================================ */

/* Center the logo wrapper */
.auth-header .auth-logo-wrapper {
    margin: 0 auto 24px !important;
}

/* Center align the entire auth header */
.auth-header {
    text-align: center !important;
}

/* Make logo wrapper bigger and more premium */
.auth-logo-wrapper {
    /* চারকোনা বক্সের ব্যাকগ্রাউন্ড ও বর্ডার সম্পূর্ণ রিমুভ করা হয়েছে */
    background: none !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    
    /* লোগোটি আলতো করে উপরে-নিচে ভাসার অ্যানিমেশন */
    animation: logoFloat 3s ease-in-out infinite !important; 
}

/* Animated glow effect behind logo (লোগোর পেছনে আলোর গ্লো) */
.auth-logo-wrapper::before {
    content: '' !important;
    position: absolute !important;
    /* আলোর পরিধি নির্ধারণ (লোগোর পেছনে গোল হয়ে ছড়াবে) */
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899, #6366f1) !important;
    background-size: 300% 300% !important;
    border-radius: 50% !important; /* চারকোনা বক্স বাদ দিয়ে গোল করা হয়েছে */
    z-index: 0 !important;
    animation: logoGlow 4s linear infinite !important;
    opacity: 0.5 !important; /* গ্লো-এর উজ্জ্বলতা সামান্য সফট করা হয়েছে */
    filter: blur(20px) !important; /* ব্লার বাড়িয়ে বক্স ভাব দূর করে খাঁটি আলোর আবহ তৈরি করা হয়েছে */
}

/* Logo image size */
.auth-logo {
    width: 65px !important; /* লোগো বড় করা হলো */
    height: 65px !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 1 !important;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.5));
    
    /* লোগো অটোমেটিক ট্রান্সপারেন্ট করার জন্য */
    mix-blend-mode: screen; 
}

/* Center title and text */
.auth-header h1,
.auth-header p {
    text-align: center !important;
}

/* Animations */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px); /* ফ্লোটিং ইফেক্ট আরেকটু স্মুথ করা হলো */
    }
}

@keyframes logoGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mobile & Tablet Responsive */
@media (max-width: 768px) {
    .auth-logo-wrapper::before {
        width: 60px !important;
        height: 60px !important;
    }
    .auth-logo {
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 480px) {
    .auth-logo-wrapper::before {
        width: 60px !important;
        height: 60px !important;
        filter: blur(15px) !important;
    }
    .auth-logo {
        width: 60px !important;
        height: 60px !important;
    }
}

/* ============================================
   REFER CODE FIELD - PREMIUM DESIGN
   ============================================ */

.refer-input-box {
    position: relative;
}

.refer-input-box input {
    padding-right: 100px !important;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.refer-input-box input::placeholder {
    letter-spacing: normal;
    font-weight: 400;
    text-transform: none;
}

.refer-verify-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 18px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 75px;
    text-align: center;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refer-verify-btn:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
}

.refer-verify-btn:disabled {
    cursor: not-allowed;
    opacity: 0.85;
}

/* Success state - green button */
.refer-input-box input.refer-success ~ .refer-verify-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* Error state - red border */
.refer-input-box input.refer-error {
    border-color: rgba(239, 68, 68, 0.5) !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

/* Success state - green border */
.refer-input-box input.refer-success {
    border-color: rgba(16, 185, 129, 0.5) !important;
    background: rgba(16, 185, 129, 0.05) !important;
    color: #34d399 !important;
}

/* Refer Status Message */
.refer-status {
    margin-top: 8px;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    animation: slideDownRefer 0.3s ease;
}

.refer-status.refer-success,
.refer-status.refer-error {
    display: flex;
}

.refer-status.refer-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.refer-status.refer-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.refer-status i {
    flex-shrink: 0;
    font-size: 14px;
}

.refer-status strong {
    color: inherit;
    font-weight: 700;
}

@keyframes slideDownRefer {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Refer Hint Box */
.refer-hint {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #fbbf24;
    font-weight: 500;
}

.refer-hint i {
    color: #fbbf24;
    font-size: 13px;
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 480px) {
    .refer-input-box input {
        padding-right: 85px !important;
        font-size: 13px;
    }
    
    .refer-verify-btn {
        padding: 7px 14px;
        font-size: 11px;
        min-width: 65px;
        height: 32px;
    }
    
    .refer-status,
    .refer-hint {
        font-size: 11px;
        padding: 9px 12px;
    }
}

/* Optional label style (in case it's not already added) */
.optional {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 4px;
}

/* Password match indicator (in case not added) */
.password-match {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.password-match.match-success {
    color: #10b981;
}

.password-match.match-error {
    color: #ef4444;
}

.password-match i {
    font-size: 13px;
}

.password-match:empty {
    display: none;
}

/* ============================================
   AI CHAT TRIGGER BUTTON - ULTRA PREMIUM
   ============================================ */

.ai-chat-trigger {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
}

/* Main Button */
.ai-chat-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 22px 8px 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    background-size: 200% 200%;
    border-radius: 100px;
    text-decoration: none;
    color: #fff;
    box-shadow: 
        0 10px 40px rgba(99, 102, 241, 0.5),
        0 0 60px rgba(139, 92, 246, 0.3),
        0 0 100px rgba(236, 72, 153, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    animation: chatGradientShift 6s ease infinite, chatFloat 4s ease-in-out infinite;
}

@keyframes chatGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

/* Outer Glow Ring */
.ai-chat-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #6366f1, #ec4899, #8b5cf6, #6366f1);
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.7;
    animation: chatGradientShift 4s ease infinite, chatGlowPulse 3s ease-in-out infinite;
}

@keyframes chatGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Pulsing Outer Ring */
.ai-chat-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: chatRipple 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes chatRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Shimmer effect on hover */
.ai-chat-btn .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.ai-chat-btn:hover .shimmer {
    left: 150%;
}

.ai-chat-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(99, 102, 241, 0.7),
        0 0 80px rgba(139, 92, 246, 0.5),
        0 0 120px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Icon Container */
.ai-chat-btn-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25),
        rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    position: relative;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: iconBob 2s ease-in-out infinite;
}

@keyframes iconBob {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

.ai-chat-btn-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Notification dot */
.ai-chat-btn-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: notifPulse 2s ease-out infinite;
}

@keyframes notifPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Text Section */
.ai-chat-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.ai-chat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ai-chat-label::before {
    content: '✨';
    font-size: 13px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.ai-chat-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.2px;
    margin-top: 2px;
}

/* Arrow */
.ai-chat-arrow {
    font-size: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.ai-chat-btn:hover .ai-chat-arrow {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1) rotate(-45deg);
}

/* ============================================
   MOBILE - PREMIUM FLOATING BUTTON
   ============================================ */
@media (max-width: 480px) {
    .ai-chat-trigger {
        bottom: 20px;
        right: 20px;
    }
    
    .ai-chat-btn {
        padding: 0;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
    }
    
    .ai-chat-btn-text,
    .ai-chat-arrow {
        display: none;
    }
    
    .ai-chat-btn-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .ai-chat-btn-icon::after {
        top: 0;
        right: 0;
        width: 14px;
        height: 14px;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .ai-chat-trigger {
        bottom: 24px;
        right: 24px;
    }
    
    .ai-chat-btn {
        padding: 6px 18px 6px 6px;
    }
    
    .ai-chat-btn-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .ai-chat-label {
        font-size: 14px;
    }
    
    .ai-chat-sub {
        font-size: 10px;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .ai-chat-btn,
    .ai-chat-btn::before,
    .ai-chat-btn::after,
    .ai-chat-btn-icon,
    .ai-chat-btn-icon::after,
    .ai-chat-arrow,
    .ai-chat-label::before {
        animation: none !important;
    }
}

/* ============================================
   REGISTER - STEP SYSTEM & GOOGLE USER CARD
   ============================================ */

.reg-step {
    display: none;
}

.reg-step.active {
    display: block;
    animation: fadeSlideUp 0.4s ease;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Google User Card */
.google-user-card {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(52, 211, 153, 0.06));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 18px;
}

.google-user-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(59, 130, 246, 0.4);
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.google-avatar-initial {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 34px;
    font-weight: 800;
    margin: 0 auto 14px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.google-user-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.google-user-email {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    word-break: break-word;
}

.google-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    color: #34d399;
    font-size: 11px;
    font-weight: 700;
}

/* Green Submit Button (Step 2) */
.auth-submit-green {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

.auth-submit-green:hover {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.6) !important;
}

/* Back Button */
.back-to-step1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding: 10px 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.back-to-step1:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Refer Code Field */
.refer-box {
    position: relative;
}

.refer-box input {
    padding-right: 100px !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.refer-box input::placeholder {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

.refer-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 18px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    min-width: 75px;
    text-align: center;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.refer-btn:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
}

.refer-btn:disabled {
    opacity: 0.85;
    cursor: not-allowed;
}

.refer-box input.refer-success ~ .refer-btn {
    background: linear-gradient(135deg, #10b981, #059669);
}

.refer-box input.refer-success {
    border-color: rgba(16, 185, 129, 0.5) !important;
    background: rgba(16, 185, 129, 0.05) !important;
    color: #34d399 !important;
}

.refer-box input.refer-error {
    border-color: rgba(239, 68, 68, 0.5) !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

.refer-status {
    margin-top: 8px;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    animation: fadeSlideUp 0.3s ease;
}

.refer-status.refer-success,
.refer-status.refer-error {
    display: flex;
}

.refer-status.refer-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.refer-status.refer-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.refer-status strong {
    font-weight: 700;
}

@media (max-width: 480px) {
    .refer-box input {
        padding-right: 85px !important;
    }
    
    .refer-btn {
        padding: 7px 14px;
        font-size: 11px;
        min-width: 65px;
    }
    
    .google-user-photo,
    .google-avatar-initial {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .google-user-card h2 {
        font-size: 18px;
    }
}

/* ============================================
   PRICING PACKAGE - ALL FONTS BOLD & PREMIUM
   ============================================ */

/* Package Badge */
.package-badge {
    font-weight: 800 !important;
    letter-spacing: 1px !important;
}

/* Package Name (Title) */
.package-name {
    font-weight: 900 !important;
    letter-spacing: -0.8px !important;
}

/* Package Description */
.package-desc {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Price Currency Symbol (৳) */
.package-price .currency {
    font-weight: 900 !important;
}

/* Price Amount (699, 1999, etc.) */
.package-price .amount {
    font-weight: 900 !important;
    letter-spacing: -2.5px !important;
}

/* Price Period (/ 4 months) */
.package-price .period {
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Features List Items */
.package-features li {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Check Icon - Bigger and Bolder */
.package-features .check {
    stroke-width: 3 !important;
}

/* Get Started Button */
.btn-package {
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
}

/* Mobile - Keep bold */
@media (max-width: 768px) {
    .package-name {
        font-weight: 900 !important;
    }
    
    .package-desc {
        font-weight: 600 !important;
    }
    
    .package-features li {
        font-weight: 600 !important;
    }
    
    .package-price .amount {
        font-weight: 900 !important;
    }
}

/* ============================================
   VIDEO LINK (Direct YouTube)
   ============================================ */

/* Make video thumbnail clickable */
.video-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.video-link:hover {
    text-decoration: none;
}

/* Play button as div (not button) */
.play-btn-link {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.play-btn-sm-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-link:hover .play-btn-link {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: white;
}

.video-link:hover .play-btn-sm-link {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.play-btn-link i {
    margin-left: 4px;
}

.play-btn-sm-link i {
    margin-left: 3px;
}

/* External link indicator (optional - shows YouTube icon) */
.video-link::after {
    content: '\f167';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 12px;
    right: 12px;
    color: #FF0000;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.9);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.video-link:hover::after {
    transform: scale(1.1);
    opacity: 1;
}

.video-link {
    position: relative;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .testimonial-slider {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .video-thumb {
        min-height: 220px;
    }
    
    .play-btn-sm,
    .play-btn-sm-link {
        width: 64px !important;
        height: 64px !important;
        font-size: 22px !important;
    }
    
    .play-btn-sm i,
    .play-btn-sm-link i {
        font-size: 22px;
    }
    
    /* Arrows on mobile */
    .slider-btn {
        width: 42px !important;
        height: 42px !important;
        font-size: 14px !important;
        top: 32% !important;
    }
    
    .slider-prev {
        left: 24px !important;
    }
    
    .slider-next {
        right: 24px !important;
    }
    
    .video-title {
        padding: 16px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .video-thumb {
        min-height: 200px;
    }
    
    .play-btn-sm,
    .play-btn-sm-link {
        width: 56px !important;
        height: 56px !important;
        font-size: 20px !important;
    }
    
    .play-btn-sm i,
    .play-btn-sm-link i {
        font-size: 20px;
    }
    
    .slider-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 13px !important;
    }
    
    .slider-prev {
        left: 22px !important;
    }
    
    .slider-next {
        right: 22px !important;
    }
}

/* ============================================
   TESTIMONIAL SLIDER - FORCE OVERLAY ARROWS
   ============================================ */

/* Container - Must be relative */
.testimonial-slider {
    position: relative !important;
    display: block !important;
    max-width: 700px !important;
    margin: 40px auto 24px !important;
    padding: 0 !important;
    gap: 0 !important;
}

/* Wrapper - Full width */
.testimonial-slider .slider-wrapper {
    width: 100% !important;
    flex: none !important;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

/* Arrows - Absolute Position on Video */
.testimonial-slider .slider-btn {
    position: absolute !important;
    top: 35% !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.testimonial-slider .slider-prev {
    left: 16px !important;
    right: auto !important;
}

.testimonial-slider .slider-next {
    right: 16px !important;
    left: auto !important;
}

.testimonial-slider .slider-btn:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    border-color: #fff !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6) !important;
}

/* Video Card - Bigger */
.testimonial-slider .video-card {
    max-width: 100% !important;
    margin: 0 !important;
    width: 100% !important;
}

.testimonial-slider .video-thumb {
    aspect-ratio: 16/9 !important;
    min-height: 280px !important;
    position: relative !important;
}

.testimonial-slider .video-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Bigger Play Button */
.testimonial-slider .play-btn-sm,
.testimonial-slider .play-btn-sm-link {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--primary) !important;
    font-size: 28px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s ease !important;
}

.testimonial-slider .video-card:hover .play-btn-sm,
.testimonial-slider .video-card:hover .play-btn-sm-link {
    transform: translate(-50%, -50%) scale(1.15) !important;
    background: #fff !important;
}

/* Video Title */
.testimonial-slider .video-title {
    padding: 20px 24px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonial-slider {
        max-width: 100% !important;
        padding: 0 16px !important;
    }
    
    .testimonial-slider .video-thumb {
        min-height: 220px !important;
    }
    
    .testimonial-slider .play-btn-sm,
    .testimonial-slider .play-btn-sm-link {
        width: 64px !important;
        height: 64px !important;
        font-size: 22px !important;
    }
    
    .testimonial-slider .slider-btn {
        width: 42px !important;
        height: 42px !important;
        font-size: 14px !important;
        top: 32% !important;
    }
    
    .testimonial-slider .slider-prev {
        left: 26px !important;
    }
    
    .testimonial-slider .slider-next {
        right: 26px !important;
    }
    
    .testimonial-slider .video-title {
        padding: 16px 18px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .testimonial-slider .video-thumb {
        min-height: 200px !important;
    }
    
    .testimonial-slider .play-btn-sm,
    .testimonial-slider .play-btn-sm-link {
        width: 56px !important;
        height: 56px !important;
        font-size: 20px !important;
    }
    
    .testimonial-slider .slider-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 13px !important;
    }
}

.custom-back-btn {
    background-color: transparent !important; /* সাদা ব্যাকগ্রাউন্ড সরাতে */
    color: #00e6ff !important; /* সায়ান কালারের টেক্সট ও আইকন */
    border: 1px solid #00e6ff !important;
    padding: 6px 12px !important;
    border-radius: 8px !important; /* হালকা গোল বর্ডার */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important; /* আইকন এবং লেখার মাঝখানে ফাঁকা জায়গা */
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 0 8px rgba(0, 230, 255, 0.4), inset 0 0 5px rgba(0, 230, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

.custom-back-btn:hover {
    background-color: #00e6ff !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(0, 230, 255, 0.8), 0 0 25px rgba(0, 230, 255, 0.6) !important;
}

/* ============================================
   DISABLE LINK PREVIEW ON LONG PRESS (Mobile)
   ============================================ */

/* All links - disable callout/preview */
a {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Images inside links - prevent save image popup */
a img,
img {
    -webkit-touch-callout: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    pointer-events: auto;
}

/* Icons (i tags inside buttons/links) */
i,
button i,
a i {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
}

/* Buttons */
button,
.btn,
.nav-link,
.social-icon,
.mobile-nav-link,
.contact-item,
.contact-card,
.channel-card,
.footer-links-col a,
.quick-btn,
.contact-social-link,
.lp-contact,
.lp-related-grid a,
.db-nav-item,
.db-quick-item,
.feature-card,
.step-card,
.pricing-card,
.video-link,
.video-card,
.blog-card,
.about-feature-block,
.contact-card,
.how-step-card {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* But allow text selection in articles, paragraphs, headings */
p, h1, h2, h3, h4, h5, h6,
.lp-article,
.about-paragraph,
.blog-card-excerpt,
.about-block-title,
.section-title,
.hero-description,
.hero-tagline,
input,
textarea,
.video-title {
    -webkit-touch-callout: default !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Prevent context menu on long press for images */
img {
    pointer-events: auto;
    -webkit-touch-callout: none !important;
}

/* ============================================
   AI CHAT BUTTON - SHINE EFFECT REMOVAL
   ============================================ */

/* ১. শুধু চ্যাট বাটনের ভেতরের সেই হেলানো সাদা দাগটি চিরতরে মুছে ফেলা হলো */
.ai-chat-btn .shimmer,
.ai-chat-btn::before,
.ai-chat-btn::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ২. চ্যাট বাটন, আইকন এবং লেখা যেন সুন্দরভাবে স্ক্রিনে দেখা যায় */
.ai-chat-trigger,
.ai-chat-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important; /* ওভারফ্লো ভিজিবল থাকায় বাটন বা তীর চিহ্ন হাইড হবে না */
}

/* ৩. ডান পাশের তীর চিহ্ন বা সেট বাটনটিকে আগের জায়গায় ফিরিয়ে আনা */
.ai-chat-arrow {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ============================================
   AI CHAT BUTTON - TRUE RIPPLE RESTORE
   ============================================ */

/* ১. সাদা হেলানো দাগটি (Shimmer) চিরতরে বন্ধ */
.ai-chat-btn .shimmer {
    display: none !important;
}

/* ২. ঢেউয়ের মিলিয়ে যাওয়ার ক্ষমতা (Animation Opacity) ফিরিয়ে আনা */
.ai-chat-btn::before,
.ai-chat-btn::after {
    display: block !important;
    content: '' !important;
    visibility: visible !important;
    /* এখানে !important ছাড়া রাখা হলো যেন অ্যানিমেশনের ভেতরের ওরিজিনাল ওয়ান-অফ অপাসিটি কাজ করতে পারে */
    opacity: unset !important; 
}

/* ৩. বাটন ও তীর চিহ্ন যেন নিখুঁত ও দৃশ্যমান থাকে */
.ai-chat-trigger,
.ai-chat-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
}

.ai-chat-arrow {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ============================================
   SCROLLED NAVBAR - PREMIUM GLASSMORPHISM FIX
   ============================================ */
.navbar.scrolled {
    /* ব্যাকগ্রাউন্ডের অপাসিটি ০.৮৫ থেকে কমিয়ে ০.৪ করা হলো (বেশি স্বচ্ছ বা ট্রান্সপারেন্ট) */
    background: rgba(10, 14, 26, 0.4) !important;
    
    /* কাঁচের মতো ব্লার ইফেক্ট ২০px করা হলো যাতে পেছনের কন্টেন্ট সুন্দর দেখায় */
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    
    /* নিচের বর্ডারটি আরও হালকা করা হলো যাতে কাঁচের এজ (Edge) সুন্দর লাগে */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    
    /* একটি হালকা শ্যাডো দেওয়া হলো যেন নিচের কন্টেন্ট থেকে নেভবারটি আলাদা বোঝা যায় */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
}

/* ============================================
   REGISTER PAGE - PREMIUM STYLES
   ============================================ */

/* ===== Loading Overlay ===== */
.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(99, 102, 241, 0.15);
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spinRing 1s linear infinite;
}

@keyframes spinRing {
    to { transform: rotate(360deg); }
}

.spinner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    object-fit: contain;
    animation: pulseLogo 1.5s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.9); }
}

.loading-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

/* ===== Custom Google Button ===== */
.google-signup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background: #ffffff;
    color: #1f2937;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 0;
}

.google-signup-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.google-signup-btn:active {
    transform: translateY(0);
}

.google-logo {
    flex-shrink: 0;
}

/* ===== Email Verification Page ===== */
.verify-page {
    text-align: center;
    padding: 10px 0;
}

.verify-icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
}

.verify-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.verify-icon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}

.verify-page h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.verify-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.verify-email {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #818cf8;
    margin-bottom: 28px;
    word-break: break-word;
}

/* Verification Steps */
.verify-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin-bottom: 28px;
    padding: 0 10px;
}

.verify-step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #cbd5e1;
    transition: all 0.25s ease;
}

.verify-step-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.verify-step-num {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.verify-step-item strong {
    color: #a78bfa;
}

/* Waiting Spinner */
.verify-waiting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #34d399;
    font-weight: 600;
}

.verify-waiting-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(52, 211, 153, 0.3);
    border-top-color: #34d399;
    border-radius: 50%;
    animation: spinRing 1s linear infinite;
}

/* Resend Button */
.btn-resend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 10px;
    color: #a5b4fc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 16px;
}

.btn-resend:hover:not(:disabled) {
    background: rgba(99, 102, 241, 0.2);
    color: #fff;
}

.btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.resend-timer {
    font-size: 12px;
    color: #64748b;
    font-weight: 400;
}

.verify-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    padding: 14px 16px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    font-size: 13px;
    color: #fbbf24;
    line-height: 1.5;
    margin-bottom: 20px;
}

.verify-note i {
    flex-shrink: 0;
    margin-top: 2px;
}

.verify-actions {
    margin-bottom: 16px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* ===== Google User Card ===== */
.google-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 34px;
    font-weight: 800;
    margin: 0 auto 14px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* ===== Security Step ===== */
.security-page {
    text-align: center;
    padding: 10px 0;
}

.security-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.security-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    animation: securityFloat 3s ease-in-out infinite;
}

@keyframes securityFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-6px) rotate(3deg); }
}

.security-page h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.security-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Security Options */
.security-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    margin-bottom: 12px;
    text-align: left;
    transition: all 0.25s ease;
}

.security-option:hover {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.2);
}

.security-option-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.passkey-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.3);
}

.auth-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}

.security-option-info {
    flex: 1;
    min-width: 0;
}

.security-option-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.security-option-info p {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.security-option-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #a5b4fc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.security-option-btn:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-color: transparent;
}

.security-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    text-align: left;
    margin: 20px 0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
}

.security-info i {
    color: #818cf8;
    flex-shrink: 0;
    margin-top: 2px;
}

.security-info strong {
    color: #c7d2fe;
}

.security-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.btn-continue-dashboard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-continue-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.6);
}

.btn-skip {
    background: none;
    border: none;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-skip:hover {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.03);
}

/* ===== Success Page ===== */
.success-page {
    text-align: center;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.success-confetti {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    top: -20px;
    border-radius: 2px;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(350px) rotate(720deg);
        opacity: 0;
    }
}

.success-icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 30px auto 24px;
}

.success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
    animation: successBounce 0.6s ease;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.3);
    animation: ringPulse 2s ease-in-out infinite;
}

.success-page h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.success-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 8px;
}

.success-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Device Info Card */
.success-device-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    text-align: left;
    margin-bottom: 24px;
}

.device-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(99, 102, 241, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #c7d2fe;
}

.device-info-header i {
    color: #818cf8;
    font-size: 16px;
}

.device-info-rows {
    padding: 10px 18px;
}

.device-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.device-row:last-child {
    border-bottom: none;
}

.device-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.device-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #e2e8f0;
    font-weight: 600;
    max-width: 200px;
    text-align: right;
    word-break: break-word;
}

/* Success Redirect */
.success-redirect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    font-size: 14px;
    color: #34d399;
    font-weight: 600;
}

.redirect-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(52, 211, 153, 0.3);
    border-top-color: #34d399;
    border-radius: 50%;
    animation: spinRing 1s linear infinite;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 480px) {
    .loading-spinner {
        width: 70px;
        height: 70px;
    }
    
    .spinner-logo {
        width: 30px;
        height: 30px;
    }
    
    .loading-text {
        font-size: 14px;
    }
    
    .google-signup-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .verify-icon-wrap,
    .verify-icon {
        width: 78px;
        height: 78px;
    }
    
    .verify-icon {
        font-size: 30px;
    }
    
    .verify-page h1,
    .security-page h1,
    .success-page h1 {
        font-size: 22px;
    }
    
    .verify-step-item {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .security-option {
        padding: 14px 12px;
        gap: 12px;
    }
    
    .security-option-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
    }
    
    .security-option-info h3 {
        font-size: 14px;
    }
    
    .security-option-info p {
        font-size: 11px;
    }
    
    .success-icon-wrap,
    .success-icon {
        width: 78px;
        height: 78px;
    }
    
    .success-icon {
        font-size: 34px;
    }
    
    .success-name {
        font-size: 18px;
    }
    
    .device-value {
        max-width: 160px;
    }
    
    .security-option-btn {
        padding: 7px 12px;
        font-size: 11px;
    }
    
    .google-avatar-placeholder {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

/* ============================================
   LOGIN PAGE - PREMIUM STYLES (NEW)
   ============================================ */

/* ===== Login Step System ===== */
.login-step {
    display: none;
}

.login-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* ===== Passkey Login Button ===== */
.passkey-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.08));
    color: #a5b4fc;
    border: 1.5px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 10px;
}

.passkey-login-btn i {
    font-size: 20px;
    color: #818cf8;
}

.passkey-login-btn:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.12));
    border-color: rgba(99, 102, 241, 0.5);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
}

.passkey-login-btn:hover i {
    color: #c7d2fe;
}

/* ===== Verify Login Page ===== */
.verify-login-page {
    text-align: center;
    padding: 10px 0;
}

.verify-login-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.verify-login-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    animation: verifyIconPulse 2s ease-in-out infinite;
}

@keyframes verifyIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.verify-login-page h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.verify-login-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Verify Methods */
.verify-method {
    margin-bottom: 20px;
}

/* Passkey Verify Box */
.passkey-verify-box {
    padding: 30px 20px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    text-align: center;
}

.passkey-anim {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    animation: passkeyPulse 1.5s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

@keyframes passkeyPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
    }
}

.passkey-verify-box p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 20px;
}

/* Authenticator Text */
.verify-auth-text {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Email Verify Box (Login) */
.email-verify-box {
    padding: 30px 20px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    text-align: center;
}

.email-verify-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.email-verify-box p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.verify-login-email {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #818cf8 !important;
    margin-bottom: 20px !important;
    word-break: break-word;
}

/* ===== Different Method ===== */
.different-method {
    margin: 20px 0;
}

.diff-method-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.diff-method-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: #c7d2fe;
}

.diff-method-btn i {
    color: #818cf8;
    font-size: 14px;
}

/* ===== Method Selector ===== */
.method-selector {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.method-selector h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 14px;
    text-align: center;
}

.method-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.method-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.method-option i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.25s ease;
}

.method-option:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: #fff;
    transform: translateX(4px);
}

.method-option:hover i {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

/* ===== Passkey Account Selector ===== */
.passkey-select-page {
    text-align: center;
    padding: 10px 0;
}

.passkey-select-icon {
    background: linear-gradient(135deg, #8b5cf6, #ec4899) !important;
}

.passkey-select-page h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.passkey-accounts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
}

.passkey-account-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    width: 100%;
}

.passkey-account-item:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(4px);
}

.pk-account-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.pk-account-info {
    flex: 1;
    min-width: 0;
}

.pk-account-info h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
}

.pk-account-info p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
    word-break: break-word;
}

.pk-account-icon {
    color: #818cf8;
    font-size: 20px;
    flex-shrink: 0;
    animation: passkeyPulse 1.5s ease-in-out infinite;
}

/* ===== Login Success Page ===== */
.login-success-page {
    text-align: center;
    padding: 20px 0;
}

.login-success-page h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.login-success-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 18px;
}

.login-device-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 100px;
    color: #c7d2fe;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.login-device-badge i {
    color: #818cf8;
    font-size: 14px;
}

/* ===== Auth Code Boxes (Authenticator) ===== */
.auth-code-box {
    width: 46px;
    height: 54px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    outline: none;
    transition: all 0.25s ease;
    caret-color: #818cf8;
}

.auth-code-box:focus {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 480px) {
    .passkey-login-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .passkey-login-btn i {
        font-size: 18px;
    }
    
    .verify-login-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .verify-login-page h1,
    .passkey-select-page h1,
    .login-success-page h1 {
        font-size: 22px;
    }
    
    .passkey-anim {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .email-verify-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .method-option {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .method-option i {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }
    
    .passkey-account-item {
        padding: 14px 12px;
        gap: 12px;
    }
    
    .pk-account-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .pk-account-info h4 {
        font-size: 13px;
    }
    
    .auth-code-box {
        width: 42px;
        height: 50px;
        font-size: 20px;
    }
    
    .login-success-name {
        font-size: 16px;
    }
    
    .login-device-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .diff-method-btn {
        font-size: 12px;
        padding: 9px 14px;
    }
    
    .passkey-verify-box,
    .email-verify-box {
        padding: 22px 16px;
    }
}

@media (max-width: 360px) {
    .auth-code-box {
        width: 38px;
        height: 46px;
        font-size: 18px;
        border-radius: 10px;
    }
}

/* ============================================
   FORGOT PASSWORD - NEW PREMIUM STYLES
   ============================================ */

/* Step System */
.fp-step {
    display: none;
}

.fp-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Progress Bar */
.fp-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    margin-bottom: 32px;
    overflow: hidden;
}

.fp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 100px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Step Header */
.fp-step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.fp-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.fp-icon-blue {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.fp-icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.fp-icon-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.fp-step-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #a78bfa;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fp-step h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: -0.5px;
}

.fp-step-desc {
    font-size: 14px;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Email Highlight */
.fp-email-highlight {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #818cf8;
    text-align: center;
    margin-bottom: 28px;
    word-break: break-word;
}

/* Verify Steps */
.fp-verify-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.fp-verify-step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 12px;
    font-size: 14px;
    color: #cbd5e1;
}

.fp-verify-step-item strong {
    color: #a78bfa;
}

.fp-verify-step-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
}

/* Waiting Box */
.fp-waiting-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #34d399;
    font-weight: 600;
}

.fp-waiting-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(52, 211, 153, 0.3);
    border-top-color: #34d399;
    border-radius: 50%;
    animation: spinRing 1s linear infinite;
}

/* Resend Box */
.fp-resend-box {
    text-align: center;
    margin-bottom: 16px;
}

.fp-resend-box p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.fp-resend-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 10px;
    color: #a5b4fc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.fp-resend-link-btn:hover:not(:disabled) {
    background: rgba(99, 102, 241, 0.2);
    color: #fff;
}

.fp-resend-link-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fp-resend-timer {
    font-size: 12px;
    color: #64748b;
    font-weight: 400;
}

/* Note */
.fp-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    font-size: 13px;
    color: #fbbf24;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

.fp-note i {
    flex-shrink: 0;
    margin-top: 2px;
}

.fp-help-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

.fp-help-text i {
    color: #818cf8;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Password Rules */
.fp-password-rules {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.fp-rule {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    transition: all 0.25s ease;
}

.fp-rule i {
    font-size: 10px;
    transition: all 0.25s ease;
}

.fp-rule.rule-pass {
    color: #34d399;
}

.fp-rule.rule-pass i {
    color: #10b981;
}

.fp-rule.rule-fail {
    color: #f87171;
}

.fp-rule.rule-fail i {
    color: #ef4444;
}

/* Success Page */
.fp-success-page {
    text-align: center;
    padding: 10px 0;
}

.fp-success-icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
}

.fp-success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
    animation: successBounce 0.6s ease;
}

.fp-success-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.3);
    animation: ringPulse 2s ease-in-out infinite;
}

.fp-success-page h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.fp-success-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Security Alert */
.fp-security-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 14px;
    text-align: left;
    margin-bottom: 20px;
}

.fp-security-alert > i {
    color: #34d399;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.fp-security-alert strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #34d399;
    margin-bottom: 4px;
}

.fp-security-alert p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

/* Device Info */
.fp-device-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.fp-device-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fp-device-row:last-child {
    border-bottom: none;
}

.fp-device-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.fp-device-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #e2e8f0;
    font-weight: 600;
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
    .fp-step-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .fp-step h1 {
        font-size: 22px;
    }
    
    .fp-verify-step-item {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .fp-verify-step-num {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 11px;
    }
    
    .fp-success-icon-wrap,
    .fp-success-icon {
        width: 78px;
        height: 78px;
    }
    
    .fp-success-icon {
        font-size: 34px;
    }
    
    .fp-password-rules {
        padding: 14px;
    }
    
    .fp-rule {
        font-size: 12px;
    }
    
    .fp-security-alert {
        padding: 14px;
        gap: 12px;
    }
}

/* ======================================== */
/* TOP ANIMATED PROGRESS BAR                */
/* ======================================== */
#app-progress-bar {
    position: fixed;
    top: 0; 
    left: 0; 
    height: 4px; 
    width: 0%;
    background: linear-gradient(to right, #6366f1, #ec4899, #f59e0b, #10b981);
    background-size: 200% 100%;
    animation: gradientMove 2s linear infinite;
    z-index: 99999;
    transition: width 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 1px 10px rgba(236, 72, 153, 0.6);
    opacity: 0; 
    pointer-events: none;
}

@keyframes gradientMove { 
    0% { background-position: 100% 0; } 
    100% { background-position: -100% 0; } 
}
