/* Mobile-only prelander */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(165deg, #e8f5e9 0%, #f1f8e9 50%, #fff 100%);
    color: #1a1a1a;
    direction: rtl;
    text-align: right;
    min-height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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-logo {
    max-width: 300px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

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

.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);
}
