/* ============================================
   MODERN HERO SECTION - COOL WHITE & PURPLE
   30% Smaller, Clean, Contemporary Design
   ============================================ */

:root {
    --hero-purple-primary: #9333ea;
    --hero-purple-light: #a855f7;
    --hero-purple-lighter: #c084fc;
    --hero-purple-pale: #e9d5ff;
    --hero-white: #ffffff;
    --hero-gray-50: #fafafa;
    --hero-gray-100: #f5f5f5;
    --hero-gray-600: #6b7280;
    --hero-gray-900: #111827;
}

/* ============================================
   HERO SECTION - 30% SMALLER
   ============================================ */

.hero-modern {
    position: relative;
    min-height: 60vh;
    /* Reduced from 90vh - 33% smaller */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 50%, #f3e8ff 100%);
    padding: 100px 20px 60px;
    /* Reduced padding */
    overflow: hidden;
}

/* Animated Background Orbs */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-orb 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--hero-purple-light), transparent);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--hero-purple-lighter), transparent);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--hero-purple-pale), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ============================================
   HERO WRAPPER - TWO COLUMN LAYOUT
   ============================================ */

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    /* Reduced gap */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   HERO CONTENT
   ============================================ */

.hero-content-box {
    padding-right: 20px;
}

/* Trust Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    /* Reduced padding */
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    color: var(--hero-purple-primary);
    font-size: 0.85rem;
    /* Smaller font */
    font-weight: 600;
    margin-bottom: 20px;
    /* Reduced margin */
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--hero-purple-light);
    font-size: 0.9rem;
}

/* Hero Title - Simple & Bold Redesign */
.hero-title {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900 !important;
    /* Ultra Bold */
    line-height: 1.1;
    color: var(--hero-gray-900);
    margin-bottom: 24px;
    letter-spacing: -2px !important;
    /* Tight tracking for impact */
    opacity: 0;
    /* Premium smooth slide-up animation */
    animation: title-premium-reveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards !important;
}

@keyframes title-premium-reveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-gradient-text {
    background: linear-gradient(135deg, var(--hero-purple-primary) 0%, var(--hero-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Hero Description */
.hero-description {
    font-size: 1rem;
    /* Reduced from 1.25rem */
    line-height: 1.7;
    color: var(--hero-gray-600);
    margin-bottom: 24px;
    /* Reduced margin */
    max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    /* Reduced gap */
    margin-bottom: 28px;
    /* Reduced margin */
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    /* Reduced padding */
    font-size: 0.95rem;
    /* Reduced font size */
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--hero-purple-primary), var(--hero-purple-light));
    color: white;
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.35);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(4px);
}

.hero-btn-secondary {
    background: white;
    color: var(--hero-purple-primary);
    border: 2px solid rgba(147, 51, 234, 0.2);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.1);
}

.hero-btn-secondary:hover {
    background: var(--hero-purple-pale);
    border-color: var(--hero-purple-light);
    transform: translateY(-2px);
}

/* Mini Features */
.hero-features-mini {
    display: flex;
    gap: 24px;
    /* Reduced gap */
    flex-wrap: wrap;
}

.hero-mini-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hero-gray-600);
    font-size: 0.85rem;
    /* Reduced font size */
    font-weight: 500;
}

.hero-mini-feature i {
    color: var(--hero-purple-primary);
    font-size: 1rem;
}

/* ============================================
   HERO VISUAL - FLOATING CARDS
   ============================================ */

.hero-visual {
    position: relative;
    height: 350px;
    /* Reduced from 500px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cards-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(147, 51, 234, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 240px;
    overflow: hidden;
}

/* Desktop & Mobile: Make cards clickable on ALL devices */
.hero-floating-card {
    cursor: pointer;
}

.hero-floating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(147, 51, 234, 0.1) 50%,
            transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.hero-floating-card:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.hero-floating-card:hover {
    transform: translateY(-12px) scale(1.08) rotate(-2deg);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(147, 51, 234, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    border-color: rgba(147, 51, 234, 0.3);
}

/* Desktop only: Add click hint on hover */
@media (min-width: 769px) {
    .hero-floating-card:hover::after {
        content: '👆 Click to explore';
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(147, 51, 234, 0.95);
        color: white;
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        animation: fadeInClick 0.3s ease forwards;
        pointer-events: none;
        z-index: 10;
    }
}

@keyframes fadeInClick {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Card Positioning - Stacked Layout */
.hero-card-1 {
    top: 10%;
    left: 10%;
    animation: float-card-1 8s ease-in-out infinite;
}

.hero-card-2 {
    top: 45%;
    right: 5%;
    animation: float-card-2 8s ease-in-out infinite 2s;
}

.hero-card-3 {
    bottom: 10%;
    left: 20%;
    animation: float-card-3 8s ease-in-out infinite 4s;
}

@keyframes float-card-1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(2deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }

    75% {
        transform: translateY(-25px) rotate(1deg);
    }
}

@keyframes float-card-2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(-2deg);
    }

    50% {
        transform: translateY(-25px) rotate(1deg);
    }

    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes float-card-3 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-18px) rotate(1deg);
    }

    50% {
        transform: translateY(-8px) rotate(-2deg);
    }

    75% {
        transform: translateY(-22px) rotate(1deg);
    }
}

