/* ═══════════════════════════════════════════════
   INDEX PAGE — PREMIUM UI OVERHAUL
   ═══════════════════════════════════════════════ */

/* ── Premium Background System for Index Page ── */
.a2z-landing .background-effects {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(180deg, #08080f 0%, #030306 100%);
}

.a2z-landing .background-effects::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(168,85,247,0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(99,102,241,0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 60% 20%, rgba(244,114,182,0.35) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 50%, rgba(34,211,165,0.3) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 10% 80%, rgba(168,85,247,0.25) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 90% 10%, rgba(99,102,241,0.25) 0%, transparent 100%),
        radial-gradient(2px 2px at 50% 50%, rgba(251,191,36,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 55%, rgba(244,114,182,0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.a2z-landing .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 70%);
    opacity: 0.6;
    z-index: 0;
}

.a2z-landing .a2z-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 5.5vw, 2.4rem);
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.6),
        0 4px 12px rgba(168,85,247,0.2);
}

.a2z-landing .a2z-title .pink {
    background: linear-gradient(
        135deg,
        #e879f9 0%,
        #c084fc 25%,
        #f472b6 50%,
        #fbbf24 75%,
        #e879f9 100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(232,121,249,0.25));
    font-weight: 800;
}

.a2z-landing .a2z-sub {
    font-size: clamp(0.95rem, 3.5vw, 1.25rem);
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-top: 8px;
}

/* ── Tactical 3D Buttons ── */
.a2z-landing .a2z-btn {
    position: relative;
    font-weight: 800;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: all 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
    padding: 12px 20px !important; /* more compact padding */
    font-size: clamp(14px, 3.8vw, 17px) !important; /* compact premium size */
    overflow: hidden;
}

/* Shimmer sweep animation */
.a2z-landing .a2z-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-20deg);
    animation: btnShimmerSweep 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btnShimmerSweep {
    0% { left: -100%; }
    50%, 100% { left: 160%; }
}

