

/* GÅ‚Ã³wny kontener kalkulatora */
.pricing-calculator-wrapper {
background: transparent !important; /* Usuwamy ciemne tło */
    border: none !important;           /* Usuwamy ramkę */
    box-shadow: none !important;       /* Usuwamy cień */
    max-width: 1200px;
    margin: 20px auto;
    padding: 0;
    color: #fff;
    overflow: visible !important;
}

/* ==================== WSKAŹNIK KROKÓW ==================== */
.pricing-progress-indicator {
display: flex;
    justify-content: space-between;
    margin-bottom: 30px;               /* Odstęp od nagłówka H3 */
    gap: 8px;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 10px 5px;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 3px solid #333;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    cursor: pointer;
}

.progress-step:hover {
    color: #0073aa; /* lub Twój główny kolor */
}

.progress-step.active {
    border-bottom-color: #0073aa;
    color: #0073aa;
    font-weight: 600;
}

.progress-step.completed {
    border-bottom-color: #28a745;
    color: #28a745;
}

.progress-step.completed:hover {
    color: #0073aa; /* lub Twój główny kolor */
}

/* ==================== LAYOUT DWU-KOLUMNOWY ==================== */
.pricing-main-content {
display: flex;
    gap: 30px;                         /* Wyraźna przerwa między oknami */
    align-items: stretch;
}

.pricing-steps-column {
flex: 1;
    min-width: 0;
    background: #1c1c1c;               /* Tutaj dajemy tło */
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #353535;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pricing-summary-column {
    width: 320px;
    flex-shrink: 0;
}

/* ==================== PODSUMOWANIE (STICKY) ==================== */
.pricing-summary-box {
background: #1c1c1c;               /* Możesz zmienić na #1e1e1e dla spójności */
    padding: 25px;
    border-radius: 15px;               /* Zwiększyłem promień dla spójności */
    border: 1px solid #353535;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pricing-summary-box h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #444;
    padding-bottom: 15px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ccc;
}

.summary-line.highlightgf {
    font-size: 16px;
    font-weight: bold;
    color: #ffba65;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 2px solid #444;
}

.summary-line strong {
    color: #ffba65;
}

.summary-divider {
    height: 2px;
    background: #444;
    margin: 15px 0;
}

.summary-included {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.summary-included h4 {
    font-size: 14px;
    color: #28a745;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Wymuszenie usunięcia kropek motywu */
.summary-included ul {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.summary-included li {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 20px !important; /* Więcej miejsca na ptaszka */
    position: relative;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    color: #d1d1d1 !important;
}

/* Styl ptaszka (checkmark) */
.summary-included li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.summary-note {
    font-size: 11px;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
    font-style: italic;
}

/* ==================== KONTENER KROKÓW ==================== */
.pricing-steps {
    position: relative;
}

/* Pojedynczy krok - domyÅ›lnie ukryty */
.pricing-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.pricing-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NagÅ‚Ã³wek kroku */
.pricing-step h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 22px;
    text-align: center;
}

/* Opcje wyboru */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.pricing-option {
    display: flex;
    align-items: center;
    background: #2d2d2d;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid #444;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-option:hover {
    background: #333;
    border-color: #ffba65;
}

.pricing-option input[type="radio"],
.pricing-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #ffba65;
    flex-shrink: 0;
}

.pricing-option.checkbox-option input[type="checkbox"] {
    accent-color: #28a745;
}

.option-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 16px;
    color: #fff;
}

.price-tag {
    color: #28a745;
    font-weight: bold;
    font-size: 15px;
}

.pricing-option.checkbox-option .price-tag {
    color: #28a745;
}

/* Wybrana opcja */
.pricing-option:has(input:checked) {
    background: #ffba6520;
    border-color: #ffba65;
}

.pricing-option.checkbox-option:has(input:checked) {
    background: #28a74520;
    border-color: #28a745;
}

