/* ===========================
   SOFTWARES GRID - MODERN SECTION
   =========================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.softwares-modern-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.softwares-modern-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.softwares-modern-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(229, 90, 43, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.softwares-modern-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Softwares Header */
.softwares-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 33.6px 50px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(229, 90, 43, 0.1) 100%);
    border-radius: 40px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-direction: column;
}

.softwares-title {
    font-size: 1.68rem;
    font-weight: 950;
    background: linear-gradient(135deg, #FF8C42 0%, #FFB347 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -2px;
    line-height: 1.05;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    text-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.3));
}

.softwares-title i {
    color: #FFB347;
    font-size: 1.68rem;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6));
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
}

.softwares-subtitle {
    font-size: 0.75rem;
    color: #e0e0e0;
    margin: 0 0 25px 0;
    line-height: 1.9;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.header-divider {
    width: 150px;
    height: 6px;
    background: linear-gradient(90deg, #FFB347 0%, #FF8C42 50%, #FF6B35 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5), 0 0 60px rgba(255, 107, 53, 0.3);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border: 3px solid #FF6B35;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 800;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    color: white;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.6), 0 12px 40px rgba(255, 107, 53, 0.3);
    border-color: #FFB347;
}

/* Software Carousel */
.softwares-carousel-wrapper {
    position: relative;
    padding: 15px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.softwares-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
}

font-size: 1.2rem;
}
}