/* Check Free Demo Button - Purple/Indigo theme */
.a2z-landing .a2z-btn:not(.a2z-btn-buy) {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #6366f1 100%);
    color: #fff !important;
    box-shadow:
        0 4px 0 0 #5b21b6, /* 3D depth border (sleeker 4px) */
        0 8px 24px rgba(168,85,247,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.a2z-landing .a2z-btn:not(.a2z-btn-buy):hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 0 #5b21b6,
        0 14px 32px rgba(168,85,247,0.4),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.a2z-landing .a2z-btn:not(.a2z-btn-buy):active {
    transform: translateY(3px);
    box-shadow:
        0 1px 0 0 #5b21b6,
        0 3px 10px rgba(168,85,247,0.18),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Buy Now Button - Orange/Yellow/Gold theme */
.a2z-landing .a2z-btn-buy {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #ea580c 100%);
    color: #000 !important;
    box-shadow:
        0 4px 0 0 #c2410c, /* 3D depth border (sleeker 4px) */
        0 8px 24px rgba(249,115,22,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.a2z-landing .a2z-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 0 #c2410c,
        0 14px 32px rgba(249,115,22,0.4),
        inset 0 1px 0 rgba(255,255,255,0.35);
}

.a2z-landing .a2z-btn-buy:active {
    transform: translateY(3px);
    box-shadow:
        0 1px 0 0 #c2410c,
        0 3px 10px rgba(249,115,22,0.18),
        inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Soft scale pulse on hover/idle for buy button - animation removed to prevent memory issues */
.a2z-landing .a2z-btn-pulse {
}

/* ── Video Shell Premium (Disabled to match Demo page exactly) ── */

.a2z-landing .a2z-play-icon {
    background: linear-gradient(135deg, #e879f9, #a855f7);
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 4px 18px rgba(168,85,247,0.45);
}

/* ── FAQ Glassmorphism Accordion ── */
.a2z-landing .a2z-faq-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    color: #fff;
    margin-bottom: 24px;
}

.a2z-landing .a2z-faq-heading .pink {
    background: linear-gradient(135deg, #e879f9, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.a2z-landing .a2z-acc-item {
    background: rgba(14,14,24,0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(168,85,247,0.15);
    box-shadow:
        0 4px 12px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.a2z-landing .a2z-acc-item:hover {
    border-color: rgba(168,85,247,0.3);
    box-shadow:
        0 8px 24px rgba(0,0,0,0.25),
        0 0 15px rgba(168,85,247,0.08),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.a2z-landing .a2z-acc-header {
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.9) !important;
    padding: 18px 20px !important;
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.a2z-landing .a2z-acc-header:hover {
    color: #fff !important;
}

.a2z-landing .a2z-acc-icon {
    color: #c084fc !important;
    transition: transform 0.3s ease;
}

.a2z-landing .a2z-acc-item.is-open {
    border-color: rgba(168,85,247,0.45);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        0 0 20px rgba(168,85,247,0.15);
    background: rgba(14,14,24,0.85);
}

.a2z-landing .a2z-acc-item.is-open .a2z-acc-header {
    color: #e879f9 !important;
}

.a2z-landing .a2z-acc-item.is-open .a2z-acc-icon {
    color: #e879f9 !important;
    transform: rotate(45deg);
}

.a2z-landing .a2z-acc-body {
    background: rgba(10,10,18,0.5) !important;
    border: none !important;
    border-top: 1px solid rgba(168,85,247,0.1) !important;
    color: rgba(255,255,255,0.7) !important;
    padding: 16px 20px 20px !important;
    font-size: 0.88rem;
    line-height: 1.6;
}

.a2z-landing .a2z-acc-body a {
    color: #c084fc !important;
    text-shadow: 0 0 10px rgba(192,132,252,0.3);
    font-weight: 600;
    transition: all 0.2s ease;
}

.a2z-landing .a2z-acc-body a:hover {
    color: #e879f9 !important;
}

/* ── Rest of elements ── */
.a2z-landing .a2z-divider span {
    border-top: 1px solid rgba(168,85,247,0.15) !important;
    box-shadow: 0 0 10px rgba(168,85,247,0.05);
}

.a2z-landing .a2z-reviews-img img {
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.a2z-landing .a2z-footer {
    background: rgba(10,10,18,0.85) !important;
    border-top: 1px solid rgba(168,85,247,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px 16px 0 0;
    padding-top: 36px;
    margin-top: 40px;
}

.a2z-landing .a2z-footer-email a {
    color: #c084fc !important;
    font-weight: 700;
}

.a2z-landing .a2z-footer-links a {
    color: rgba(255,255,255,0.5) !important;
    transition: all 0.2s ease;
}

.a2z-landing .a2z-footer-links a:hover {
    color: #e879f9 !important;
    text-shadow: 0 0 10px rgba(232,121,249,0.3);
}

/* ── Responsive Spacing ── */
@media (max-width: 767px) {
    .a2z-landing .a2z-btn-buy {
        padding: 12px 10px;
    }
}

/* 3D Animated Pointing Emojis */
.emoji-3d-point-right, .emoji-3d-point-left {
    display: inline-block;
    user-select: none;
    pointer-events: none;
    flex-shrink: 0;
    line-height: 1;
}

.emoji-3d-point-right {
    animation: pointRightSmooth 1s ease-in-out infinite;
    text-shadow: 
        1px 1px 0px #d97706, 
        2px 2px 0px #b45309, 
        3px 3px 0px #78350f, 
        4px 4px 5px rgba(0,0,0,0.6);
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.4));
    margin-right: 8px;
}

.emoji-3d-point-left {
    animation: pointLeftSmooth 1s ease-in-out infinite;
    text-shadow: 
        -1px 1px 0px #d97706, 
        -2px 2px 0px #b45309, 
        -3px 3px 0px #78350f, 
        -4px 4px 5px rgba(0,0,0,0.6);
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.4));
    margin-left: 8px;
}

@keyframes pointRightSmooth {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(6px) scale(1.1);
    }
}

@keyframes pointLeftSmooth {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(-6px) scale(1.1);
    }
}

@media (max-width: 480px) {
    .emoji-3d-point-right {
        margin-right: 4px;
    }
    .emoji-3d-point-left {
        margin-left: 4px;
    }
    @keyframes pointRightSmooth {
        0%, 100% {
            transform: translateX(0) scale(1);
        }
        50% {
            transform: translateX(4px) scale(1.08);
        }
    }
    @keyframes pointLeftSmooth {
        0%, 100% {
            transform: translateX(0) scale(1);
        }
        50% {
            transform: translateX(-4px) scale(1.08);
        }
    }
}

.a2z-landing .a2z-video-shell {
    margin-top: 28px !important;
}

