﻿body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f8fafc;
}

/* ===========================
   CONTAINER
=========================== */

.eval-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}


/* ===========================
   HERO
=========================== */

.hero {
    text-align: center;
    padding: 80px 30px;
    border-radius: 25px;
    color: white;
    background: linear-gradient(135deg,#7f1d1d 0%,#ef4444 50%,#7f1d1d 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    margin-bottom: 50px;
}

    .hero h1 {
        font-size: 55px;
        margin-bottom: 20px;
    }

    .hero p {
        max-width: 750px;
        margin: auto;
        font-size: 20px;
        line-height: 1.7;
    }


/* ===========================
   GRID
=========================== */

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


/* ===========================
   CARDS
=========================== */

.form-card,
.info-card {
    background: white;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .form-card h2,
    .info-card h2 {
        text-align: center;
        margin-top: 0;
        margin-bottom: 30px;
        font-size: 34px;
        background: linear-gradient(135deg,#7f1d1d,#ef4444);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }


/* ===========================
   FORM
=========================== */

label {
    display: block;
    margin-top: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}

input,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 16px;
    box-sizing: border-box;
    transition: .3s;
    background: white;
}

    input:focus,
    select:focus {
        outline: none;
        border-color: #ef4444;
        box-shadow: 0 0 0 4px rgba(239,68,68,.15);
    }


/* ===========================
   BUTTON
=========================== */

button {
    width: 100%;
    margin-top: 30px;
    padding: 16px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg,#7f1d1d,#ef4444);
    color: white;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

    button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(127,29,29,.35);
    }


/* ===========================
   INFO STEPS
=========================== */

.step {
    padding: 22px;
    margin-bottom: 18px;
    background: #f8fafc;
    border-radius: 18px;
    transition: .3s;
}

    .step:hover {
        transform: translateY(-5px);
    }

    .step h3 {
        margin-top: 0;
        margin-bottom: 12px;
        background: linear-gradient(135deg,#7f1d1d,#ef4444);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 24px;
    }

    .step p {
        margin: 0;
        color: #475569;
        line-height: 1.7;
    }

.highlight {
    background: #fff5f5;
    border-left: 5px solid #ef4444;
}


/* ===========================
   CTA
=========================== */

.cta {
    margin-top: 60px;
    text-align: center;
    padding: 60px 30px;
    border-radius: 25px;
    color: white;
    background: linear-gradient(135deg,#7f1d1d,#ef4444);
}

    .cta h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .cta p {
        font-size: 18px;
        color: #ffe4e6;
        max-width: 700px;
        margin: auto;
    }


/* ===========================
   CTA BUTTONS
=========================== */

.btn {
    display: inline-block;
    margin: 25px 10px 0;
    padding: 15px 35px;
    background: white;
    color: #7f1d1d;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

    .btn:hover {
        transform: translateY(-3px);
    }

    .btn.secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }


/* ===========================
   MOBILE
=========================== */

@media (max-width:768px) {

    .hero {
        padding: 60px 25px;
    }

        .hero h1 {
            font-size: 36px;
        }

        .hero p {
            font-size: 18px;
        }

    .grid {
        grid-template-columns: 1fr;
    }

    .form-card,
    .info-card {
        padding: 25px;
    }

    .cta {
        padding: 45px 25px;
    }

        .cta h2 {
            font-size: 32px;
        }

    .btn {
        display: block;
        margin: 15px auto 0;
        width: fit-content;
    }
}