/* Przyciski nawigacji */
.btn-next,
.btn-prev {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-next {
    background: #0073aa;
    color: #fff;
    width: 100%;
    margin-top: 0px;
}

.btn-next:hover {
    background: #008be2;
}

.btn-prev {
    background: #555;
    color: #fff;
    margin-right: 10px;
}

.btn-prev:hover {
    background: #666;
}

/* Formularz kontaktowy */
.pricing-form {
    margin: 0;
    padding: 0;
}

.pricing-calculator-wrapper .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
}

.form-row input {
    flex: 1;
}

/* Style pÃ³l formularza */
.pricing-calculator-wrapper .pricing-form input[type="text"],
.pricing-calculator-wrapper .pricing-form input[type="email"],
.pricing-calculator-wrapper .pricing-form input[type="url"],
.pricing-calculator-wrapper .pricing-form textarea {
    display: block !important;
    width: 100% !important;
    padding: 14px !important;
    background-color: #2d2d2d !important;
    border: 2px solid #444444 !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    margin-bottom: 25px !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.pricing-form input:focus,
.pricing-form textarea:focus {
    outline: none !important;
    border-color: #ffba65 !important;
    box-shadow: 0 0 8px rgba(0, 115, 170, 0.4) !important;
    background-color: #333 !important;
}

.pricing-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Honeypot */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* Drop zone */
.drop-zone {
    flex-direction: column !important;
    border: 2px dashed #555;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    background: #252525;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.drop-zone:hover {
    border-color: #ffba65;
    background: #2a2a2a;
}

.drop-zone p {
    margin: 0 !important;
    color: #aaa !important;
    font-size: 15px !important;
}

.drop-zone-info {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 10px;
    line-height: 1.4;
    font-weight: normal;
}

/* Pasek postÄ™pu */
.progress-container {
    width: 100%;
    background-color: #333;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
    height: 25px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

#pricing-gdrive-bar {
    width: 0%;
    height: 100%;
    background-color: #0073aa;
    color: white;
    text-align: center;
    line-height: 25px;
    font-size: 12px;
    font-weight: bold;
    transition: width 0.3s ease;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

#pricing-file-count-info {
    color: #888;
    font-size: 13px;
    margin-bottom: 25px;
    display: block;
}

/* Przycisk reset */
.gdrive-reset-btn {
    background: none !important;
    border: none !important;
    color: #ff4d4d !important;
    font-size: 12px !important;
    cursor: pointer !important;
    text-decoration: underline !important;
    margin-left: 10px !important;
    padding: 0 !important;
    display: inline-block;
}

.gdrive-reset-btn:hover {
    color: #ff8080 !important;
}

/* Alternatywny link */
#alternative-link-wrapper {
margin-top: 0px;
margin-bottom:40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03); /* Bardzo delikatne tło */
    border-radius: 12px;
    border: 1px dashed #444;
}


#alternative-link-wrapper[style*="display: block"] {
    display: block !important;
}

/* Etykieta (label) nad polem */
#alternative-link-wrapper label {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Styl samego pola input (tutaj dzieje się magia) */
#pricing-alt-link, 
#alternative_link { /* Użyj ID, które masz w HTML */
    width: 100%;
    background: #121212 !important; /* Głęboka czerń */
    border: 1px solid #353535 !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    color: #fff !important;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Efekt po kliknięciu w pole (Focus) */
#pricing-alt-link:focus,
#alternative_link:focus {
    border-color: #0073aa !important; /* Niebieski kolor akcentu */
    box-shadow: 0 0 10px rgba(0, 115, 170, 0.3) !important;
    background: #181818 !important;
}

/* Placeholder (tekst podpowiedzi wewnątrz pola) */
#pricing-alt-link::placeholder {
    color: #555;
    font-style: italic;
}

/* Zgoda */
.consent-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 30px !important;
    cursor: pointer;
    line-height: 1.4;
}

.consent-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #0073aa;
}

/* Przycisk submit */
#submit-pricing-form {
    width: 100%;
    padding: 16px;
    background: #0073aa !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

