* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(180deg, #190f1e 0%, #0b002b 50%, #0a0a0a 100%);
    color: #ffffff;
    padding: 1rem;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.left-section {
    display: flex;
    flex-direction: column;
}

.main-title {
    position: relative;
    margin-bottom: 25px;
    z-index: 100;
}

.hero {
    margin-top: -50px;
    margin-bottom: -50px;
    position: relative;
    z-index: 50;
    }
.hero-illustration {
    width: 100%;
    -webkit-mask: radial-gradient(65% 70% at 50% 50%, #fff 28%, hsla(0, 0%, 100%, 0) 70%);
    mask: radial-gradient(65% 70% at 50% 50%, #fff 28%, hsla(0, 0%, 100%, 0) 70%);
}


.content-wrapper {
    background-image: linear-gradient(180deg, transparent, #37286b30);
    padding: 25px;
    border-radius: 25px;
    margin-top: -18%;
    max-width: 1400px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgb(0 0 0 / 42%), inset 0 0 1px 1px #f7ebfd1c;
    position:relative;
    z-index:50;
}

.form-element {
    width: 100%;
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: 
        radial-gradient(circle at 30% 140%, rgba(235, 63, 74, 0.15), transparent 37%),
        radial-gradient(circle at 50% 310%, rgba(145, 47, 182, 0.1), transparent 78%),
        linear-gradient(transparent, rgba(13, 10, 25, 0.37)),
        radial-gradient(circle at 50% -30%, rgba(235, 63, 74, 0.1), transparent),
        radial-gradient(90% 10% at 50% 0, rgba(235, 63, 74, 0.05), transparent 90%);
    border: 1px solid rgba(235, 63, 74, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-element p {margin-bottom: 1rem;}

.hs-form-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 60%, rgba(235, 63, 74, 0.15) 0%, transparent 40%), 
        radial-gradient(circle at 80% 30%, rgba(145, 47, 182, 0.1) 0%, transparent 20%), 
        radial-gradient(circle at 40% 40%, rgba(235, 63, 74, 0.08) 0%, transparent 50%);
    border-radius: 20px;
    z-index: -1;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 25px 0;
}

.content-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 300;
    margin: 25px 0;
}

.content-block:last-child .content-description {margin-bottom:0;}

.highlight-free {
    font-weight: 700;
}

.right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo img {
    max-width: 350px;
    width: 75%;
    margin: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #eb3f4a, #912fb6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.qr-code::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, #000000 0px, #000000 8px, #ffffff 8px, #ffffff 16px),
        repeating-linear-gradient(90deg, #000000 0px, #000000 8px, #ffffff 8px, #ffffff 16px);
    opacity: 0.8;
}

.qr-code::after {
    content: 'QR';
    position: absolute;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .content-wrapper {
    margin-top: -13%;
}

    .right-section {
        order: 1;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .content-title {
        font-size: 1.25rem;
    }

    .content-description {
        font-size: 1rem;
    }
}
