/* Amex × Isracard prelander — цвета лого: Amex #006FCF, Isracard #000 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #fff;
    color: #000;
    direction: rtl;
    text-align: right;
    min-height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.prelander-amex {
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 50%, #fff 100%);
}

.prelander-container {
    width: 100%;
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
}

.prelander-header {
    text-align: center;
    width: 100%;
    flex-shrink: 0;
}

.prelander-header--logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
}

.prelander-logo {
    max-width: 300px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.prelander-logo--amex {
    max-width: 140px;
    height: auto;
}

.prelander-logo--isra {
    max-width: 140px;
    height: auto;
}

.prelander-logos-x {
    font-size: 24px;
    font-weight: 700;
    color: #006FCF;
    line-height: 1;
}

.prelander-card {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 111, 207, 0.12);
    overflow: hidden;
    border: 1px solid rgba(0, 111, 207, 0.15);
}

.prelander-creo {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.prelander-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.2s ease;
    letter-spacing: 0.02em;
}

.prelander-cta:active {
    transform: scale(0.98);
}

.prelander-cta--leumi {
    background: linear-gradient(180deg, #0078c1 0%, #005a94 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 90, 148, 0.35);
}

.prelander-cta--isra {
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.prelander-cta--amex {
    background: linear-gradient(180deg, #006fcf 0%, #004c8c 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 111, 207, 0.35);
}
