/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    padding: var(--space-md) 0 0;
    overflow: hidden;
    background-color: var(--color-white);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: 450px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
}

.hero__title {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-extrabold);
    line-height: 1.4;
    color: var(--color-dark);
}

.hero__text {
    font-size: var(--fs-base);
    color: #555;
    line-height: 1.7;
    max-width: 520px;
}

.hero__content .btn {
    margin-top: var(--space-sm);
}

.hero__content .btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

/* Hero Image */
.hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

/* Wave Divider */
.hero__wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: var(--space-3xl);
}

.hero__wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Elementor Premium Shape Divider Animation Match */
.hero__wave svg {
    width: 100%;
    height: auto;
    display: block;
    transform-origin: 100% 0;
    transform: scale(2);
    animation: pa-shape-divider-anime-bottom 10s infinite alternate linear;
}

@keyframes pa-shape-divider-anime-bottom {
    100% {
        transform: scale(1) translateX(0);
    }
}