/* Card Icon - Image Based */
.hero-card-icon-img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card-icon-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(168, 85, 247, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-floating-card:hover .hero-card-icon-img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 28px rgba(147, 51, 234, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

.hero-floating-card:hover .hero-card-icon-img::before {
    opacity: 1;
}

.hero-card-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.hero-floating-card:hover .hero-card-icon-img img {
    transform: scale(1.15);
    filter: brightness(1.1) saturate(1.2);
}

/* New: Netflix and YouTube Specific Logo Styling (Image-based for 100% reliability) */
.netflix-logo-icon,
.hero-card-2 .hero-card-icon-img {
    background: #000000 !important;
    border: none !important;
    /* Remove white border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    /* Professional shadow only */
    padding: 0 !important;
}

.youtube-logo-icon {
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
}

.netflix-logo-icon img,
.hero-card-2 .hero-card-icon-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    /* Perfectly fills the rounded square */
    border-radius: inherit;
    /* Ensures image follows container rounding */
}

/* Specific fix for YouTube logo to hide attribution while keeping icon visible */
.youtube-logo-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 6px !important;
    /* Professional margin for white background */
    transform: scale(1.1) translateY(-1px);
    border-radius: inherit;
}

.hero-card-icon-img i {
    transition: transform 0.4s ease;
}

.hero-floating-card:hover .hero-card-icon-img i {
    transform: scale(1.1);
}

/* Card Info */
.hero-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hero-gray-900);
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
}

.hero-floating-card:hover .hero-card-name {
    color: var(--hero-purple-primary);
}

.hero-card-price {
    font-size: 1.1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    animation: price-glow 3s ease-in-out infinite;
}

@keyframes price-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 2px rgba(8, 145, 178, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
    }
}

.hero-floating-card:hover .hero-card-price {
    animation: price-pulse 0.6s ease-in-out;
}

@keyframes price-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .hero-modern {
        min-height: 50vh;
        padding: 90px 20px 50px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content-box {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features-mini {
        justify-content: center;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-floating-card {
        width: 200px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: auto !important;
        padding: 100px 15px 40px !important;
        background: #ffffff !important;
    }

    .hero-badge {
        font-size: 0.75rem !important;
        padding: 8px 18px !important;
        background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(168, 85, 247, 0.1)) !important;
        border: 1px solid rgba(147, 51, 234, 0.15) !important;
        color: #7c3aed !important;
        margin: 0 auto 20px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 4px 15px rgba(124, 58, 237, 0.05) !important;
        animation: hero-badge-pulse 2s ease-in-out infinite !important;
    }

    @keyframes hero-badge-pulse {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.05);
        }

        50% {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(124, 58, 237, 0.12);
        }
    }

    .hero-title {
        display: none !important;
        /* Hide title on mobile as requested */
    }

    .hero-description {
        display: none !important;
        /* Hide description on mobile as requested */
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 35px !important;
    }

    .hero-btn {
        width: 100% !important;
        max-width: 300px !important;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        border-radius: 16px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-btn-primary {
        background: linear-gradient(135deg, #7c3aed, #9333ea) !important;
        box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3) !important;
    }

    .hero-btn-secondary {
        background: #fdfaff !important;
        color: #7c3aed !important;
        border: 2px solid rgba(124, 58, 237, 0.15) !important;
    }

    .hero-features-mini {
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important;
        padding: 15px !important;
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(124, 58, 237, 0.08) !important;
        border-radius: 20px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
        margin: 0 10px !important;
    }

    .hero-mini-feature {
        flex-direction: column !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        color: #6b7280 !important;
        gap: 5px !important;
    }

    .hero-mini-feature i {
        font-size: 1.2rem !important;
        color: #7c3aed !important;
        margin-bottom: 2px !important;
    }

    /* RESTORED: Floating Cards for Mobile Redesign */
    .hero-visual {
        display: block !important;
        position: relative !important;
        height: 200px !important;
        width: 100% !important;
        margin: 20px 0 30px !important;
        overflow: visible !important;
    }

    .hero-cards-stack {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
    }

    .hero-floating-card {
        display: flex !important;
        position: absolute !important;
        width: auto !important;
        min-width: 180px !important;
        padding: 12px !important;
        background: rgba(255, 255, 255, 0.7) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(124, 58, 237, 0.15) !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1) !important;
        align-items: center !important;
        gap: 12px !important;
        z-index: 5 !important;
    }

    .hero-card-icon-img {
        width: 45px !important;
        height: 45px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }

    .hero-card-name {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: #1f2937 !important;
    }

    .hero-card-price {
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        background: linear-gradient(135deg, #7c3aed, #9333ea) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    /* Strategic Mobile Positioning */
    .hero-card-1 {
        top: 0% !important;
        left: 5% !important;
        animation: float-card-1 8s ease-in-out infinite !important;
    }

    .hero-card-2 {
        top: 40% !important;
        right: 5% !important;
        animation: float-card-2 8s ease-in-out infinite 2s !important;
    }

    .hero-card-3 {
        bottom: 0% !important;
        left: 10% !important;
        animation: float-card-3 8s ease-in-out infinite 4s !important;
    }
}

@media (max-width: 480px) {
    .hero-modern {
        min-height: 40vh;
    }

    .hero-floating-card {
        width: 160px;
        padding: 12px;
        gap: 10px;
    }

    .hero-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ============================================
   VIDEO MODAL STYLES
   ============================================ */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
}

.video-modal-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10001;
}

