/* ===== HERO (Matching Home Style) ===== */
.hero.pro-hero-v2 {
    background: transparent;
    padding: 28px 0;
}

.hero.pro-hero-v2 .hero-inner {
    background: linear-gradient(105deg, #7b3a1e 0%, #4a1f5c 45%, #1a1a50 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Decoration matching home page */
.hero.pro-hero-v2 .hero-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 170, 49, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero.pro-hero-v2 .hero-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(2, 170, 49, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero.pro-hero-v2 .hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero.pro-hero-v2 .hero-content {
    padding: 60px 48px;
}

.hero.pro-hero-v2 h1 {
    font-size: 46px;
    font-weight: 500;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero.pro-hero-v2 h1 span {
    color: var(--primary);
}

.hero.pro-hero-v2 .hero-desc {
    color: rgba(255, 255, 255, 1);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 580px;
}

.hero-image-wrap {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-image-wrap img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
    mask-image: linear-gradient(to left, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 80%, transparent 100%);
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: #02aa31;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(2, 170, 49, 0.8);
}

@media (max-width: 768px) {
    .hero.pro-hero-v2 {
        padding: 0;
    }
    .hero.pro-hero-v2 .hero-inner {
        border-radius: 0;
    }
    .hero.pro-hero-v2 .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero.pro-hero-v2 .hero-content {
        padding: 40px 20px;
        text-align: center;
    }
    .hero.pro-hero-v2 h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    .hero.pro-hero-v2 .hero-desc {
        font-size: 14px;
        margin: 0 auto;
    }
    .hero-image-wrap {
        display: none;
    }
}

/* Category Grid */
.pro-categories {
    padding: 40px 0;
    background: #fff;
}

.pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pro-card {
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    text-decoration: none;
}

.pro-card:hover {
    cursor: pointer;
}

.pro-card:hover span {
    text-decoration: underline;
}

.chip-icon {
    width: 84px;
    height: 84px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
}

.pro-card span {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
}

.pro-card.dark-card {
    background: var(--secondary);
    justify-content: center;
    border-color: var(--secondary);
}

.pro-card.dark-card span {
    color: #fff;
    line-height: 1.5;
}

.pro-card.dark-card span b {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .pro-grid { grid-template-columns: repeat(3, 1fr); }
    .pro-hero-content h1 { font-size: 36px; }
}

@media (max-width: 768px) {
    .pro-hero .container { flex-direction: column; text-align: center; }
    .pro-hero-image { text-align: center; order: -1; }
    .pro-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .pro-grid { grid-template-columns: 1fr; }
    .pro-hero { padding: 42px 0 28px; }
}
