body {
    background-color: var(--color-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.form-wrapper {
    width: 100%;
    max-width: 640px;
    position: relative;
}

.form-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 48px;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--color-golden);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.form-container {
    position: relative;
    min-height: 360px;
}

.form-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.form-step.active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    position: relative;
}

.form-step.exit-up {
    opacity: 0;
    transform: translateY(-20px);
}

.form-step.exit-down {
    opacity: 0;
    transform: translateY(20px);
}

.form-back {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-secondary);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin-bottom: 24px;
    display: inline-block;
    transition: color 0.2s ease;
}

.form-back:hover {
    color: #FFFFFF;
}

.form-question {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-golden);
    line-height: 1.4;
    margin-bottom: 32px;
}

.form-required {
    color: #c0392b;
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-align: left;
    width: 100%;
    font-family: var(--font-secondary);
}

.form-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.form-option:focus {
    outline: 2px solid var(--color-golden);
    outline-offset: 2px;
}

.form-option.selected {
    background: rgba(175, 137, 63, 0.12);
    border-color: var(--color-golden);
}

.form-option-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1px;
}

.form-option.selected .form-option-letter {
    border-color: var(--color-golden);
    color: var(--color-golden);
}

.form-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1px;
}

.form-option.selected .form-option-icon {
    border-color: var(--color-golden);
    color: var(--color-golden);
}

.form-option-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    padding-top: 3px;
}

/* Step 1 tile layout */
.form-options--tiles {
    flex-direction: column;
    gap: 12px;
}

.form-option--tile {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 16px;
    width: 180px;
    max-width: 60%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    text-align: center;
}

.form-option--tile .form-option-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0;
}

.form-option--tile .form-option-text {
    padding-top: 0;
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 520px) {
    .form-options--tiles {
        flex-direction: row;
    }

    .form-option--tile {
        flex: 1;
        width: auto;
        max-width: none;
        margin: 0;
        padding: 36px 20px;
        gap: 16px;
    }

    .form-option--tile .form-option-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        border-radius: 14px;
        font-size: 28px;
    }

    .form-option--tile .form-option-text {
        font-size: 18px;
    }
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    position: relative;
}

.form-field input[type="text"],
.form-field input[type="email"] {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 15px;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus {
    border-color: var(--color-golden);
}

.form-phone-field {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: visible;
    position: relative;
    transition: border-color 0.2s ease;
}

.form-phone-field:focus-within {
    border-color: var(--color-golden);
}

.phone-country {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    user-select: none;
    white-space: nowrap;
}

.phone-country-code {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.phone-country-chevron {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    transform: translateY(-2px);
}

.phone-dial {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 4px;
}

.form-phone-field input[type="tel"] {
    flex: 1;
    padding: 16px 14px;
    background: transparent;
    border: none;
    font-family: var(--font-secondary);
    font-size: 15px;
    color: #FFFFFF;
    outline: none;
    min-width: 0;
}

.form-phone-field input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.phone-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #1a2a3a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    z-index: 50;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.phone-dropdown.open {
    display: block;
}

.phone-search {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #FFFFFF;
    outline: none;
}

.phone-search::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.phone-list {
    list-style: none;
    max-height: 220px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

.phone-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.15s ease;
}

.phone-list li:hover {
    background: rgba(255, 255, 255, 0.06);
}

.phone-list li.active {
    background: rgba(175, 137, 63, 0.2);
}

.phone-list li .phone-item-code {
    font-weight: 600;
    min-width: 30px;
}

.phone-list li .phone-item-name {
    flex: 1;
    margin-left: 10px;
}

.phone-list li .phone-item-dial {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.phone-list::-webkit-scrollbar {
    width: 4px;
}

.phone-list::-webkit-scrollbar-track {
    background: transparent;
}

.phone-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--color-golden);
    border: none;
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin-top: 8px;
}

.form-submit:hover {
    opacity: 0.9;
}

.form-submit:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-success {
    text-align: center;
    padding: 40px 0;
}

.form-success-title {
    font-family: var(--font-primary) !important;
    font-size: 28px !important;
    color: var(--color-golden) !important;
    margin-bottom: 16px !important;
}

.form-success p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-family: var(--font-secondary);
}

@media (min-width: 768px) {
    .form-question {
        font-size: 26px;
    }

    .form-option {
        padding: 20px 24px;
    }

    .form-option-text {
        font-size: 16px;
    }
}

/* COVER COMPONENT */
.cover-screen {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: top center;
    z-index: 10;
}

@media (min-width: 768px) {
    .cover-screen {
        position: fixed;
        inset: 0;
        min-height: auto;
        border-radius: 0;
        z-index: 100;
    }
}

.cover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 26, 50, 0.65);
}

.cover-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 28px;
    max-width: 520px;
}

.cover-content h1 {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 5vw, 2rem);
    font-weight: 400;
    color: var(--color-golden);
    line-height: 1.35;
    margin-bottom: 16px;
}

.cover-content p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cover-cta {
    display: inline-block;
    padding: 14px 40px;
    background: var(--color-golden);
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.cover-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}