.pack-hero {
    padding:  50px 0;
    background:  #f6f7f9;
}

.pack-hero .container {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT */
.hero-badge {
    background: #eaf3f8;
    padding:  8px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #ff6a00;
    border-radius: 50%;
    margin-right: 8px;
}

.hero-left h1 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left h1 span {
    color: #ff6a00;
}

.hero-desc {
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 25px;
}

.btn-primary {
    background: #ff6a00;
    color: white;
    padding: 16px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: white;
    color: #ff6a00;
}

.btn-outline {
    border: 2px solid #2c7db3;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    color: #2c7db3;
    font-weight: 600;
}

.hero-features {
    display: flex;
    gap: 30px;
    color: #666;
    font-size: 14px;
}

/* RIGHT */
.product-card {
    background: linear-gradient(135deg,#0f5d7a,#2da3c7);
    color: white;
    border-radius: 20px;
    padding: 30px;
    height: 320px;
    position: relative;
}

.tags {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.tag {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.tag.orange {background: #ff6a00;}
.tag.blue {background: #3b82f6;}
.tag.green {background: #22c55e;}

.product-content {
    text-align: center;
    margin-top: 80px;
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .pack-hero .container {
        grid-template-columns: 1fr;
    }
}

.hero-right.swiper .product-card .product-content h3 {
    color: #FFF;
}