:root {
    /* Primary Palette: Ungu */
    --high-ungu: #5D2A77;
    --semi-high-ungu: #8339A9;
    --medium-ungu: #A346D3;
    --semi-medium-ungu: #C678EF;
    --low-ungu: #E8BDFF;

    /* Secondary Palette: Oren */
    --high-oren: #F7941D;
    --semi-high-oren: #FEAC4A;
    --medium-oren: #FFC989;
    --semi-medium-oren: #FFE1BE;
    --low-oren: #FFF0DD;

    /* Neutrals */
    --high-gray: #3C3C3C;
    --medium-gray: #A6A6A6;
    --blacky: #000000;
    --putin: #F1F1F1;
    --buabu: #E3E5E8;

    /* Aliases */
    --maroon5: var(--high-ungu);
    --burgundy: var(--semi-high-ungu);
    --accent-color: var(--high-ungu);

    /* Config */
    --nav-bg: rgba(255, 255, 255, 0.8);
    --text-dark: #131313;
    --transition-speed: 0.4s;
    --angle: 0deg;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@font-face {
    font-family: Montserrat !important;
    src: url(../assets/font/Montserrat-Regular.ttf)
}

body {
    font-family: Montserrat !important;
}

.hero-wrapper {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
    background: #ffffff;
}

.hero-wrapper::before,
.hero-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: orbsAnimation 10s infinite alternate ease-in-out;
}

.hero-wrapper::before {
    width: 400px;
    height: 400px;
    background: rgba(163, 70, 211, 0.15);
    top: -50px;
    left: -100px;
}

.hero-wrapper::after {
    width: 450px;
    height: 450px;
    background: rgba(247, 148, 29, 0.10);
    bottom: -100px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes orbsAnimation {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.hero-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.04),
        0 5px 15px rgba(0, 0, 0, 0.02);
    z-index: 10;
    position: relative;
    color: #1f2937;
}

.hero-title {
    color: #111827;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.hero-text {
    color: #4b5563;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 35px;
}

.hero-img {
    max-width: 400px;
    height: auto;
}

.clrh {
    color: var(--maroon5);
}

.txtdcr {
    text-decoration: none !important;
    color: inherit;
}

.szf {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin-top: 10px;
}

h3 {
    font-family: Montserrat !important;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

h6 {
    font-family: Montserrat !important;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--maroon5);
}

.button-hero {
    background: linear-gradient(135deg, var(--maroon5), var(--burgundy));
    color: white;
    border: none;
    border-radius: 8px;
    height: 55px;
    width: 160px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(93, 42, 119, 0.4);
}

.button-hero:hover {
    background: linear-gradient(135deg, var(--burgundy), var(--medium-ungu));
    box-shadow: 0 6px 20px rgba(93, 42, 119, 0.6);
    transform: translateY(-2px);
}

@media (max-width: 575.98px) {
    .hero-card {
        padding: 25px;
        border-radius: 16px;
    }

    .hero-img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    form .half {
        flex-direction: column;
    }

    form .half .item {
        width: 100%;
    }

    form .action {
        display: flex;
        flex-direction: column;
    }

    form .action input {
        margin-bottom: 10px;
        width: 100%;
    }
}