/* INFOSYNC portal choice screen */
.infosync-portal-body {
    margin: 0;
    min-height: 100vh;
    background: #f7f9fc;
    font-family: "DM Sans", sans-serif;
    color: #1a1a1a;
}

.infosync-portal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.infosync-portal-inner {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.infosync-brand {
    margin-bottom: 28px;
}

.infosync-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.infosync-logo-mark {
    display: inline-block;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #1a2f6b;
    line-height: 1.1;
}

.infosync-o-wrap {
    position: relative;
    display: inline-block;
}

.infosync-power {
    position: absolute;
    left: 50%;
    top: -14px;
    transform: translateX(-50%);
}

.infosync-tagline {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #2aa8b8;
    text-transform: uppercase;
}

.infosync-heading {
    margin: 0 0 32px;
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.infosync-cards-wrap {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(16, 68, 120, 0.08);
    padding: 28px;
}

.infosync-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.infosync-card {
    flex: 1 1 280px;
    max-width: 360px;
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 12px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.infosync-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f1fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.infosync-card-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #1a2f6b;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.infosync-card h2 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.infosync-card p {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.45;
    color: #6b7280;
    min-height: 40px;
}

.infosync-btn {
    display: inline-block;
    width: 100%;
    max-width: 220px;
    padding: 12px 18px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
    cursor: pointer;
    transition: opacity 0.15s ease, box-shadow 0.15s ease;
}

.infosync-btn:hover,
.infosync-btn:focus {
    opacity: 0.92;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(26, 47, 107, 0.2);
}

.infosync-btn-primary {
    background: #1a2f6b;
}

.infosync-btn-secondary {
    background: #3b82c4;
}

.infosync-btn.is-disabled,
.infosync-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

@media (max-width: 640px) {
    .infosync-logo-mark {
        font-size: 34px;
    }

    .infosync-heading {
        font-size: 24px;
    }

    .infosync-cards-wrap {
        padding: 16px;
    }
}
