@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Primary Palette: Ungu */
    --high-ungu: #5D2A77;
    --semi-high-ungu: #8339A9;
    --medium-ungu: #A346D3;
    --semi-medium-ungu: #C678EF;
    --low-ungu: #E8BDFF;

    /* Secondary Palette: Soft Purple / Lavender */
    --soft-purple: #F5EFFF;
    --soft-purple-hover: #EBE0FF;
    --border-purple: #DBC4FF;

    /* Accent: Red (For critical CTA/Warnings) */
    --accent-red: #E63946;
    --accent-red-hover: #D62828;

    /* Neutrals */
    --high-gray: #3C3C3C;
    --medium-gray: #6B7280;
    --light-gray: #9CA3AF;
    --blacky: #000000;
    --putin: #F3F4F6;
    --buabu: #E5E7EB;

    /* Semantic Colors */
    --maroon5: var(--high-ungu);
    --burgundy: var(--semi-high-ungu);
    --accent-color: var(--high-ungu);
    --surface-color: #FFFFFF;
    --bg-color: #FAFAFA;
    --text-dark: #111827;
    --text-muted: #4B5563;

    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;

    /* Typography Scale */
    --font-xs: 1.2rem;
    --font-sm: 1.2rem;
    --font-base: 1.2rem;
    --font-lg: 1.2rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;

    /* Effects & Shadows */
    --shadow-soft: 0 4px 20px rgba(93, 42, 119, 0.08);
    --shadow-hover: 0 8px 30px rgba(93, 42, 119, 0.12);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Config */
    --nav-bg: rgba(255, 255, 255, 0.8);
    --transition-speed: 0.3s;
    --angle: 0deg;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/font/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

*,
*::before,
*::after {
    font-family: 'Montserrat', sans-serif !important;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    overflow-x: hidden;
}

.hero-wrapper {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: visible;
    display: flex;
    align-items: center;
    z-index: 1;
    background: transparent;
}

.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;
    width: 100%;
}

.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.2rem;
    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: 1.2rem;
    line-height: 1.5;
    color: #555;
    margin-top: 10px;
}

h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

h6 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--maroon5);
}

.button-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--high-ungu), var(--semi-high-ungu));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 42, 119, 0.4);
    text-align: center;
}

.button-hero:hover {
    background: linear-gradient(135deg, var(--semi-high-ungu), var(--medium-ungu));
    box-shadow: 0 6px 20px rgba(93, 42, 119, 0.6);
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 991.98px) {
    .hero-wrapper {
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .hero-card {
        padding: 30px 25px;
        border-radius: 18px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.2rem;
    }

    .hero-img {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-wrapper {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .hero-wrapper .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 1.2rem;
        margin-top: 12px;
        margin-bottom: 20px;
    }

    .hero-img {
        max-width: 100%;
    }

    .button-hero {
        padding: 14px 24px;
        font-size: 1.2rem;
        width: 100%;
    }

    .trust-container {
        margin-top: 16px !important;
        padding-top: 16px !important;
        gap: 12px !important;
    }
}

@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%;
    }
}