/* QR Landing - QuickFix UAE */

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #123c7a, #020814);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.page-wrapper {
    width: 100%;
    max-width: 460px;
}

.card {
    background: rgba(5, 14, 40, 0.92);
    border-radius: 24px;
    padding: 24px 20px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(14px);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.logo {
    max-width: 240px;
    height: auto;
}

.title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.subtitle {
    font-size: 14px;
    color: #d0d7ff;
    margin-bottom: 14px;
}

.quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 18px;
}

.quick-info span {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(11, 150, 238, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.form-section {
    text-align: left;
    margin-bottom: 18px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 12px 12px 10px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
}

.form-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    font-size: 11px;
    margin-bottom: 3px;
    color: #c7d2ff;
}

.field input,
.field select {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 13, 30, 0.9);
    padding: 7px 10px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
}

.field input::placeholder {
    color: #6b7280;
}

.field input:focus,
.field select:focus {
    border-color: #0f9bff;
    box-shadow: 0 0 0 1px rgba(15, 155, 255, 0.6);
}

.form-note {
    font-size: 11px;
    color: #9fa8ff;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.18s ease-out;
}

.btn-primary {
    background: linear-gradient(135deg, #0f9bff, #0050ff);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 80, 255, 0.55);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(0, 80, 255, 0.7);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.btn-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.store-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.store-link {
    text-decoration: none;
}

.store-badge {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 11px;
    min-width: 150px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.store-badge strong {
    display: block;
    font-size: 13px;
    margin-top: 2px;
}

.store-badge.apple {
    background: linear-gradient(135deg, #111111, #2b2b2b);
}

.store-badge.google {
    background: linear-gradient(135deg, #0f9b0f, #006d1b);
}

.footnote {
    font-size: 11px;
    color: #c0c7ff;
    margin-top: 4px;
    line-height: 1.4;
}

.footer {
    text-align: center;
    margin-top: 12px;
    font-size: 11px;
    color: #9fa8ff;
    opacity: 0.9;
}

/* Small screens */
@media (max-width: 480px) {
    .card {
        padding: 20px 16px 18px;
    }

    .title {
        font-size: 22px;
    }

    .subtitle {
        font-size: 13px;
    }
}
