/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2845 100%);
    padding: 130px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(173, 203, 67, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(173, 203, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-logo i {
    font-size: 40px;
    color: var(--secondary-color);
}

.hero-logo span {
    font-size: 24px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.hero-logo span small {
    font-weight: 400;
    color: var(--secondary-color);
    font-size: 14px;
    display: block;
}

.hero-nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.hero-nav a:hover {
    color: white;
    background: rgba(173, 203, 67, 0.1);
}

.hero-nav .nav-cta {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.hero-nav .nav-cta:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-text {
    max-width: 700px;
}

.hero-text .badge {
    display: inline-block;
    background: rgba(173, 203, 67, 0.15);
    color: var(--secondary-color);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(173, 203, 67, 0.2);
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-text h1 span {
    color: var(--secondary-color);
    position: relative;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 500px;
}

/* Products Section */
.products-section {
    max-width: 1300px;
    margin: -50px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Product Card - New Design */
.product-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 30px 80px rgba(31, 30, 48, 0.15);
}

.card-header {
    padding: 30px 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.product-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.icon-academy {
    background: linear-gradient(135deg, rgba(31, 30, 48, 0.1), rgba(31, 30, 48, 0.05));
    color: var(--primary-color);
}

.icon-project {
    background: linear-gradient(135deg, rgba(173, 203, 67, 0.2), rgba(173, 203, 67, 0.1));
    color: var(--secondary-color);
}

.icon-council {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
    color: var(--accent-color);
}

.icon-advance {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
    color: var(--success-color);
}

.card-badge-new {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-new-academy {
    background: rgba(31, 30, 48, 0.08);
    color: var(--primary-color);
}

.badge-new-project {
    background: rgba(173, 203, 67, 0.15);
    color: var(--text-secondary);
}

.badge-new-council {
    background: rgba(231, 76, 60, 0.08);
    color: var(--accent-color);
}

.badge-new-advance {
    background: rgba(39, 174, 96, 0.08);
    color: var(--success-color);
}

.card-body {
    padding: 20px 28px 28px;
}

.card-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.card-body .product-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.card-features .feature-item {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 10px !important;
}

.card-features .feature-item i {
    color: var(--secondary-color);
    font-size: 12px;
    width: 16px;
    flex-shrink: 0;
}

.card-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-tag .currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
}

.price-tag .amount {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-tag .period {
    font-size: 13px;
    color: var(--text-grey);
    font-weight: 400;
    margin-left: 2px;
}

.btn-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-new-primary {
    background: var(--primary-color);
    color: white;
}

.btn-new-primary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateX(4px);
}

.btn-new-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-new-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

.btn-new-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-new-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

.btn-new-success {
    background: var(--success-color);
    color: white;
}

.btn-new-success:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Featured Card Special */
.product-card.featured-new {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(145deg, #ffffff 0%, #fafff0 100%);
}

.product-card.featured-new .featured-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 4px 40px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(173, 203, 67, 0.3);
}

/* Stats Section */
.stats-section {
    max-width: 1300px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-item .stat-number span {
    color: var(--secondary-color);
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px 80px;
    }

    .hero-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-nav {
        flex-wrap: wrap;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .product-card.featured-new .featured-ribbon {
        top: 16px;
        right: -35px;
        font-size: 10px;
        padding: 3px 35px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
        gap: 20px;
    }

    .stat-item .stat-number {
        font-size: 30px;
    }

    .card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-new {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}