/* ═══════════════════════════════════════════════════════════════════════════
   XYZ Reseller — Frontend Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Fraud Alert Toolbar ────────────────────────────────────────────────────── */
#fraudAlertBar {
    background: linear-gradient(90deg, #7f1d1d 0%, #991b1b 35%, #b91c1c 65%, #7f1d1d 100%);
    background-size: 200% 100%;
    animation: fraudBarShift 6s linear infinite, fraudBarSlideIn 0.45s cubic-bezier(0.22,1,0.36,1) both;
    border-bottom: 2px solid #fbbf24;
    position: relative;
    z-index: 1050;
    overflow: hidden;
}

#fraudAlertBar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 18px,
        rgba(0,0,0,0.08) 18px,
        rgba(0,0,0,0.08) 20px
    );
    pointer-events: none;
}

#fraudAlertBar.fraud-bar-hiding {
    animation: fraudBarSlideOut 0.35s ease forwards;
}

@keyframes fraudBarShift {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
@keyframes fraudBarSlideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}
@keyframes fraudBarSlideOut {
    from { transform: translateY(0);     opacity: 1; max-height: 200px; }
    to   { transform: translateY(-100%); opacity: 0; max-height: 0; }
}

.fraud-bar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}

/* Pulsing icon */
.fraud-bar-icon-wrap {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fraud-bar-icon {
    font-size: 1.3rem;
    color: #fef08a;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 6px rgba(254,240,138,0.7));
    animation: fraudIconBlink 1.4s ease-in-out infinite;
}
.fraud-pulse-ring {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 2px solid #fbbf24;
    border-radius: 50%;
    animation: fraudPulse 1.4s ease-out infinite;
    opacity: 0;
}
@keyframes fraudIconBlink {
    0%, 100% { color: #fef08a; filter: drop-shadow(0 0 6px rgba(254,240,138,0.7)); }
    50%       { color: #fff;    filter: drop-shadow(0 0 12px rgba(255,255,255,0.9)); }
}
@keyframes fraudPulse {
    0%   { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(2);   opacity: 0; }
}

/* Text block */
.fraud-bar-text {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    min-width: 0;
    line-height: 1.4;
}

.fraud-bar-label {
    display: inline-flex;
    align-items: center;
    background: #fbbf24;
    color: #1c0303;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    padding: 2px 9px;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 0 8px rgba(251,191,36,0.5);
    animation: fraudLabelPop 1.8s ease-in-out infinite;
}
@keyframes fraudLabelPop {
    0%, 100% { box-shadow: 0 0 6px rgba(251,191,36,0.4); }
    50%       { box-shadow: 0 0 16px rgba(251,191,36,0.9); }
}

.fraud-bar-msg {
    color: #fecaca;
    font-size: 0.82rem;
    font-weight: 500;
}
.fraud-bar-msg strong {
    color: #fff;
    font-weight: 700;
}

/* Phone links */
.fraud-bar-phones {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem 0.6rem;
}

.fraud-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}
.fraud-phone-link:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    color: #fff !important;
}
.fraud-phone-link i {
    font-size: 0.85rem;
    color: #fbbf24;
    animation: fraudRing 2.5s ease-in-out infinite;
}
@keyframes fraudRing {
    0%, 85%, 100% { transform: rotate(0deg); }
    87%            { transform: rotate(-15deg); }
    90%            { transform: rotate(15deg); }
    93%            { transform: rotate(-10deg); }
    96%            { transform: rotate(8deg); }
}

.fraud-phone-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: #fca5a5;
    margin-left: 2px;
}

.fraud-divider {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

/* Close button */
.fraud-bar-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
}
.fraud-bar-close:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .fraud-bar-inner { padding: 0.6rem 1rem; gap: 0.6rem; }
    .fraud-bar-text  { gap: 0.25rem 0.5rem; }
    .fraud-bar-msg   { font-size: 0.78rem; }
    .fraud-phone-link { font-size: 0.82rem; padding: 4px 10px; }
}
@media (max-width: 480px) {
    .fraud-bar-msg { display: none; }
    .fraud-bar-label { font-size: 0.65rem; }
    .fraud-phone-link { font-size: 0.8rem; }
}
/* ─── END Fraud Alert Toolbar ─────────────────────────────────────────────── */

