/* Reset i główny motyw dla lejka sprzedażowego */
.oriflame-landing {
    font-family: 'Montserrat', sans-serif;
    background-color: #fcfcfc;
    color: #333;
    line-height: 1.6;
    padding-bottom: 50px;
}

/* Layout struktury (Mobile-First do CSS Grid/Flexbox) */
.landing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1150px;
    margin: 0 auto;
    padding: 50px 20px;
}

@media(min-width: 900px) {
    .landing-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 4rem;
    }
}

/* ==== SEKCJA 1: LEWA KOLUMNA (KARTA FORMULARZA) ==== */
.form-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    order: 1;
    /* Mobile-first: na samej górze */
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 15px;
    color: #6b7280;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 18px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus {
    border-color: #ec4899;
    /* Markowy róż w stylu Oriflame */
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    accent-color: #ec4899;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 13px;
    color: #4b5563;
    cursor: pointer;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    background-color: #ec4899;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s;
}

.submit-btn:hover {
    background-color: #be185d;
}

.submit-btn:active {
    transform: translateY(2px);
}

/* ==== SEKCJA 2: PRAWA KOLUMNA (OPIS KORZYŚCI) ==== */
.benefits-column {
    order: 2;
    /* Mobile-first: pod formularzem */
}

.benefits-header {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 30px;
    line-height: 1.4;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.benefits-list li {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 25px;
    gap: 15px;
}

.icon-box {
    background-color: #fdf2f8;
    /* Jasnoróżowe tło pod ikonę */
    color: #ec4899;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 15px;
    color: #4b5563;
    padding: 0;
    margin: 0;
}

.benefit-link {
    color: #ec4899;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

.benefit-link:hover {
    color: #be185d;
}

.benefits-highlight {
    background-color: #f8fafc;
    padding: 20px;
    border-left: 4px solid #ec4899;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    border-radius: 0 8px 8px 0;
}

/* UX: Komunikaty i Powiadomienia */
.alert-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
}

.alert-error ul {
    margin: 8px 0 0 20px;
    padding: 0;
}

.alert-success {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    order: 1;
    /* Zastępuje formularz na tym samym miejscu */
}

.alert-success i {
    font-size: 64px;
    color: #22c55e;
    margin-bottom: 15px;
}

.alert-success h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.alert-success p {
    font-size: 15px;
    line-height: 1.6;
}

.highlight-icon-info {
    color: #ec4899;
    margin-right: 8px;
}

/* --- SUCCESS MODAL CLIENT --- */
/* Overlay tła pod modal */
.client-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Płynne wejście */
    animation: fadeInOverlayClient 0.3s ease-out forwards;
}

/* Kontener modala */
.client-modal-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    /* Animacja wyjazdu modala z dołu */
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpModalClient 0.4s ease-out 0.1s forwards;
}

/* Zamknięcie (X) w narożniku */
.client-modal-close-x {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
}

.client-modal-close-x:hover {
    color: #1e293b;
}

/* Nagłówek i Ikona */
.client-modal-icon i {
    font-size: 70px;
    color: #22c55e;
    /* Standardowa zieleń sukcesu, inna niż brand różu */
    margin-bottom: 20px;
}

.client-modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.client-modal-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

/* Przycisk zamknięcia - używamy brandowego różu Oriflame */
.client-modal-close-btn {
    width: 100%;
    background-color: #ec4899;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
}

.client-modal-close-btn:hover {
    background-color: #be185d;
}

.client-modal-close-btn:active {
    transform: translateY(2px);
}

/* Definicje animacji (Keyframes) */
@keyframes fadeInOverlayClient {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUpModalClient {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}