* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #050507;
    color: white;
    overflow-x: hidden;
}


/* CONTAINER */

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}


/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 40px 0;

    background:
    radial-gradient(circle at top, #2563eb55, transparent 40%),
    radial-gradient(circle at bottom, #8b5cf655, transparent 40%);
}


.logo {

    font-size: 90px;
    font-weight: 900;
    letter-spacing: -5px;

    background: linear-gradient(
        90deg,
        white,
        #60a5fa
    );

    -webkit-background-clip: text;
    color: transparent;

}



.free {

    margin-top: 10px;

    font-size: 65px;
    font-weight: 900;

    background: linear-gradient(
        90deg,
        #22c55e,
        #06b6d4,
        #8b5cf6
    );

    -webkit-background-clip: text;
    color: transparent;

    animation: pulse 2s infinite;

}


@keyframes pulse {

    50% {
        transform: scale(1.05);
    }

}



.hero h2 {

    font-size: 45px;
    margin-top: 25px;

}


.hero p {

    color: #cfcfcf;
    font-size: 20px;
    max-width: 650px;
    margin: 20px auto;
    line-height: 1.6;

}



/* FORM */

.form-card {

    margin: 40px auto;
    max-width: 600px;

    padding: 35px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 25px;

    backdrop-filter: blur(10px);

}



input,
textarea {

    width: 100%;

    padding: 17px;

    margin: 10px 0;

    border-radius: 15px;

    border: none;

    outline: none;

    background: #18181b;

    color: white;

    font-size: 16px;

}



textarea {

    resize: none;

}



button {

    width: 100%;

    padding: 18px;

    margin-top: 15px;

    border: none;

    border-radius: 15px;

    background: linear-gradient(
        90deg,
        #22c55e,
        #06b6d4
    );

    color:white;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;

}



button:hover {

    transform: scale(1.05);

}



/* SUCCESS MESSAGE */


#success-message {

    margin-top:20px;

    color:#22c55e;

    font-weight:bold;

}



/* SECTIONS */


.features,
.about,
.steps {

    padding:90px 0;

    text-align:center;

}



.features h2,
.about h2,
.steps h2 {

    font-size:40px;

    margin-bottom:40px;

}



/* CARDS */


.cards {

    display:grid;

    grid-template-columns:repeat(
        auto-fit,
        minmax(250px,1fr)
    );

    gap:25px;

}



.card,
.about-card {


    background:#111;

    padding:35px;

    border-radius:25px;

    border:1px solid #222;

    transition:0.3s;

}



.card:hover {

    transform:translateY(-10px);

    border-color:#60a5fa;

}



.card h3 {

    font-size:25px;

    margin-bottom:15px;

}



.card p,
.about-card p {

    color:#bbb;

    line-height:1.6;

}



/* FOOTER */


footer {

    padding:40px 0;

    text-align:center;

    color:#777;

    border-top:1px solid #222;

}



/* MOBILE */


@media(max-width:700px){


.logo {

    font-size:55px;

}


.free {

    font-size:40px;

}


.hero h2 {

    font-size:32px;

}


.hero p {

    font-size:17px;

}


.form-card {

    padding:20px;

}


.features h2,
.about h2,
.steps h2 {

    font-size:30px;

}


}