@media (max-width: 768px) {
    .softwares-modern-section {
        padding: 45px 0 55px;
    }

    .softwares-header {
        margin-bottom: 50px;
        padding: 30px 15px;
        border-radius: 20px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .softwares-title {
        font-size: 2.2rem;
        gap: 15px;
    }

    .softwares-title i {
        font-size: 2.2rem;
    }

    .softwares-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .header-divider {
        width: 80px;
        height: 4px;
    }

    .carousel-controls {
        display: none;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .softwares-carousel-wrapper {
        padding: 12px 0;
        justify-content: center;
        align-items: center;
        overflow: visible;
        max-width: 100%;
    }

    .softwares-carousel {
        gap: 20px;
        padding: 0 9vw;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        overflow: visible;
        max-width: 100%;
        box-sizing: border-box;
    }

    .software-card {
        min-width: 82vw;
        max-width: 82vw;
        border-radius: 14px;
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .software-image {
        height: 160px;
    }

    .software-content {
        padding: 18px 16px;
    }

    .software-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .software-features p {
        font-size: 0.85rem;
        margin-bottom: 8px;
        gap: 8px;
    }

    .software-features i {
        font-size: 0.85rem;
    }

    .software-footer {
        padding: 14px 16px;
        gap: 10px;
    }

    .price-value {
        font-size: 1.25rem;
    }

    .price-value .currency {}
}

@media (max-width: 480px) {
    .softwares-modern-section {
        padding: 40px 0;
    }

    .softwares-header {
        margin-bottom: 35px;
        padding: 25px 12px;
        border-radius: 15px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .softwares-title {
        font-size: 1.6rem;
        gap: 10px;
        margin-bottom: 10px;
    }

    .softwares-title i {
        font-size: 1.6rem;
    }

    .softwares-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .header-divider {
        width: 70px;
        height: 3px;
    }

    .carousel-controls {
        width: 100%;
        justify-content: center;
        gap: 10px;
        margin-top: 25px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .softwares-carousel-wrapper {
        padding: 12px 0;
        justify-content: center;
        align-items: center;
        overflow: visible;
        max-width: 100%;
    }

    .softwares-carousel {
        gap: 16px;
        padding: 0 7.5vw;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        overflow: visible;
        max-width: 100%;
        box-sizing: border-box;
    }

    .software-card {
        min-width: 85vw;
        max-width: 85vw;
        border-radius: 12px;
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .software-image {
        height: 140px;
    }

    .software-content {
        padding: 14px 12px;
    }

    .software-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .software-tags .tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .software-features p {
        font-size: 0.8rem;
        margin-bottom: 6px;
        gap: 6px;
    }

    .software-features i {
        font-size: 0.8rem;
    }

    .software-footer {
        padding: 12px 12px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .software-price {
        width: 100%;
        text-align: left;
        margin-bottom: 8px;
    }

    .price-label {
        font-size: 0.65rem;
        margin-bottom: 2px;
    }

    .price-value {
        font-size: 1.1rem;
    }

    .hosting-packages-section {
        padding: 80px 0;
        background: #ffffff;
        position: relative;
    }

    .hosting-packages-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hosting-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .hosting-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 15px 0;
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }

    .hosting-title i {
        color: #FF6B35;
        font-size: 2.8rem;
    }

    .hosting-subtitle {
        font-size: 1rem;
        color: #666;
        margin: 0;
    }

    .hosting-packages-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        position: relative;
    }

    .hosting-card {
        background: white;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        padding: 30px 25px;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .hosting-card:hover {
        transform: translateY(-8px);
        border-color: #FF6B35;
        box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
    }

    .hosting-card.hosting-popular {
        border-color: #FF6B35;
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.12);
        transform: translateY(-8px);
    }

    .popular-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: #FF6B35;
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .package-name {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 15px 0;
        text-align: center;
    }

    .package-price {
        text-align: center;
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #f0f0f0;
    }

    .package-price .currency {
        font-size: 1rem;
        color: #FF6B35;
        font-weight: 600;
    }

    .package-price .amount {
        font-size: 2rem;
        font-weight: 800;
        color: #FF6B35;
        margin: 0 5px;
    }

    .package-price .period {
        font-size: 0.9rem;
        color: #666;
        font-weight: 600;
    }

    .package-features {
        flex: 1;
        margin-bottom: 25px;
    }

    .package-features p {
        font-size: 0.9rem;
        color: #555;
        margin: 0 0 12px 0;
        line-height: 1.6;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .package-features i {
        color: #FF6B35;
        font-size: 0.85rem;
        flex-shrink: 0;
        width: 16px;
    }

    .hosting-btn {
        width: 100%;
        padding: 12px 20px;
        background: #f5f5f5;
        color: #1a1a1a;
        border: 2px solid #f0f0f0;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hosting-btn:hover {
        border-color: #FF6B35;
        color: #FF6B35;
    }

    .hosting-btn-primary {
        background: #FF6B35;
        color: white;
        border-color: #FF6B35;
    }

    .hosting-btn-primary:hover {
        background: #E55A2B;
        border-color: #E55A2B;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hosting-packages-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .hosting-title {
            font-size: 2.2rem;
        }

        .package-price .amount {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 768px) {
        .hosting-packages-section {
            padding: 50px 0;
        }

        .hosting-header {
            margin-bottom: 35px;
        }

        .hosting-title {
            font-size: 1.8rem;
        }

        .hosting-packages-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .hosting-card {
            padding: 20px;
        }

        .package-name {
            font-size: 1.15rem;
        }

        .package-price .amount {
            font-size: 1.6rem;
        }

        .package-features p {
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .popular-badge {
            top: -12px;
            font-size: 0.7rem;
            padding: 5px 12px;
        }
    }

    @media (max-width: 480px) {
        .hosting-packages-section {
            padding: 40px 0;
        }

        .hosting-header {
            margin-bottom: 25px;
        }

        .hosting-title {
            font-size: 1.4rem;
            gap: 10px;
        }

        .hosting-title i {
            font-size: 1.4rem;
        }

        .hosting-subtitle {
            font-size: 0.9rem;
        }

        .hosting-card {
            padding: 15px;
        }

        .package-name {
            font-size: 1.05rem;
            margin-bottom: 12px;
        }

        .package-price {
            margin-bottom: 15px;
            padding-bottom: 15px;
        }

        .package-price .amount {
            font-size: 1.5rem;
        }

        .package-features p {
            font-size: 0.8rem;
            margin-bottom: 8px;
            gap: 8px;
        }

        .package-features i {
            font-size: 0.75rem;
        }

        .hosting-btn {
            padding: 10px 15px;
            font-size: 0.9rem;
        }

        .popular-badge {
            top: -10px;
            font-size: 0.65rem;
            padding: 4px 10px;
        }
    }