/* ==========================================================================
   SMM Panel — Master Stylesheet
   Light blonde theme · Red buttons · Black sidebar
   ========================================================================== */

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

/* ---- CSS Custom Properties --------------------------------------------- */
:root {
    --bg-primary:     #ffffff;
    --bg-secondary:   #f5f7fa;
    --bg-card:        #ffffff;
    --bg-glass:       rgba(255,255,255,0.7);
    --border-glass:   rgba(0,0,0,0.08);
    --text-primary:   #1a1a2e;
    --text-secondary: #555566;
    --text-muted:     #999aab;
    --accent-red:     #e63946;
    --accent-blue:    #4f8cff;
    --accent-purple:  #a855f7;
    --accent-cyan:    #06b6d4;
    --accent-green:   #22c55e;
    --accent-orange:  #f97316;
    --btn-red:        #e63946;
    --btn-red-hover:  #c5303c;
    --gradient-primary: linear-gradient(135deg, #e63946, #ff6b6b);
    --gradient-hero:    linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    --radius:         16px;
    --radius-sm:      10px;
    --radius-xs:      6px;
    --shadow:         0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover:   0 8px 30px rgba(0,0,0,0.1);
    --transition:     0.3s cubic-bezier(.4,0,.2,1);
    --font:           'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --sidebar-w:      260px;
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
    color: inherit;
}
button { cursor: pointer; }

/* ---- Utility ----------------------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

/* ---- Buttons (RED) ----------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--btn-red);
    color: #fff;
    box-shadow: 0 4px 16px rgba(230,57,70,0.3);
}
.btn-primary:hover {
    background: var(--btn-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230,57,70,0.4);
}
.btn-outline {
    border: 2px solid var(--border-glass);
    color: var(--text-primary);
    background: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    border-color: var(--btn-red);
    color: var(--btn-red);
    box-shadow: 0 0 16px rgba(230,57,70,0.1);
}
.btn-sm { padding: 8px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---- Glass Card -------------------------------------------------------- */
.glass {
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}
.navbar-brand i { color: var(--btn-red); }

/* Site logo (uploaded by admin) */
.site-logo {
    height: 36px;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

/* Public content pages */
.content-navbar {
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.content-page {
    min-height: calc(100vh - 180px);
    padding-top: 82px;
    background: linear-gradient(180deg, #f7f9fc 0%, #fff 42%);
}
.content-hero {
    padding: 78px 0 62px;
    text-align: center;
    background: linear-gradient(135deg, rgba(26,35,126,.08), rgba(57,73,171,.03));
}
.content-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.15; margin: 12px 0 16px; }
.content-hero p { max-width: 680px; margin: 0 auto; color: var(--text-secondary); font-size: 1.08rem; }
.content-kicker {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
    border-radius: 50px; background: rgba(57,73,171,.1); color: #3949ab;
    font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.content-section { padding: 72px 0 96px; }
.content-narrow { max-width: 900px; }
.content-card {
    padding: 30px; background: #fff; border: 1px solid #e8ebf0;
    border-radius: var(--radius); box-shadow: var(--shadow);
}
.content-card h2 { font-size: 1.25rem; margin-bottom: 10px; }
.content-card p { color: var(--text-secondary); }
.content-card-icon {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    border-radius: 14px; margin-bottom: 18px; background: rgba(230,57,70,.1);
    color: var(--btn-red); font-size: 1.25rem;
}
.content-card-icon.whatsapp { background: rgba(37,211,102,.12); color: #1da851; }
.content-card-icon.blue { background: rgba(79,140,255,.12); color: #3977df; }
.content-card-icon.green { background: rgba(34,197,94,.12); color: #16a34a; }
.content-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--btn-red); font-weight: 700; }
.content-link:hover { color: var(--btn-red-hover); }
.content-muted { display: block; margin-top: 18px; color: var(--text-muted); font-size: .85rem; font-weight: 600; }
.contact-grid, .content-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.content-card-wide { margin-bottom: 20px; }
.content-card-wide p + p { margin-top: 14px; }
.content-legal { padding: 42px 48px; }
.content-legal h2 { margin-top: 28px; color: var(--text-primary); }
.content-legal h2:first-of-type { margin-top: 20px; }
.content-legal p { line-height: 1.8; }
.legal-updated { font-size: .85rem; color: var(--text-muted) !important; }
.content-faq-list { max-width: 820px; margin: 0 auto; }

.sidebar .site-logo {
    height: 32px;
    max-width: 160px;
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar-nav a {
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: .9rem;
    transition: var(--transition);
    color: var(--text-secondary);
}
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--text-primary); background: rgba(0,0,0,0.04); }
.mobile-toggle {
    display: none;
    font-size: 1.4rem;
    color: var(--text-primary);
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
    padding: 120px 0 80px;
}
#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Floating icons — large, visible, with brand colors */
.floating-icons {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.floating-icon {
    position: absolute;
    width: 68px; height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--fi-color, #fff);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15),
                0 0 20px rgba(57,73,171,0.25);
    animation: floatBounce 6s ease-in-out infinite, iconGlow 4s ease-in-out infinite alternate;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.floating-icon i { position: relative; z-index: 1; filter: drop-shadow(0 0 6px rgba(255,255,255,0.4)); }

.floating-icon:nth-child(1)  { top: 8%;  left: 6%;   animation-delay: 0s, 0s;   }
.floating-icon:nth-child(2)  { top: 12%; left: 28%;  animation-delay: .8s, .5s;  }
.floating-icon:nth-child(3)  { top: 6%;  left: 52%;  animation-delay: 1.6s, 1s; }
.floating-icon:nth-child(4)  { top: 10%; right: 8%;  animation-delay: .4s, .3s;  }
.floating-icon:nth-child(5)  { top: 38%; left: 4%;   animation-delay: 2.2s, 1.5s; }
.floating-icon:nth-child(6)  { top: 42%; right: 5%;  animation-delay: 1.2s, .8s; }
.floating-icon:nth-child(7)  { bottom: 28%; left: 8%;  animation-delay: 3s, 2s;   }
.floating-icon:nth-child(8)  { bottom: 22%; left: 30%; animation-delay: 2.6s, 1.8s; }
.floating-icon:nth-child(9)  { top: 22%; right: 25%;  animation-delay: 1.8s, 1.2s; }
.floating-icon:nth-child(10) { bottom: 12%; right: 10%; animation-delay: .6s, .4s;  }
.floating-icon:nth-child(11) { bottom: 35%; right: 22%; animation-delay: 3.4s, 2.5s; }
.floating-icon:nth-child(12) { bottom: 8%;  left: 55%;  animation-delay: 2s, 1.4s;   }

@keyframes floatBounce {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25%      { transform: translateY(-18px) rotate(4deg) scale(1.05); }
    50%      { transform: translateY(6px) rotate(-3deg) scale(0.97); }
    75%      { transform: translateY(-10px) rotate(2deg) scale(1.02); }
}
@keyframes iconGlow {
    0%   { box-shadow: 0 4px 30px rgba(0,0,0,0.15), 0 0 15px rgba(57,73,171,0.15); }
    100% { box-shadow: 0 4px 30px rgba(0,0,0,0.15), 0 0 35px rgba(92,107,192,0.4); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 24px;
    background: rgba(92,107,192,0.2);
    border: 1px solid rgba(92,107,192,0.35);
    color: #c5cae9;
    animation: fadeInDown .8s ease;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    animation: fadeInUp .8s ease;
}
.hero h1 .text-gradient {
    background: linear-gradient(135deg, #c5cae9, #7986cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    animation: fadeInUp 1s ease;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}
.hero .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.hero .btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.15);
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}
/* Navbar on hero — white text */
.navbar:not(.scrolled) .navbar-brand { color: #fff; }
.navbar:not(.scrolled) .navbar-nav a { color: rgba(255,255,255,0.75); }
.navbar:not(.scrolled) .navbar-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar:not(.scrolled) .mobile-toggle { color: #fff; }

/* ============================================================================
   SERVICE CARDS — Flat solid brand colors, big icons
   ============================================================================ */
.services-section { padding: 100px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    position: relative;
    padding: 36px 20px;
    border-radius: 20px;
    background: var(--card-bg, #4f8cff);
    text-align: center;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
    overflow: hidden;
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 50%);
    border-radius: inherit;
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px var(--card-shadow, rgba(0,0,0,0.2));
}
.service-card .icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin: 0 auto 18px;
    background: rgba(255,255,255,0.22);
    color: #fff;
    transition: transform .35s ease;
    position: relative;
    z-index: 1;
}
.service-card:hover .icon { transform: scale(1.15) rotate(5deg); }
.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    color: #fff;
}
.service-card p {
    font-size: .82rem;
    color: rgba(255,255,255,0.85);
    position: relative;
    z-index: 1;
}

/* Flat solid brand colors — NO gradient */
.service-card[data-service="facebook"]   { --card-bg: #1877f2; --card-shadow: rgba(24,119,242,0.35); }
.service-card[data-service="instagram"]  { --card-bg: #e4405f; --card-shadow: rgba(228,64,95,0.35); }
.service-card[data-service="tiktok"]     { --card-bg: #010101; --card-shadow: rgba(0,0,0,0.3); }
.service-card[data-service="twitter"]    { --card-bg: #1da1f2; --card-shadow: rgba(29,161,242,0.35); }
.service-card[data-service="pinterest"]  { --card-bg: #e60023; --card-shadow: rgba(230,0,35,0.35); }
.service-card[data-service="tumblr"]     { --card-bg: #34526f; --card-shadow: rgba(52,82,111,0.35); }
.service-card[data-service="telegram"]   { --card-bg: #0088cc; --card-shadow: rgba(0,136,204,0.35); }
.service-card[data-service="youtube"]    { --card-bg: #ff0000; --card-shadow: rgba(255,0,0,0.35); }
.service-card[data-service="snapchat"]   { --card-bg: #fffc00; --card-shadow: rgba(200,200,0,0.3); color: #000; }
.service-card[data-service="google"]     { --card-bg: #4285f4; --card-shadow: rgba(66,133,244,0.35); }
.service-card[data-service="discord"]    { --card-bg: #5865f2; --card-shadow: rgba(88,101,242,0.35); }
.service-card[data-service="spotify"]    { --card-bg: #1db954; --card-shadow: rgba(29,185,84,0.35); }

/* Snapchat dark text */
.service-card[data-service="snapchat"] h3 { color: #000; }
.service-card[data-service="snapchat"] p  { color: rgba(0,0,0,0.6); }
.service-card[data-service="snapchat"] .icon { background: rgba(0,0,0,0.1); color: #000; }

/* ============================================================================
   POPUP / MODAL — Compact, fits on screen
   ============================================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
    width: 440px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
    transform: translateY(-100vh);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}
.modal-overlay.active .modal {
    transform: translateY(0);
    opacity: 1;
}
.modal.closing {
    transform: translateY(100vh) !important;
    opacity: 0 !important;
    transition: transform 0.4s cubic-bezier(0.55, 0, 1, 0.45), opacity 0.3s ease !important;
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.modal-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.modal-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--text-muted);
    transition: var(--transition);
    font-size: .9rem;
}
.modal-close:hover { color: var(--btn-red); background: rgba(230,57,70,0.08); border-color: rgba(230,57,70,0.2); }
.modal-body { padding: 14px 20px 18px; }

/* Subcategory pills */
.subcategory-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.subcategory-pill {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 500;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}
.subcategory-pill:hover,
.subcategory-pill.active {
    background: var(--btn-red);
    border-color: var(--btn-red);
    color: #fff;
}

/* Form — compact */
.form-group {
    margin-bottom: 14px;
}
.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 5px;
}
.form-control {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-primary);
    font-size: .9rem;
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--btn-red);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.08);
}
.form-control::placeholder { color: var(--text-muted); }

/* Range slider — compact */
.range-wrapper { margin-bottom: 4px; }
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: rgba(0,0,0,0.08);
    outline: none;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--btn-red);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(230,57,70,0.3);
    border: 2px solid #fff;
}
.range-slider::-moz-range-thumb {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--btn-red);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(230,57,70,0.3);
    border: 2px solid #fff;
}
.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.range-value {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--text-primary);
}

/* Price display — compact */
.price-display {
    padding: 10px;
    border-radius: var(--radius-xs);
    background: rgba(230,57,70,0.05);
    border: 1px solid rgba(230,57,70,0.12);
    text-align: center;
    margin-bottom: 14px;
}
.price-display .label {
    font-size: .75rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.price-display .price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--btn-red);
    -webkit-text-fill-color: var(--btn-red);
    background: none;
}

/* ============================================================================
   STATS SECTION
   ============================================================================ */
.stats-section { padding: 80px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    padding: 32px 12px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border-glass);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    overflow: visible;
    min-width: 0;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stat-number {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--btn-red) !important;
    -webkit-text-fill-color: var(--btn-red) !important;
    background: none !important;
    white-space: nowrap;
    overflow: visible;
}
.stat-label {
    color: var(--text-secondary);
    font-size: .85rem;
}

/* ============================================================================
   WHATSAPP FLOATING BUTTON
   ============================================================================ */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
    transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float i {
    font-size: 1.9rem;
    filter: drop-shadow(0 0 8px rgba(255,255,255,.35));
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.45);
    animation: whatsappPulse 2.2s ease-out infinite;
    pointer-events: none;
}

.whatsapp-float::after {
    animation-delay: 1.1s;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 34px rgba(37,211,102,.45);
}

@keyframes whatsappPulse {
    0%   { transform: scale(.75); opacity: .9; }
    70%  { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }
}

/* ============================================================================
   FAQ
   ============================================================================ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}
.faq-question:hover { color: var(--btn-red); }
.faq-question i { transition: transform .3s ease; font-size: .8rem; color: var(--text-muted); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--btn-red); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 22px;
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */
.testimonials-section { padding: 80px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    padding: 28px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 12px;
    font-size: .9rem;
}
.testimonial-text {
    color: var(--text-secondary);
    font-size: .92rem;
    margin-bottom: 16px;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--btn-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
}
.testimonial-name { font-weight: 600; font-size: .9rem; color: var(--text-primary); }
.testimonial-role { font-size: .78rem; color: var(--text-muted); }

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-glass);
    background: #1a1a2e;
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.footer-brand i { color: var(--btn-red); }
.footer-desc { color: rgba(255,255,255,0.6); font-size: .88rem; line-height: 1.7; margin-bottom: 16px; }
.footer h4 { font-size: .95rem; font-weight: 700; margin-bottom: 16px; color: #fff; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.6); font-size: .88rem; transition: var(--transition); }
.footer ul li a:hover { color: #fff; }
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-social a:hover {
    color: #fff;
    border-color: var(--btn-red);
    background: rgba(230,57,70,0.2);
    transform: translateY(-2px);
}
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: .82rem;
}

/* ============================================================================
   AUTH PAGE
   ============================================================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}
.auth-card {
    width: 440px;
    max-width: 100%;
    padding: 40px 36px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border-glass);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    animation: fadeInUp .6s ease;
}
.auth-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    background: rgba(0,0,0,0.04);
    border-radius: 50px;
    padding: 4px;
}
.auth-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}
.auth-tab.active {
    background: var(--btn-red);
    color: #fff;
}
.auth-form { display: none; }
.auth-form.active { display: block; animation: fadeInUp .3s ease; }
.auth-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-primary);
}
.auth-subtitle {
    color: var(--text-secondary);
    font-size: .9rem;
    text-align: center;
    margin-bottom: 28px;
}
.auth-link {
    text-align: center;
    margin-top: 20px;
    font-size: .88rem;
    color: var(--text-secondary);
}
.auth-link a { color: var(--btn-red); font-weight: 600; }
.auth-message {
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    margin-bottom: 20px;
    font-size: .88rem;
    text-align: center;
    display: none;
}
.auth-message.info {
    display: block;
    background: rgba(230,57,70,0.06);
    border: 1px solid rgba(230,57,70,0.15);
    color: var(--btn-red);
}

/* ============================================================================
   DASHBOARD LAYOUT
   ============================================================================ */
.dashboard {
    display: flex;
    min-height: 100vh;
}
/* Sidebar — BLACK */
.sidebar {
    width: var(--sidebar-w);
    background: #0d0d0d;
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 900;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease;
}
.sidebar-brand {
    padding: 0 24px 24px;
    font-size: 1.3rem;
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.sidebar-brand i { color: var(--btn-red); }
.sidebar-nav { flex: 1; padding: 0 12px; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    font-size: .9rem;
    margin-bottom: 4px;
    transition: var(--transition);
}
.sidebar-nav a i { font-size: 1rem; width: 20px; text-align: center; }
.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.sidebar-nav a.active { border-left: 3px solid var(--btn-red); }
.sidebar-user {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}
.sidebar-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--btn-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
}
.sidebar-username { font-weight: 600; font-size: .88rem; color: #fff; }
.sidebar-balance { font-size: .78rem; color: var(--accent-green); }
/* Main content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-w);
    padding: 32px 32px;
    min-height: 100vh;
    background: var(--bg-primary);
    min-width: 0;
}
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}
.page-subtitle {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-top: 4px;
}

/* Dashboard stat cards */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.dash-stat-card {
    padding: 24px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.dash-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.dash-stat-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.dash-stat-value { font-size: 1.8rem; font-weight: 800; color: var(--text-primary); }
.dash-stat-label { color: var(--text-secondary); font-size: .85rem; margin-top: 4px; }

/* ============================================================================
   TABLE
   ============================================================================ */
.table-wrapper {
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}
.table-wrapper th {
    text-align: left;
    padding: 14px 18px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: rgba(0,0,0,0.02);
}
.table-wrapper td {
    padding: 14px 18px;
    font-size: .9rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--text-secondary);
}
.table-wrapper tr:hover td { background: rgba(0,0,0,0.01); }
.table-wrapper tr:last-child td { border-bottom: none; }

/* Status badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .76rem;
    font-weight: 600;
    text-transform: capitalize;
}
.badge-pending    { background: rgba(249,115,22,0.1); color: var(--accent-orange); }
.badge-processing { background: rgba(79,140,255,0.1); color: var(--accent-blue); }
.badge-in_progress { background: rgba(168,85,247,0.1); color: var(--accent-purple); }
.badge-completed  { background: rgba(34,197,94,0.1);  color: var(--accent-green); }
.badge-cancelled  { background: rgba(239,68,68,0.1);  color: var(--accent-red); }
.badge-partial    { background: rgba(249,115,22,0.1); color: var(--accent-orange); }
.badge-failed     { background: rgba(239,68,68,0.1);  color: var(--accent-red); }

/* ============================================================================
   ADD FUNDS — Payment Cards
   ============================================================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}
.payment-card {
    padding: 28px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.payment-card:hover,
.payment-card.selected {
    transform: translateY(-4px);
    border-color: var(--btn-red);
    box-shadow: 0 8px 30px rgba(230,57,70,0.12);
}
.payment-card .pay-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.payment-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.payment-card p { color: var(--text-muted); font-size: .85rem; }

/* ============================================================================
   TOAST NOTIFICATION
   ============================================================================ */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn .4s ease;
    min-width: 280px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.toast.toast-success {
    background: #eafbf0;
    border: 1px solid rgba(34,197,94,0.25);
    color: #16a34a;
}
.toast.toast-error {
    background: #fef2f2;
    border: 1px solid rgba(239,68,68,0.25);
    color: var(--accent-red);
}
.toast.toast-info {
    background: #eff6ff;
    border: 1px solid rgba(79,140,255,0.25);
    color: var(--accent-blue);
}
.toast.removing { animation: toastOut .3s ease forwards; }
@keyframes toastIn  { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(-100%); opacity: 0; } }

/* ============================================================================
   PROFILE
   ============================================================================ */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.profile-card {
    padding: 28px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow);
}
.profile-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.animate-in { animation: fadeInUp .6s ease both; }
.animate-delay-1 { animation-delay: .1s; }
.animate-delay-2 { animation-delay: .2s; }
.animate-delay-3 { animation-delay: .3s; }
.animate-delay-4 { animation-delay: .4s; }

/* ============================================================================
   DATA TABLES — Clean, readable, well-spaced
   ============================================================================ */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.data-table thead th {
    padding: 14px 18px;
    background: #f8f9fb;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #666;
    border-bottom: 2px solid #eee;
    text-align: left;
    white-space: nowrap;
}
.data-table tbody td {
    padding: 14px 18px;
    font-size: .85rem;
    color: var(--text-primary);
    border-bottom: 1px solid #f2f2f2;
    vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: #fafbfd; }
.data-table tbody tr { transition: background .15s ease; }

/* ============================================================================
   CARDS — Clean containers
   ============================================================================ */
.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.card-header {
    padding: 16px 22px;
    font-weight: 700;
    font-size: .95rem;
    color: var(--text-primary);
    background: #fafbfc;
    border-bottom: 1px solid #eee;
}
.card-body { padding: 22px; }
.card-body:has(> table) { padding: 0; }

/* ============================================================================
   STATS CARDS — Dashboard
   ============================================================================ */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}
.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.stat-value { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); }
.stat-label { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================================
   VERIFICATION DIGITS — 6 separate boxes
   ============================================================================ */
.verify-digits-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 12px 0 20px;
}
.verify-digit {
    width: 52px;
    height: 60px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    border: 2px solid #ddd;
    border-radius: 12px;
    background: #fafbfc;
    color: var(--text-primary);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    caret-color: #3949ab;
}
.verify-digit:focus {
    border-color: #3949ab;
    box-shadow: 0 0 0 3px rgba(57,73,171,0.15);
    background: #fff;
}
.verify-digit.filled {
    border-color: #3949ab;
    background: #fff;
}

/* ============================================================================
   PAYMENT CARDS — CIH / Cryptomus / CC
   ============================================================================ */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.payment-card {
    padding: 24px 20px;
    border: 2px solid #eee;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    text-align: center;
    transition: all .2s ease;
}
.payment-card:hover { border-color: #ccc; transform: translateY(-2px); }
.payment-card.selected { border-color: var(--btn-red); box-shadow: 0 4px 20px rgba(230,57,70,0.12); }
.payment-card .payment-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 12px;
}
.payment-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.payment-card p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* ============================================================================
   PANEL SERVICES LIST (new-order page)
   ============================================================================ */
.panel-services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.panel-svc-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.panel-svc-card:hover {
    border-color: var(--btn-red);
    box-shadow: 0 4px 16px rgba(230,57,70,0.08);
    transform: translateX(4px);
}
.panel-svc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.panel-svc-info strong {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.panel-svc-meta {
    font-size: .75rem;
    color: var(--text-muted);
}
.panel-svc-order-btn {
    flex-shrink: 0;
    margin-left: 12px;
}

/* Sidebar mobile toggle */
.sidebar-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 950;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-muted);
}
.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
}
.empty-state p { font-size: 1rem; }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .navbar-nav { display: none; }
    .navbar-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        padding: 16px;
        border-bottom: 1px solid var(--border-glass);
    }
    .navbar-nav.open a { color: var(--text-primary) !important; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .service-card { padding: 24px 14px; }
    .service-card .icon { width: 60px; height: 60px; font-size: 1.8rem; }
    .floating-icon { width: 48px; height: 48px; font-size: 1.3rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .content-hero { padding: 58px 0 46px; }
    .content-section { padding: 48px 0 64px; }
    .contact-grid, .content-feature-grid { grid-template-columns: 1fr; }
    .content-card { padding: 24px; }
    .content-legal { padding: 28px 24px; }

    /* Dashboard */
    .sidebar-toggle { display: flex; }
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; padding: 24px 16px; padding-top: 72px; }
    .dash-stats { grid-template-columns: 1fr 1fr; }
    .profile-grid { grid-template-columns: 1fr; }
    .page-header { flex-direction: column; align-items: flex-start; gap: 8px; }

    /* Table scroll */
    .table-wrapper { overflow-x: auto; }
    .table-wrapper table { min-width: 600px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .dash-stats { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: 1fr; }
    .auth-card { padding: 28px 20px; }
}
