/**
 * Styles for the Szybki Start page
 */

/* Hero Section Styles */
.szybki-start-hero {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 60px 20px 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/tech-pattern.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(17,17,51,0.85) 100%);
    z-index: 2;
}

.szybki-start-hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-status {
    display: flex;
    align-items: center;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #4CAF50;
    margin-right: 10px;
}

.status-icon svg {
    color: white;
    width: 14px;
    height: 14px;
}

.status-text {
    font-size: 16px;
    font-weight: 500;
    color: #4CAF50;
}

.szybki-start-hero .hero-headline {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    margin-top: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.headline-small {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #8bc34a;
    opacity: 0.9;
}

.headline-main {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    max-width: 80%;
}

.hero-description {
    margin-bottom: 30px;
    max-width: 700px;
}

.szybki-start-hero .hero-subheadline {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.text-highlight {
    color: #ffeb3b;
    font-weight: 700;
}

.hero-countdown {
    display: flex;
    align-items: center;
    background-color: rgba(255, 152, 0, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.countdown-icon {
    margin-right: 15px;
    color: #ff9800;
}

.countdown-text {
    font-size: 16px;
    color: #ff9800;
    font-weight: 600;
    margin: 0;
}

.countdown {
    background-color: #ff9800;
    padding: 3px 8px;
    border-radius: 4px;
    color: white;
    font-weight: 700;
    margin: 0 5px;
    animation: pulse 1.5s infinite;
}

.szybki-start-hero .section-divider {
    position: relative;
    width: 100%;
}

.szybki-start-hero .section-divider img {
    width: 100%;
    display: block;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Mobile Optimization for Hero */
@media (max-width: 768px) {
    .szybki-start-hero {
        padding: 40px 20px 0;
    }
    
    .hero-status {
        margin-bottom: 20px;
    }
    
    .szybki-start-hero .hero-headline {
        font-size: 36px;
        margin-bottom: 60px;
    }
    
    .headline-small {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .headline-main {
        font-size: 32px;
        max-width: 100%;
    }
    
    .szybki-start-hero .hero-subheadline {
        font-size: 16px;
    }
    
    .hero-countdown {
        padding: 8px 15px;
    }
    
    .countdown-text {
        font-size: 14px;
    }
}

/* Full-width page styles */
.full-width {
    width: 100%;
}

.full-width .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Hide unwanted elements */
.szybki-start-page #sidebar,
.szybki-start-page .widget-area,
.szybki-start-page .search-form,
.szybki-start-page .widget_search,
.szybki-start-page .widget_recent_entries,
.szybki-start-page .widget_recent_comments {
    display: none !important;
}

.szybki-start-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.szybki-start-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

/* Empathy Section */
.empathy-section {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 5px solid #4CAF50;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.empathy-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.empathy-icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
}

.empathy-header h2 {
    font-size: 24px;
    margin: 0;
    color: #2e7d32;
}

.empathy-text {
    font-size: 18px !important;
    line-height: 1.6;
    margin-bottom: 15px !important;
}

.empathy-text strong {
    font-weight: 700;
    color: #2e7d32;
}

/* Problem Section */
.problem-section {
    margin-bottom: 40px;
}

.problem-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.problem-icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
}

.problem-header h2 {
    font-size: 24px;
    margin: 0;
    color: #d32f2f;
}

.reality-check {
    margin-bottom: 25px;
}

.reality-check p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.technical-wall {
    background-color: #fff5f5;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #ffcdd2;
    box-shadow: 0 3px 15px rgba(211, 47, 47, 0.1);
}

.technical-wall h3 {
    font-size: 20px;
    margin: 0 0 20px;
    color: #d32f2f;
    text-align: center;
    border-bottom: 1px solid #ffcdd2;
    padding-bottom: 15px;
}

.technical-tasks {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.technical-tasks li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(211, 47, 47, 0.2);
}

.technical-tasks li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.technical-tasks li svg {
    margin-right: 15px;
    color: #d32f2f;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.task-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.task-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.task-time {
    font-size: 14px;
    color: #d32f2f;
    font-weight: 700;
}

.time-sum {
    text-align: center;
    background-color: #d32f2f;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
}

.time-sum p {
    margin: 0;
}

.time-range {
    background-color: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 800;
}

.reality-scenarios {
    padding: 0 15px;
}

.highlighted-pain {
    font-weight: 700 !important;
    font-size: 20px !important;
    background-color: #fff5f5;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #d32f2f;
    margin: 25px 0 20px !important;
    text-align: center;
}

.life-scenarios {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.scenario {
    flex: 1 0 calc(50% - 15px);
    min-width: 200px;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
}

.scenario-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.scenario p {
    margin: 0;
    font-size: 16px;
}

.highlighted-fate {
    font-weight: 700 !important;
    font-size: 20px !important;
    background-color: #d32f2f;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin: 25px 0 20px !important;
    text-align: center;
}

.highlighted-fate strong {
    font-weight: 800;
    font-size: 24px;
    color: #ffeb3b;
}

.fate-warning {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
}

.fate-warning p {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.strike {
    color: #ff5252;
    font-weight: 800;
}

.personal-question {
    font-size: 20px !important;
    font-weight: 600 !important;
    text-align: center;
    margin-top: 25px !important;
    font-style: italic;
}

/* Choice Comparison Section */
.choice-comparison-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.choice-comparison-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-eyebrow {
    display: inline-block;
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196F3;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: max-content;
}

.section-headline {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a3c61;
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-headline .highlight-text {
    background-color: #FFEB3B;
    padding: 3px 8px;
    border-radius: 4px;
    color: #1a3c61;
}

.section-subheadline {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.section-subheadline-1 {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.urgency-banner {
    display: flex;
    align-items: center;
    background-color: #FFF5F5;
    border: 1px solid #FFE0E0;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.urgency-banner svg {
    color: #d32f2f;
    margin-right: 15px;
    flex-shrink: 0;
}

.urgency-banner p {
    margin: 0;
    font-size: 1.2rem;
    color: #d32f2f;
    font-weight: 600;
}

.choice-target {
    margin-bottom: 30px;
}

.choice-target > p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.target-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.target-checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.target-checklist li svg {
    color: #4CAF50;
    margin-right: 10px;
    flex-shrink: 0;
}

.special-offer-banner {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.1);
    position: relative;
    border: 1px solid #90CAF9;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    background-color: #2196F3;
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-badge svg {
    margin-right: 6px;
}

.offer-headline {
    font-size: 22px;
    font-weight: 700;
    color: #1a3c61;
    margin-bottom: 10px;
}

.offer-headline-2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a3c61;
    margin-bottom: 25px;
    line-height: 1.3;
}

.offer-subheadline {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.offer-details {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.options-comparison {
    margin-top: 40px;
}

.comparison-heading {
    font-size: 1,5 rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.option-a-container, .option-b-container {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    background-color: #F5F5F5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-header {
    padding: 15px 20px;
    text-align: center;
}

.option-a-header {
    background-color: #333;
    color: white;
    border-radius: 8px 8px 0 0;
}

.option-b-header {
    background-color: #3a5a40;
    color: white;
    border-radius: 8px 8px 0 0;
}

.option-label {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.option-label.highlight {
    color: #8BC34A;
}

.comparison-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
    
}

.option-a, .option-b {
    flex: 1;
    padding: 25px;
    border-radius: 0 0 8px 8px;

}

.option-a {
    background-color: #FAFAFA;
    border: 1px solid #E0E0E0;
}

.option-b {
    background-color: #F0F7EA;
    border: 1px solid rgb(90, 186, 90);
}

.comparison-conclusion {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 0 auto;
}

.option-cta {
    margin-top: 20px;
    text-align: center;
}

.option-cta .cta-button {
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    background-color: #ff6347;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 4px 8px rgba(255, 99, 71, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.option-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 99, 71, 0.4);
}

/* Mobile responsiveness for Choice Comparison Section */
@media (max-width: 768px) {
    .choice-comparison-section {
        padding: 40px 0;
    }
    
    .section-headline {
        font-size: 24px;
    }
    
    .section-subheadline {
        font-size: 16px;
    }
    
    .urgency-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .urgency-banner svg {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .offer-headline {
        font-size: 20px;
    }
    
    .offer-subheadline {
        font-size: 16px;
    }
    
    .comparison-grid {
        flex-direction: column;
    }
    
    .comparison-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .option-a-container, .option-b-container {
        width: 100%;
    }
    
    .option-a, .option-b {
        padding: 20px 15px;
    }
    
    .option-b-container {
        margin-top: 20px;
    }
    
    .comparison-conclusion {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .option-cta .cta-button {
        font-size: 16px;
        padding: 12px 20px;
        width: 100%;
    }
}

/* Stop Section */
.stop-section {
    text-align: center;
    margin: 50px 0;
}

.stop-container {
    display: inline-block;
}

.stop-text {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    background-color: #d32f2f;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 15px !important;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    letter-spacing: 2px;
}

.stop-text:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid #d32f2f;
    transform: translateY(-50%);
}

.stop-text:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #d32f2f;
    transform: translateY(-50%);
}

.alternative-path {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2196F3 !important;
    margin: 0 !important;
    padding-top: 10px;
}

/* Solution Introduction */
.solution-intro {
    margin: 40px 0;
}

.solution-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.solution-icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
}

.solution-header h2 {
    font-size: 24px;
    margin: 0;
    color: #2196F3;
}

.solution-text {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #2196F3 !important;
    margin-bottom: 30px !important;
    text-align: center;
}

.benefits-container {
    background-color: #e3f2fd;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid #bbdefb;
}

.benefits-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.benefit-box {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.1);
    display: flex;
    align-items: center;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-box p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.offer-box {
    background: linear-gradient(135deg, #2196F3 0%, #3f51b5 100%);
    padding: 35px 25px 25px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.4);
    position: relative;
}

.offer-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffeb3b;
    color: #333;
    font-weight: 800;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.offer-headline {
    font-size: 30px !important;
    font-weight: 800 !important;
    color: white !important;
    margin: 0 0 15px !important;
}

.offer-tagline {
    font-size: 22px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

/* Mobile Responsiveness for Problem/Solution Sections */
@media (max-width: 768px) {
    .empathy-section,
    .technical-wall {
        padding: 20px;
    }
    
    .empathy-header h2,
    .problem-header h2,
    .solution-header h2 {
        font-size: 20px;
    }
    
    .empathy-text,
    .reality-check p {
        font-size: 16px !important;
    }
    
    .technical-wall h3 {
        font-size: 18px;
    }
    
    .life-scenarios {
        flex-direction: column;
    }
    
    .scenario {
        flex: 1 0 100%;
    }
    
    .highlighted-pain,
    .highlighted-fate {
        font-size: 18px !important;
    }
    
    .fate-warning p {
        font-size: 18px;
    }
    
    .personal-question {
        font-size: 18px !important;
    }
    
    .stop-text {
        font-size: 28px !important;
        padding: 8px 30px;
    }
    
    .alternative-path {
        font-size: 20px !important;
    }
    
    .solution-text {
        font-size: 18px !important;
    }
    
    .benefits-wrapper {
        flex-direction: column;
    }
    
    .benefit-box {
        min-width: auto;
    }
    
    .offer-headline {
        font-size: 24px !important;
    }
    
    .offer-tagline {
        font-size: 18px !important;
    }
}

/* Timeline Progress Bar */
.progress-timeline {
    margin: 0;
    padding: 60px 0;


}
.progress-percentage {
    color: #00c50a;
}



.progress-headline {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.progress-headline h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: #1a3c61;
    position: relative;
    display: inline-block;
}

.progress-headline h3:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #4CAF50;
    margin: 15px auto 0;
    border-radius: 2px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
    position: relative;
}

/* Remove the horizontal line */
.timeline:before {
    display: none; /* Hide the timeline line */
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    z-index: 2;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    border: 3px solid #ddd;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Lucide icons styling */
.timeline-icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.timeline-connector {
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 0;
}

.timeline-step:last-child .timeline-connector {
    display: none;
}

.timeline-label {
    text-align: center;
    width: 100%;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.timeline-step-number {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
    color: #1a3c61;
    background: #f0f0f0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timeline-step-text {
    font-size: 17px;
    white-space: nowrap;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.timeline-completion {
    background-color: #4CAF50;
    color: white;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 8px;
    box-shadow: 0 2px 5px rgba(76,175,80,0.3);
    transform: scale(1);
    animation: pulse-scale 1.5s infinite ease-in-out;
}

.timeline-eta {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
    background: rgba(0,0,0,0.05);
    padding: 4px 10px;
    border-radius: 15px;
}

/* Completed step styling */
.timeline-step-completed .timeline-icon {
    background-color: #4CAF50; /* Green background */
    color: white;
    border-color: #388E3C;
    box-shadow: 0 4px 15px rgba(76,175,80,0.4);
}

.timeline-step-completed .timeline-icon svg {
    color: white;
}

.timeline-step-completed .timeline-step-number {
    background: #4CAF50;
    color: white;
}

.timeline-step-completed:before {
    display: none;
}

/* Current step styling */
.timeline-step-current .timeline-icon {
    background-color: #2196F3; /* Blue background */
    color: white; /* White icon color */
    border-color: #1976D2; /* Darker blue border */
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.7);
    animation: pulse-border 2s infinite ease-in-out;
    transform: scale(1.1);
}

.timeline-step-current .timeline-icon svg {
    color: white !important; /* Ensure icon is white */
    animation: pulse-scale 2s infinite ease-in-out;
}

.timeline-step-current .timeline-step-number {
    background: #2196F3;
    color: white;
    animation: pulse-scale 2s infinite ease-in-out;
}

.timeline-current-label {
    color: white;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    background-color: #2196F3;
    padding: 5px 12px;
    border-radius: 20px;
    animation: pulse-opacity 2s infinite ease-in-out;
    box-shadow: 0 3px 8px rgba(33,150,243,0.4);
}

.timeline-step-current .timeline-label {
    color: #2196F3;
    font-weight: 700;
}

.timeline-split-option {
    display: flex;
    align-items: center;
    margin-top: 15px;
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.option-diy {
    color: #d32f2f;
    font-weight: 600;
    text-decoration: line-through;
    padding: 3px 6px;
    background: rgba(211,47,47,0.1);
    border-radius: 4px;
}

.option-vs {
    margin: 0 10px;
    color: #666;
    font-weight: 700;
}

.option-service {
    color: #4CAF50;
    font-weight: 700;
    padding: 3px 6px;
    background: rgba(76,175,80,0.1);
    border-radius: 4px;
}

/* Future step styling */
.timeline-step-future .timeline-icon {
    background-color: #FFF9C4; /* Light yellow background for future steps */
    color: #795548; /* Darker color for icon for contrast */
    border-color: #FFEB3B; /* Yellow border */
    opacity: 0.85;
}

.timeline-step-future .timeline-label {
    color: #888;
}

.timeline-step-future .timeline-step-number {
    background: #ddd;
    color: #888;
}

.timeline-cta {
    text-align: center;
    margin-top: 50px;
    background: linear-gradient(135deg, #e1f5fe 0%, #f3fdff 100%);
    border-radius: 15px;
    padding: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #b3e5fc;
    box-shadow: 0 8px 25px rgba(33,150,243,0.1);
    transition: all 0.3s ease;
}

.timeline-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(33,150,243,0.2);
}

.timeline-cta-text {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0277bd;
}

.highlight-text {
    background-color: #fff176;
    padding: 3px 8px;
    border-radius: 6px;
    color: #333;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(255,241,118,0.5);
}

.timeline-cta-button {
    display: inline-block;
    background: linear-gradient(to right, #2196F3, #1976D2);
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(33,150,243,0.4);
    position: relative;
    overflow: hidden;
}

.timeline-cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    animation: shine 3s infinite;
}

.timeline-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.42);
}

.timeline-cta-button:hover:before {
    left: 100%;
}

/* Animations */
@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 15px rgba(33, 150, 243, 0.5);
        border-color: #2196F3;
    }
    50% {
        box-shadow: 0 0 25px rgba(33, 150, 243, 0.8);
        border-color: #1976D2;
    }
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse-opacity {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Design for Timeline */
@media (max-width: 900px) {
    .timeline {
        padding: 20px;
    }
    
    .timeline:before {
        left: 20px;
        right: 20px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
    }
    
    .timeline-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .timeline-step-completed:before {
        top: 55px;
    }
    
    .testimonials-carousel {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-card {
        width: 100%;
    }
    
    .proof-headline h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .progress-timeline {
        padding: 40px 15px;
    }
    
    .progress-headline h3 {
        font-size: 22px;
    }
    
    .timeline {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 10px 10px 10px;
    }
    
    .timeline:before {
        width: 4px;
        height: calc(100% - 20px);
        top: 10px;
        left: 28px;
        right: auto;
    }
    
    .timeline-step {
        flex-direction: row;
        width: 100%;
        margin-bottom: 30px;
        align-items: flex-start;
    }
    
    .timeline-step:last-child {
        margin-bottom: 0;
    }
    
    .timeline-step-completed:before {
        width: 4px;
        height: 100%;
        top: 0;
        right: auto;
        left: -18px;
    }
    
    .timeline-icon {
        margin-bottom: 0;
        margin-right: 15px;
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }
    
    .timeline-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .timeline-label {
        text-align: left;
        align-items: flex-start;
        padding-top: 5px;
    }
    
    .timeline-step-number {
        position: absolute;
        top: -5px;
        left: -5px;
        width: 24px;
        height: 24px;
        font-size: 14px;
        z-index: 2;
    }
    
    .timeline-current-label {
        display: inline-block;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .timeline-split-option {
        margin-left: 0;
        padding: 8px 10px;
        justify-content: flex-start;
        margin-top: 10px;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .timeline-cta-text {
        font-size: 18px;
    }
    
    .timeline-cta {
        padding: 20px 15px;
    }
    
    .timeline-cta-button {
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Offer Details */
.offer-details {
    margin: 40px 0;
}

.service-package {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
    position: relative;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.premium-badge {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b6b;
    color: white;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    z-index: 2;
    text-align: center;
}

.package-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-checklist li {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.service-checklist li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.check-icon {
    flex-shrink: 0;
    margin-right: 15px;
    width: 24px;
    height: 24px;
}

.service-content {
    display: flex;
    flex-direction: column;
}

.service-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.service-desc {
    font-size: 14px;
    color: #666;
}

.premium-service {
    background-color: rgba(255, 223, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-left: -15px;
    margin-right: -15px;
    border-left: 4px solid #FFD700;
    border-bottom: none !important;
}

.service-image-container {
    margin: 30px auto 0;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.service-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    padding: 20px 15px 15px;
    text-align: center;
}

.service-image-caption p {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Decision Comparison */
.decision-comparison {
    margin-bottom: 40px;
}

.decision-headline {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
}

.comparison-table {
    display: flex;
    gap: 30px;
    margin: 0;
}

.comparison-column {
    flex: 1;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.column-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.do-it-yourself {
    background-color: #f8d7da;
    color: #721c24;
}

.our-service {
    background-color: #d4edda;
    color: #155724;
}

.comparison-column h4 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid;
}

.neg-column {
    background-color: #fff5f5;
    border: 1px solid #f8d7da;
}

.neg-column h4 {
    color: #d32f2f;
    border-bottom-color: #d32f2f;
}

.pos-column {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    transform: scale(1.05);
    z-index: 2;
}

.pos-column h4 {
    color: #388e3c;
    border-bottom-color: #4CAF50;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.comparison-column li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.comparison-column li:last-child {
    margin-bottom: 0;
}

.neg-column li:before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 0;
    color: #d32f2f;
    font-weight: 700;
}

.pos-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-weight: 700;
}

.cost-label {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}

.cost-currency {
    font-weight: 500;
    color: #666;
    margin-right: 5px;
}

.cost-value {
    font-weight: 700;
    font-size: 18px;
}

.highlighted-cost {
    background-color: #388e3c;
    color: white;
}

.highlighted-cost .cost-currency,
.highlighted-cost .cost-value {
    color: white;
}

.highlighted-cost .cost-value {
    font-size: 22px;
}

/* Guarantee Section */
.guarantee-section {
    background-color: #fff9e6;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    margin: 40px 0;
    border: 1px solid #ffe082;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    flex-shrink: 0;
}

.guarantee-content {
    flex: 1;
}

.guarantee-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #ff8f00;
}

.guarantee-content p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

/* Price Section */
.price-section {
    margin: 40px 0;
}

.value-proposition {
    text-align: center;
    margin-bottom: 30px;
}

.value-proposition h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.value-proposition p {
    font-size: 18px;
    margin-bottom: 10px;
}

.price-strike {
    text-decoration: line-through;
    color: #d32f2f;
    font-weight: 500;
}

.price-box {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 40px 30px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 0 auto 30px;
    border: 2px solid #e63946;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);
    position: relative;
    max-width: 600px;
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e63946;
    color: white;
    font-weight: 800;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.price-timer {
    margin-bottom: 20px;
}

.price-timer p {
    font-size: 16px;
    color: #e63946;
    font-weight: 600;
    margin: 0;
}

#countdown-timer {
    background-color: #e63946;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    animation: pulse 1s infinite;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.price-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.regular-price {
    text-decoration: line-through;
    color: #d32f2f;
}

.price-discount {
    background-color: #e63946;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    color: #e63946;
    margin-bottom: 10px;
    position: relative;
    display: block;
}

.price-value:before, .price-value:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #e63946;
    top: 50%;
    transform: translateY(-50%);
}

.price-value:before {
    left: -70px;
}

.price-value:after {
    right: -70px;
}

.price-tagline {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.payment-info {
    margin-top: 20px;
}

.payment-methods {
    margin-bottom: 10px;
}

.payment-icons {
    max-width: 250px;
    height: auto;
}

.secure-payment {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Button styles */
.szybki-start-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    gap: 25px;
}

.start-button {
    font-family: 'Oswald', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-blend-mode: overlay, screen, normal;
    padding: 5px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
    animation: brilho 2s ease-in-out 0s infinite, pulse 2s ease-in-out 0s infinite;
    width: 600px;
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.button-content {
    padding: 18px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.button-main {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.button-sub {
    font-size: 14px;
    opacity: 0.9;
}

.start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.42);
}

.start-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.no-thanks-button {
    color: #ff0000;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 8px;
    transition: color 0.3s;
    text-decoration: underline;
    font-weight: 500;
    text-align: center;
}

.no-thanks-button:hover {
    color: #ff0000;
}

/* Final Social Proof */
.final-social-proof {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
    border: 1px solid #e9ecef;
}

.customers-count {
    text-align: center;
    margin-bottom: 15px;
}

.customers-count p {
    font-size: 18px;
    margin: 0;
}

.action-evidence {
    border-top: 1px solid #dee2e6;
    padding-top: 15px;
}

.action-evidence p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    text-align: center;
}

.recent-customers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.recent-customers li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.customer-initial {
    background-color: #e3f2fd;
    color: #1976D2;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 5px;
}

.customer-time {
    font-size: 12px;
    color: #666;
}

/* Define the animations */
@keyframes brilho {
    0%, 100% {
        box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
    }
    50% {
        box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.52);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive styles for Offer/Pricing sections */
@media (max-width: 768px) {
    .service-package {
        padding: 25px 15px;
    }
    
    .package-header h3 {
        font-size: 20px;
    }
    
    .service-name {
        font-size: 16px;
    }
    
    .premium-service {
        margin-left: -10px;
        margin-right: -10px;
        padding: 10px;
    }
    
    .service-image-caption p {
        font-size: 16px;
    }
    
    .comparison-table {
        flex-direction: column;
        gap: 40px;
    }
    
    .pos-column {
        transform: scale(1);
    }
    
    .comparison-column h4 {
        font-size: 18px;
    }
    
    .guarantee-section {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .value-proposition h3 {
        font-size: 20px;
    }
    
    .value-proposition p {
        font-size: 16px;
    }
    
    .price-box {
        padding: 30px 15px 20px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .price-value:before, .price-value:after {
        display: none;
    }
    
    .button-content {
        padding: 15px 20px;
    }
    
    .button-main {
        font-size: 18px;
    }
    
    .button-sub {
        font-size: 13px;
    }
    
    .recent-customers {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Styles moved from page-szybki-start.php - Block 1 (formerly in wp_head) */
.szybki-start {
    font-family: 'Sora', Arial, sans-serif;
    line-height: 1.5;
    color: #333;
}

.checkout-progress {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Animated Progress Bar */
.meter {
  box-sizing: content-box;
  height: 20px; /* Can be anything */
  position: relative;
  background: #555;
  border-radius: 25px;
  padding: 10px;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.meter > span {
  display: block;
  height: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: rgb(43, 194, 83);
  background-image: linear-gradient(
    center bottom,
    rgb(43, 194, 83) 37%,
    rgb(84, 240, 84) 69%
  );
  box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.meter > span:after,
.animate > span > span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  z-index: 1;
  background-size: 50px 50px;
  animation: move 2s linear infinite;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

.animate > span:after {
  display: none;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

.orange > span {
  background-image: linear-gradient(#f1a165, #f36d0a);
}

.red > span {
  background-image: linear-gradient(#f0a3a3, #f42323);
}

.nostripes > span > span,
.nostripes > span::after {
  background-image: none;
}

/* Custom hero meter styling */
.checkout-progress .meter {
  margin-top: 0;
  margin-bottom: 10px;
  height: 15px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.checkout-progress .meter > span {
  background-image: linear-gradient(#4CAF50, #8BC34A);
}

.progress-label {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;

}

.success-tag {
    display: inline-flex;
    align-items: center;
    background-color: rgba(76, 175, 80, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    max-width: 800px;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #4CAF50;
    margin-right: 15px;
    flex-shrink: 0;
}

.success-icon svg {
    color: white;
    width: 20px;
    height: 20px;
}

.success-headline {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #4CAF50;
    margin: 0;
    line-height: 1.4;
}

.szybki-start-content,
.empathy-section,
.problem-section:not(.zestaw-style),
.solution-intro,
.offer-details,
.decision-comparison,
.guarantee-section:not(.zestaw-style),
.price-section {
    display: none !important;
}

.zestaw-style {
    display: block;
}

.cta-button.primary {
    background: #FF5722;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    border-radius: 50px;
    padding: 1rem 2rem;
    text-align: center;
}

/* Styles moved from page-szybki-start.php - Block 2 (formerly at end of file) */
.urgent {
    color: #F44336 !important;
    animation: urgent-blink 0.5s infinite !important;
}

@keyframes urgent-blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hover-effect {
    transform: translateY(-3px) scale(1.02);
}

/* Removed exit intent popup CSS styles */

/* Szybki Start specific styles (from PHP file) */
.szybki-start-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a3c61 100%);
    color: #fff;
    padding: 2rem 1rem 0rem 1rem;
    position: relative;
    overflow: hidden;
}

.progress-timeline {
    padding: 3rem 0;


}

.timeline-step-completed .timeline-icon,
.timeline-step-current .timeline-icon,
.timeline-step-future .timeline-icon {
    /* background-color: transparent !important; */ /* This line was causing issues */
    /* border: none !important; */ /* This line was causing issues */
}

.timeline-connector {
    /* background-color: transparent !important; */ /* This line was causing issues */
    /* border: none !important; */ /* This line was causing issues */
}

/* Mobile responsiveness fixes (from PHP file) */
@media (max-width: 768px) {
    .szybki-start-hero .hero-headline {
        font-size: 1.8rem;
    }

    .szybki-start-hero .hero-subheadline {
        font-size: 1.1rem;
    }

    .szybki-start-hero {
        padding: 2rem 1rem 0rem 1rem;
    }

    .szybki-start-hero .hero-content {
        padding: 0 0.5rem;
    }

    .checkout-progress {
        margin-bottom: 20px;
    }

    .checkout-progress .meter {
        height: 15px;
        padding: 3px;
    }

    

    .progress-label {
        font-size: 14px;

    }

   

    .success-tag {
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .success-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .success-headline {
        font-size: 1.2rem;
        text-align: center;

        font-family: var(--font-family-primary);
    }

    .section-headline {
        font-size: 1.5rem;
    }
}

.option-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
}

.option-title.highlight {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
}

.option-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.option-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.option-steps li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    width: 25px;
    height: 25px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.option-b .step-number {
    background-color: #4CAF50;
    color: white;
}

.option-features {
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.feature svg {
    color: #4CAF50;
    margin-right: 10px;
    flex-shrink: 0;
}

.option-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
}

.option-summary.negative {
    background-color: #FFF5F5;
    color: #d32f2f;
}

.option-summary.positive {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.option-summary svg {
    margin-right: 10px;
}

/* Installation instruction section */
.installation-instructions {
    text-align: center;
    padding: 20px 0;
}

.installation-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.installation-image {
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
    display: inline-block;
   
}

/* Update all headings to use Oswald font */
.szybki-start h1, 
.szybki-start h2, 
.szybki-start h3, 
.szybki-start h4, 
.szybki-start h5,
.szybki-start h6,
.hero-headline,
.section-headline,
.comparison-heading,
.package-header h3,
.bridge-headline,
.component-title,
.offer-headline,
.offer-headline-2,
.progress-headline h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

/* Make value showcase section headline the same size as the bridge headline */
.value-showcase-content .section-headline {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a3c61;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Center align product badge (PREMIUM) and section eyebrow (SZCZEGÓŁY OFERTY) */
.product-badge {
    text-align: center;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.section-eyebrow {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Final CTA Section styling */
.final-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.final-cta-headline {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a3c61;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    text-align: center;
}

.final-cta-headline::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #4CAF50;
    margin: 15px auto 0;
    border-radius: 2px;
}

.final-price-container {
    margin-bottom: 30px;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.price-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.price-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.regular-price {
    text-decoration: line-through;
    color: #d32f2f;
    font-weight: 500;
    margin-left: 5px;
}

.price-discount {
    background-color: #e63946;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.price-value {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #4CAF50;
    margin: 15px 0;
    position: relative;
    display: inline-block;
    line-height: 1;
}

.price-tagline {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-top: 5px;
}

.szybki-start-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    gap: 25px;
}

.start-button {
    font-family: 'Oswald', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-blend-mode: overlay, screen, normal;
    padding: 5px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
    animation: brilho 2s ease-in-out 0s infinite, pulse 2s ease-in-out 0s infinite;
    width: 600px;
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.button-content {
    padding: 18px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.button-main {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.button-sub {
    font-size: 14px;
    opacity: 0.9;
}

.start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.42);
}

.start-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.no-thanks-button {
    color: color: #ff0000;
    text-decoration: none;
    font-size: 16px;
    padding: 8px;
    transition: color 0.3s;
    text-decoration: underline;
    font-weight: 500;
    line-height: 2;
}

.no-thanks-button:hover {
    color: color: #ff0000;;
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #666;
}

.final-guarantee .guarantee-icon {
    color: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-guarantee p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 40px 0;
    }
    
    .final-cta-content {
        padding: 30px 20px;
    }
    
    .price-value {
        font-size: 56px;
    }
    
    .price-label {
        font-size: 16px;
    }
    
    .price-discount {
        font-size: 12px;
    }
    
    .button-content {
        padding: 15px 20px;
    }
    
    .button-main {
        font-size: 18px;
    }
    
    .button-sub {
        font-size: 12px;
    }
} 