/* Hero Block Styles */
.pmk-hero-block {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
}

.pmk-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.pmk-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.pmk-hero-content {
    position: relative;
    z-index: 2;
}

.pmk-hero-text {
    max-width: 700px;
}

.pmk-hero-bracket {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.pmk-bracket-line {
    position: absolute;
    left: 0;
    top: -20px;
    width: 120px;
    height: 150px;
    border-left: 8px solid var(--pmk-primary);
    border-top: 8px solid var(--pmk-primary);
}

.pmk-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--pmk-white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.pmk-hero-subtitle {
    font-size: 18px;
    color: var(--pmk-white);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 550px;
}

/* Hero Cards */
.pmk-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.pmk-hero-card {
    background-color: var(--pmk-gray-50);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pmk-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pmk-hero-card-icon {
    margin-bottom: 15px;
}

.pmk-hero-card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--pmk-primary);
}

.pmk-hero-card-title {
    color: var(--pmk-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    flex-grow: 1;
}

.pmk-hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.pmk-hero-card-subtitle {
    color: var(--pmk-gray-600);
    font-size: 14px;
}

.pmk-hero-card-link {
    color: var(--pmk-primary);
}

.pmk-hero-card-link svg {
    width: 20px;
    height: 20px;
}

/* Scroll Arrow */
.pmk-scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: pmk-bounce 2s infinite;
}

.pmk-arrow-icon {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 3px solid var(--pmk-white);
    border-bottom: 3px solid var(--pmk-white);
    transform: rotate(45deg);
}

@keyframes pmk-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .pmk-hero-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pmk-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .pmk-hero-cards {
        grid-template-columns: 1fr;
    }

    .pmk-hero-title {
        font-size: 36px;
    }

    .pmk-hero-block {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .pmk-bracket-line {
        width: 80px;
        height: 100px;
    }
}
