body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f7f7f7;
}

.header {
    background: linear-gradient(180deg, #ffffff, #f7f9fc);
    padding: 12px 30px;
    border-bottom: 1px solid #eee;

    display: flex;
    justify-content: center;
    /* centers horizontally */
    align-items: center;
    /* centers vertically */
}

.logo {
    height: 65px;
}

/* PROGRESS */
.progress-bar {
    height: 6px;
    background: #eee;
}

#progress {
    height: 100%;
    width: 0%;
    background: #c8a95b;
    transition: 0.3s;
}

/* QUESTION */
.question {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin: 30px 20px;
}

/* CARD GRID */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
}

.card-option {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid #eee;
    cursor: pointer;
    transition: 0.2s;
}

.card-option:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.label {
    font-weight: 600;
}

/* LIST */
.list-options {
    padding: 20px;
}

.list-option {
    background: #fff;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.list-option:hover {
    border-color: #c8a95b;
}

.radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
}

/* PHONE */
.phone-input {
    width: 90%;
    margin: 20px auto;
    display: block;
    padding: 15px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.cta-btn {
    width: 90%;
    margin: 20px auto;
    display: block;
    padding: 18px;
    font-size: 18px;
    background: #c8a95b;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.cta-btn:hover {
    opacity: 0.9;
}

/* FINAL */
.final {
    text-align: center;
    padding: 30px;
}

.final h2 {
    font-size: 26px;
}