.video-modal.active .video-modal-container {
    transform: scale(1);
    opacity: 1;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.video-modal-content {
    width: 100%;
    line-height: 0;
}

.video-responsive-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-modal {
        padding: 10px;
    }

    .video-modal-container {
        border-radius: 16px;
    }

    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
}

/* ============================================
/* ============================================
   ACTIVATION GUIDE UI (V2 - PROFESSIONAL)
   ============================================ */

.activation-guide-v2 {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 32px;
    color: #1e293b;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.25);
}

.guide-header-v2 {
    text-align: center;
    margin-bottom: 50px;
}

.guide-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.guide-header-v2 h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    color: #0f172a;
}

.purple-gradient-text {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guide-header-v2 p {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
}

.guide-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.guide-card-v2 {
    position: relative;
    padding: 35px 25px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.guide-card-v2:hover {
    background: #ffffff;
    transform: translateY(-8px);
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-icon-v2 {
    width: 64px;
    height: 64px;
    background: #ffffff;
    color: #7c3aed;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.1);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    /* Added for images */
}

.card-icon-v2 img {
    width: 65%;
    /* Perfect fit for logos */
    height: 65%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.guide-card-v2:hover .card-icon-v2 img {
    transform: scale(1.15) rotate(5deg);
}

.card-icon-v2.success {
    background: #10b981;
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.card-body-v2 h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1e293b;
}

.card-body-v2 p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.card-num-v2 {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    opacity: 0.03;
    line-height: 1;
    pointer-events: none;
}

.guide-footer-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.pro-modal-btn {
    background: #0f172a;
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pro-modal-btn:hover {
    background: #7c3aed;
    transform: scale(1.05);
}

.system-status-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.pulse-icon {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: status-pulse-v2 2s infinite;
}

@keyframes status-pulse-v2 {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .guide-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .activation-guide-v2 {
        padding: 40px 25px;
        border-radius: 24px;
    }

    .guide-grid-v2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .guide-header-v2 {
        margin-bottom: 30px;
    }

    .guide-header-v2 h2 {
        font-size: 1.8rem;
    }

    .guide-footer-v2 {
        flex-direction: column;
        gap: 20px;
    }

    .pro-modal-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Base Modal Overrides */
.video-modal-container {
    background: transparent !important;
    box-shadow: none !important;
}

.video-modal-close {
    background: rgba(15, 23, 42, 0.4) !important;
    backdrop-filter: blur(4px) !important;
}
/* ============================================

.sparkle {
    position: absolute !important;
    font-size: 1.5rem !important;
    pointer-events: none !important;
    z-index: 10 !important;
    animation: sparkle-float 3s ease-in-out infinite !important;
}

.sparkle.s1 {
    top: -15px !important;
    left: -40px !important;
    color: #FFD700 !important;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8) !important;
    animation-delay: 0s !important;
}

.sparkle.s2 {
    bottom: -10px !important;
    right: -30px !important;
    color: #FF0080 !important;
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.8) !important;
    font-size: 2rem !important;
    animation-delay: 1.5s !important;
}

.sparkle.s3 {
    top: -20px !important;
    right: 10% !important;
    color: #FF8C00 !important;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.8) !important;
    font-size: 1.2rem !important;
    animation-delay: 0.5s !important;
}

.sparkle.s4 {
    bottom: 0px !important;
    left: 10% !important;
    color: #FFD700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8) !important;
    font-size: 1.2rem !important;
    animation-delay: 2s !important;
}

@keyframes sparkle-float {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) translateY(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) translateY(-10px) rotate(180deg);
    }
}

/* Mobile Adjustments for Sparkles */
@media (max-width: 768px) {
    .sparkle {
        font-size: 1.1rem !important;
        animation: sparkle-float-mobile 2.5s ease-in-out infinite !important;
    }
    
    @keyframes sparkle-float-mobile {
        0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.8; }
        50% { transform: translate(5px, -8px) scale(1.2) rotate(15deg); opacity: 1; }
    }
    
    .sparkle.s1 { top: -5px !important; left: 15px !important; }
    .sparkle.s2 { bottom: -5px !important; right: 15px !important; }
    .sparkle.s3 { top: 10px !important; right: 25px !important; }
    .sparkle.s4 { bottom: 10px !important; left: 25px !important; }
}

/* === Unified Brand Typography === */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