:root {
    --primary:       #0d6efd;
    --primary-dark:  #0b5ed7;
    --primary-light: #3d8bfd;
    --accent:        #00d4ff;
    --dark:          #0a0f1e;
    --dark-2:        #111827;
    --dark-3:        #1f2937;
    --card-bg:       #131929;
    --border:        rgba(255,255,255,0.08);
    --text-muted:    #94a3b8;
    --success:       #22c55e;
    --warning:       #f59e0b;
    --danger:        #ef4444;
    --gradient-1:    linear-gradient(135deg, #0d6efd 0%, #00d4ff 100%);
    --gradient-hero: linear-gradient(135deg, #060d1f 0%, #0a1628 50%, #0d1f3c 100%);
    --shadow-card:   0 4px 24px rgba(0,0,0,0.35);
    --shadow-hover:  0 12px 40px rgba(13,110,253,0.25);
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Base ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: #e2e8f0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; }

/* ─── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 3px; }

/* ─── Navbar ────────────────────────────────────────────────────────────────── */
#mainNav {
    background: rgba(6, 13, 31, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    padding: 0.75rem 0;
    z-index: 1030;
}

#mainNav.scrolled {
    background: rgba(6, 13, 31, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    padding: 0.5rem 0;
}

.navbar-brand { gap: 10px; }

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.logo-img { border-radius: 8px; height: 38px; width: auto; }

.brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.navbar-nav .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(13,110,253,0.15);
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary-custom {
    background: var(--gradient-1);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(13,110,253,0.35);
    letter-spacing: 0.3px;
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,110,253,0.5);
    color: #fff;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.25);
    color: #fff;
    font-weight: 600;
    padding: 0.73rem 1.73rem;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-2px);
}

.btn-telegram {
    background: #229ED9;
    color: #fff;
    border: none;
    font-weight: 500;
    transition: var(--transition);
}
.btn-telegram:hover { background: #1a7baa; color: #fff; }

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    font-weight: 500;
    transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ea552; color: #fff; }

/* ─── Section Headers ───────────────────────────────────────────────────────── */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(13,110,253,0.12);
    border: 1px solid rgba(13,110,253,0.25);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── Hero Section ──────────────────────────────────────────────────────────── */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(13,110,253,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    color: #86efac;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.hero-title .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.hero-stat .stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ─── Trust Badges ──────────────────────────────────────────────────────────── */
.trust-badges {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge-item i {
    font-size: 1.25rem;
    color: var(--primary-light);
}

/* ─── Product Cards ─────────────────────────────────────────────────────────── */
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(13,110,253,0.35);
}

.product-card .card-img-wrapper {
    position: relative;
    background: var(--dark-3);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.product-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.product-card .card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge-featured {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.badge-stock-out {
    background: rgba(239,68,68,0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.badge-stock-in {
    background: rgba(34,197,94,0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.product-card .card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.product-card .card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-card .card-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-tag {
    font-size: 0.72rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: #94a3b8;
    padding: 3px 10px;
    border-radius: 50px;
}

.product-card .card-footer-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.btn-buy {
    background: var(--gradient-1);
    border: none;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-buy:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(13,110,253,0.4);
    color: #fff;
}

/* ─── Category Cards ────────────────────────────────────────────────────────── */
.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(13,110,253,0.35);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(13,110,253,0.15), rgba(0,212,255,0.08));
    border: 1px solid rgba(13,110,253,0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-light);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
}

.category-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.category-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── Feature Cards (Why Choose Us) ────────────────────────────────────────── */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    border-color: rgba(13,110,253,0.35);
    transform: translateY(-3px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── How It Works ──────────────────────────────────────────────────────────── */
.step-card {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────────── */
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1.1rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-question .faq-icon {
    font-size: 1.1rem;
    color: var(--primary-light);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    border-top: 1px solid var(--border);
}

/* ─── Product Details Page ──────────────────────────────────────────────────── */
.product-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-3);
    border: 1px solid var(--border);
}

.product-detail-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.detail-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: #e2e8f0;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 8px;
}

.info-badge i { color: var(--primary-light); }

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: #e2e8f0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.features-list li:last-child { border-bottom: none; }
.features-list li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: var(--gradient-1);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-top: 2px;
}

.activation-guide {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.8;
    white-space: pre-line;
}

/* ─── Support CTA Section ───────────────────────────────────────────────────── */
.support-cta {
    background: linear-gradient(135deg, rgba(13,110,253,0.1) 0%, rgba(0,212,255,0.05) 100%);
    border: 1px solid rgba(13,110,253,0.2);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
}

/* ─── Page Hero (inner pages) ───────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1a2e 100%);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0 3rem;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.breadcrumb-item a { color: var(--primary-light); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: #475569; }

/* ─── Filter Sidebar ────────────────────────────────────────────────────────── */
.filter-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.filter-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 0;
    cursor: pointer;
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: var(--transition);
    border-radius: 6px;
    text-decoration: none;
}
.filter-option:hover { color: var(--primary-light); }
.filter-option.active { color: var(--primary-light); font-weight: 600; }

/* ─── Content Sections ──────────────────────────────────────────────────────── */
.section-dark { background: var(--dark); }
.section-dark-2 { background: var(--dark-2); }
.section-dark-3 { background: var(--dark-3); }
.py-section { padding: 5rem 0; }
.py-section-sm { padding: 3.5rem 0; }

/* ─── Form Styles ───────────────────────────────────────────────────────────── */
.form-control-dark,
.form-select-dark {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.1);
    color: #e2e8f0;
    border-radius: var(--radius);
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-control-dark:focus,
.form-select-dark:focus {
    background: var(--dark-3);
    border-color: var(--primary);
    color: #e2e8f0;
    box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
    outline: none;
}
.form-control-dark::placeholder { color: #475569; }
.form-select-dark option { background: var(--dark-3); }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
}

.footer-top { padding: 4rem 0 3rem; }

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 1px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: #64748b;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }

.support-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
}

.text-secondary-light { color: #64748b; }
.text-primary-light { color: var(--primary-light); }

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
    color: #fff;
    transition: var(--transition);
}
.telegram-btn { background: #229ED9; }
.telegram-btn:hover { background: #1a7baa; color: #fff; transform: translateY(-2px); }
.whatsapp-btn { background: #25D366; }
.whatsapp-btn:hover { background: #1ea552; color: #fff; transform: translateY(-2px); }
.email-btn { background: var(--primary); }
.email-btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    color: #475569;
    font-size: 0.85rem;
}

/* ─── Pagination ─────────────────────────────────────────────────────────────── */
.pagination .page-link {
    background: var(--card-bg);
    border-color: var(--border);
    color: #e2e8f0;
    padding: 0.45rem 0.9rem;
    transition: var(--transition);
}
.pagination .page-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }
.pagination .page-item.disabled .page-link { background: var(--dark-3); color: #475569; }

/* ─── Alert / Toast ──────────────────────────────────────────────────────────── */
.alert { border: none; border-radius: var(--radius); font-size: 0.9rem; }

/* ─── Animations ─────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ─── Utility ────────────────────────────────────────────────────────────────── */
.divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 2.5rem 0;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-section { padding: 4rem 0 3rem; min-height: auto; }
    .hero-stats { gap: 1.25rem; }
    .hero-stat .stat-number { font-size: 1.3rem; }
    .py-section { padding: 3.5rem 0; }
    .footer-top { padding: 2.5rem 0 2rem; }
    .trust-badges .d-flex { gap: 1.5rem !important; }
}

@media (max-width: 576px) {
    .hero-section { padding: 3rem 0 2.5rem; }
    .trust-badge-item span { display: none; }
}