#submit-pricing-form:hover {
    background: #008be2 !important;
}

#submit-pricing-form:disabled {
    background: #444 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Komunikaty */
#pricing-form-msg {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

#pricing-form-msg p {
    margin-top: 15px;
    /*padding: 10px;*/
    border-radius: 4px;
    text-align: center;
}

/* DomyÅ›lnie ukrywamy pole linku */
#alternative-link-wrapper {
    display: none !important;
}

/* JeÅ›li wykryto bÅ‚Ä…d API */
.api-error-active #pricing-upload-wrapper,
.api-error-active #pricing-gdrive-drop-zone {
    display: none !important;
}

.api-error-active #alternative-link-wrapper {
    display: block !important;
}

/* Kontener dla przyciskÃ³w w jednej linii */
.step-navigation {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.step-navigation .btn-prev,
.step-navigation .btn-next,
.step-navigation #submit-pricing-form {
    margin: 0 !important;
    flex: 1;
    width: auto !important;
}

.step-navigation .btn-prev {
    flex: 0 0 120px;
}

/* BÅ‚Ä…d walidacji */
.pricing-form input:invalid:focus,
.pricing-form textarea:invalid:focus {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.4) !important;
}

/* ==================== ResponsywnoÅ›Ä‡ ==================== */
@media (max-width: 992px) {
    .pricing-main-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-summary-column {
        width: 100%;
        order: -1; /* Podsumowanie na górze na telefonie, żeby klient widział cenę */
    }

    .pricing-summary-box {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .pricing-progress, 
    .progress-container,
    .pricing-steps-nav { 
        display: none !important;
    }

/* Jeśli Twoje napisy/kółka są wewnątrz elementu o klasie .progress-step */
    .progress-step {
        display: none !important;
    }
    
    /* Zmniejszamy margines górny pierwszego kroku, żeby nie było dziury */
    .pricing-step.active {
        margin-top: 0 !important;
        padding-top: 0px !important;
    }


    .pricing-calculator-wrapper {
        padding-left: 0px !important;  /* Zmniejsza odstęp wewnętrzny */
        padding-right: 0px !important;
        margin-left: 0 !important;      /* Usuwa ewentualne marginesy */
        margin-right: 0 !important;
    }
    .pricing-progress-indicator {
        flex-wrap: wrap;
    }
    
    .progress-step {
        flex: 0 0 calc(50% - 5px);
        font-size: 11px;
        padding: 10px 5px;
    }
}

@media (max-width: 480px) {
    .pricing-calculator-wrapper .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .pricing-calculator-wrapper {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .btn-prev,
    .btn-next {
        width: 100%;
        margin: 5px 0;
    }
    
    .option-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .step-navigation {
        flex-direction: row;
        gap: 10px;
    }
    
    .step-navigation .btn-prev {
        flex: 0 0 100px;
    }
    
    .progress-step {
        flex: 0 0 100%;
        font-size: 10px;
    }
}
/* ==================== PRZYCISK PŁATNOŚCI ==================== */
.btn-payment {
    width: 100%;
    padding: 15px 30px;
    background: #ffba65;
    color: black;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(247, 148, 30, 0.3); */
}

.btn-payment:hover {
    background: #ffa73d;
   /* box-shadow: 0 6px 20px rgba(247, 148, 30, 0.4); */
}

.btn-payment:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(247, 148, 30, 0.3);
}

.btn-payment:disabled {
    background: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
}

.payment-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

/* Responsywność */
@media (max-width: 768px) {
    .btn-payment {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .payment-section {
        margin-top: 15px !important;
        padding-top: 15px !important;
    }
}

.payment-info-box {
    background-color: rgba(255, 255, 255, 0.05); /* Delikatne rozjaśnienie ciemnego tła */
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
    color: #4a90e2; /* Kolor niebieski z Twojego obrazka */
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.payment-methods {
    color: #888; /* Szary tekst dla metod płatności */
    font-size: 12px;
    margin: 0;
}
