/* ==========================================================================
   WEB-SPECIFIC STYLES
   Styles unique to web.html page - complex inline styles organized
   ========================================================================== */

/* ==========================================================================
   PACKAGE SLIDER COMPONENTS
   Mobile and desktop package selection
   ========================================================================== */

/* Mobile Package Slider */
.mobile-package-slider {
    display: none;
}

.mobile-package-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-btn {
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: 2px solid var(--warmth-primary);
    color: var(--warmth-primary);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-btn.active,
.mobile-nav-btn:hover {
    background: var(--warmth-primary);
    color: white;
}

.mobile-package-card {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    border: 2px solid var(--warmth-primary);
}

.mobile-package-card.active {
    display: block;
}

/* Desktop Package Slider */
.desktop-package-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.desktop-nav-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--warmth-primary);
    color: var(--warmth-primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.desktop-nav-btn.active,
.desktop-nav-btn:hover {
    background: var(--warmth-primary);
    color: white;
}

.desktop-package-card {
    display: none;
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: var(--shadow-strong);
    text-align: center;
    border: 3px solid var(--warmth-primary);
    max-width: 600px;
    margin: 0 auto;
}

.desktop-package-card.active {
    display: block;
}

/* ==========================================================================
   COUNTDOWN TIMER STYLES
   Special styles for countdown display
   ========================================================================== */

.countdown-container {
    text-align: center;
    margin: 2rem 0;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.countdown-item {
    background: var(--warmth-primary);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    min-width: 60px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* Mobile countdown adjustments */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 0.8rem 0.5rem;
        min-width: 50px;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .mobile-package-slider {
        display: block;
    }
    
    .desktop-package-nav,
    .desktop-package-card {
        display: none !important;
    }
}

/* ==========================================================================
   COMPARISON SECTION STYLES
   Traditional vs AI comparison table
   ========================================================================== */

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 60rem;
    margin: 0 auto;
}

.comparison-traditional {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid #dc3545;
}

.comparison-ai {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--warmth-accent);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warmth-charcoal);
    background: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: var(--shadow-medium);
    margin: auto;
}

.comparison-title {
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.comparison-title.traditional {
    color: #dc3545;
}

.comparison-title.ai {
    color: var(--warmth-accent);
}

.comparison-items {
    margin-bottom: 1rem;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0;
}

.comparison-total {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-total.traditional {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.comparison-total.ai {
    background: var(--bg-accent-medium);
    color: var(--warmth-accent);
}

/* Mobile comparison adjustments */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-vs {
        display: none;
    }
}

/* ==========================================================================
   FAQ SECTION STYLES
   Expandable FAQ items
   ========================================================================== */

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--warmth-charcoal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--warmth-cream);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-primary-light);
    color: var(--warmth-primary);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 1.5rem;
    color: var(--warmth-charcoal);
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: var(--warmth-primary);
    color: white;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   TESTIMONIAL EXPANDED STYLES
   Detailed testimonial with website preview
   ========================================================================== */

.testimonial-expanded {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-strong);
    margin: 3rem 0;
    border: 1px solid var(--border-primary-light);
}

.story-content {
    order: 2;
}

.website-preview {
    order: 1;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--warmth-primary);
}

.author-details h4 {
    color: var(--warmth-primary);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-details p {
    color: var(--warmth-charcoal);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile testimonial adjustments */
@media (max-width: 768px) {
    .testimonial-expanded {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 2rem !important;
    }
    
    .story-content {
        order: 1 !important;
    }
    
    .website-preview {
        order: 2 !important;
    }
    
    .author-info {
        flex-direction: column !important;
        text-align: center !important;
    }
}

/* ==========================================================================
   HERO SECTION SPECIFIC STYLES  
   Styles for hero video and visual elements
   ========================================================================== */

.hero-video-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Desktop hero layout - 50/50 split */
@media (min-width: 769px) {
    .hero-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
        align-items: start !important;
        max-width: 1240px !important;
        margin: 0 auto !important;
        padding: 0 2rem !important;
    }
    
    .hero {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .hero-visual {
        margin-top: 2rem !important;
        align-self: center !important;
    }
}

/* Results section responsive layout */
@media (min-width: 768px) {
    .results-mobile {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        max-width: 1000px !important;
        margin: 0 auto !important;
        padding: 0 2rem !important;
    }
    
    .results-mobile .fade-in-up {
        padding: 2rem !important;
        border-radius: 20px !important;
    }
    
    .results-mobile h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .results-mobile p {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .results-mobile div[style*="background: rgba"] {
        font-size: 0.9rem !important;
        padding: 0.6rem 1rem !important;
    }
}

/* ==========================================================================
   PAKIETY - UKRYJ STARE PRICING-CARDS
   ========================================================================== */

/* Ukryj stare duplikaty pakietów - zostaw tylko package slider */
.pricing-cards {
    display: none !important;
}

/* ==========================================================================
   PRICING FEATURES FIX
   ========================================================================== */

/* Fix dla długich tekstów w pricing features - wyrównanie do lewej */
.pricing-features li {
    align-items: flex-start !important;
    text-align: left !important;
}

.pricing-features .checkmark,
.pricing-features .cross {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   FAQ FUNCTIONALITY - MUSI DZIAŁAĆ!
   ========================================================================== */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

/* ==========================================================================
   PROGRAM SECTION STYLES
   Timeline and workshop cards
   ========================================================================== */

.program-intro-text {
    color: rgba(44, 38, 37, 0.8);
    font-size: 1.05rem;
    margin-top: 0.8rem;
}

.program-subheading {
    color: var(--warmth-primary);
    margin: 2rem 0 1.5rem 0;
    font-size: 1.3rem;
}

.timeline-no-line {
    max-width: none;
    position: relative;
}

.timeline-no-line::before {
    display: none !important;
}

.timeline-no-line .timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 5.5rem;
}

.timeline-no-line .timeline-marker {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: var(--warmth-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: var(--shadow-soft);
}

.timeline-no-line .timeline-content {
    padding: 2rem 1.9rem 2.2rem 2.1rem;
    position: relative;
}

@media (max-width: 768px) {
    .timeline-no-line .timeline-item {
        padding-left: 3.5rem;
    }
    .timeline-no-line .timeline-marker {
        left: 0.3rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
    .timeline-no-line .timeline-content {
        padding: 1.5rem;
    }
}

.workshop-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(201, 74, 42, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.workshop-card h3,
.workshop-card-title {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.workshop-card-title.personal {
    color: var(--warmth-primary);
}

.workshop-card-title.landing {
    color: var(--warmth-accent);
}

.workshop-card-title.ecommerce {
    color: var(--warmth-plum);
}

.workshop-card-title.portfolio {
    color: var(--warmth-gold);
}

.workshop-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.workshop-result-box {
    padding: 0.8rem;
    border-radius: 10px;
    margin-top: auto;
}

.workshop-result-box.personal {
    background: rgba(42, 92, 78, 0.08);
}

.workshop-result-box.landing {
    background: rgba(201, 74, 42, 0.08);
}

.workshop-result-box.ecommerce {
    background: rgba(107, 76, 122, 0.08);
}

.workshop-result-box.portfolio {
    background: rgba(212, 146, 90, 0.1);
}

.workshop-result-header {
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.workshop-result-header.personal {
    color: var(--warmth-accent);
}

.workshop-result-header.landing {
    color: var(--warmth-primary);
}

.workshop-result-header.ecommerce {
    color: var(--warmth-plum);
}

.workshop-result-header.portfolio {
    color: var(--warmth-gold);
}

.workshop-result-text {
    font-size: 0.85rem;
    margin: 0;
}

.workshop-result-icon {
    width: 24px;
    height: 24px;
}

/* Homework Info Box */
.homework-info-box {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(42, 92, 78, 0.03) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem auto 0;
    max-width: 800px;
    border: 1px solid rgba(201, 74, 42, 0.1);
}

.homework-info-icon {
    margin-bottom: 1rem;
}

.homework-info-icon svg {
    width: 32px;
    height: 32px;
    color: var(--warmth-primary);
}

.homework-info-title {
    color: var(--warmth-charcoal);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.homework-info-text {
    margin: 0;
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.homework-info-text .accent-highlight {
    color: var(--warmth-accent);
    font-weight: 600;
}

.homework-info-text .primary-highlight {
    color: var(--warmth-primary);
    font-weight: 600;
}

/* ==========================================================================
   PROBLEM SECTION STYLES
   ========================================================================== */

.problems-grid {
    margin-top: 2rem;
}

.problems-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 800px;
    margin: 0 auto;
}

.problem-card-title {
    margin-bottom: 1rem;
}

.problem-card-title.primary {
    color: var(--warmth-primary);
}

.problem-card-title.accent {
    color: var(--warmth-accent);
}

/* ==========================================================================
   THREE PILLARS SECTION
   "Dlaczego to działa?" section styling
   ========================================================================== */

.pillars-section {
    background: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.pillars-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pillars-title {
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.pillars-subtitle {
    color: rgba(44, 38, 37, 0.7);
}

.three-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.three-pillars-line {
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--warmth-primary), var(--warmth-gold), var(--warmth-accent));
    z-index: 0;
}

.pillar-item {
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.pillar-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: white;
    border: 3px solid var(--warmth-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pillar-icon.accent {
    border-color: var(--warmth-accent);
}

.pillar-icon.gold {
    border-color: var(--warmth-gold);
}

.pillar-icon svg {
    width: 48px;
    height: 48px;
}

.pillar-icon.primary svg {
    color: var(--warmth-primary);
}

.pillar-icon.accent svg {
    color: var(--warmth-accent);
}

.pillar-icon.gold svg {
    color: var(--warmth-gold);
}

.pillar-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pillar-title.primary {
    color: var(--warmth-primary);
}

.pillar-title.accent {
    color: var(--warmth-accent);
}

.pillar-title.gold {
    color: var(--warmth-gold);
}

.pillar-text {
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
}

.pillar-highlight {
    font-weight: 600;
}

.pillar-highlight.primary {
    color: var(--warmth-primary);
}

.pillar-highlight.gold {
    color: var(--warmth-gold);
}

.pillar-highlight.accent {
    color: var(--warmth-accent);
}

.pillars-footer {
    text-align: center;
    margin-top: 4rem;
}

.pillars-message {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(42, 92, 78, 0.05) 100%);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    border: 2px solid rgba(201, 74, 42, 0.1);
}

.pillars-message-text {
    font-size: 1.1rem;
    color: var(--warmth-charcoal);
    margin: 0;
    font-weight: 500;
}

.pillars-message-highlight {
    color: var(--warmth-primary);
}

/* Decorative background elements for pillars section */
.pillars-decoration-top {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 74, 42, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.pillars-decoration-bottom {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(42, 92, 78, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* ==========================================================================
   SCHEDULE SECTION
   Weekly schedule cards with days and times
   ========================================================================== */

.schedule-container {
    display: grid;
    gap: 2.5rem;
    max-width: 60rem;
    margin: 0 auto;
}

.schedule-week-card {
    transform: rotate(0deg);
}

.schedule-week-header {
    background: var(--warmth-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 15px 25px 15px 25px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    transform: rotate(0deg);
}

.schedule-week-header.week2,
.schedule-week-header.accent {
    background: var(--warmth-accent);
    border-radius: 25px 15px 25px 15px;
}

.schedule-week-header.week3,
.schedule-week-header.gold {
    background: var(--warmth-gold);
    border-radius: 20px 30px 20px 30px;
}

.schedule-week-header.week4,
.schedule-week-header.plum {
    background: var(--warmth-plum);
    border-radius: 30px 20px 30px 20px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.schedule-day {
    padding: 1.2rem;
    border-radius: 12px 8px 15px 10px;
}

.schedule-day.primary {
    background: rgba(201, 74, 42, 0.08);
}

.schedule-day.accent {
    background: rgba(42, 92, 78, 0.08);
}

.schedule-day.gold {
    background: rgba(212, 146, 90, 0.08);
}

.schedule-day.plum {
    background: rgba(107, 76, 122, 0.08);
}

.schedule-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.schedule-date.primary {
    color: var(--warmth-primary);
}

.schedule-date.accent {
    color: var(--warmth-accent);
}

.schedule-date.gold {
    color: var(--warmth-gold);
}

.schedule-date.plum {
    color: var(--warmth-plum);
}

.schedule-time {
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.7);
    margin: 0.3rem 0;
    text-align: center;
}

.schedule-content {
    font-size: 0.85rem;
    margin-top: 0.8rem;
    line-height: 1.5;
}

.schedule-summary {
    background: rgba(251, 247, 242, 0.8);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--warmth-primary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.schedule-summary.accent {
    border-left-color: var(--warmth-accent);
}

.schedule-summary.gold {
    border-left-color: var(--warmth-gold);
}

.schedule-summary.plum {
    border-left-color: var(--warmth-plum);
}

.schedule-total-time {
    text-align: center;
    font-weight: 500;
}

.schedule-total-time.primary {
    color: var(--warmth-primary);
}

.schedule-total-time.accent {
    color: var(--warmth-accent);
}

.schedule-total-time.gold {
    color: var(--warmth-gold);
}

.schedule-total-time.plum {
    color: var(--warmth-plum);
}

/* ==========================================================================
   RESULTS SECTION - RESULT CARDS
   ========================================================================== */

.results-section-title {
    padding: 0 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.result-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.result-card-primary {
    border-left: 4px solid var(--warmth-primary);
}

.result-card-accent {
    border-left: 4px solid var(--warmth-accent);
}

.result-card-gold {
    border-left: 4px solid var(--warmth-gold);
}

.result-card-title {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-card-icon {
    width: 24px;
    height: 24px;
}

.result-card-description {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.result-card-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.badge-primary {
    background: rgba(201, 74, 42, 0.08);
    color: var(--warmth-primary);
}

.badge-accent {
    background: rgba(42, 92, 78, 0.08);
    color: var(--warmth-accent);
}

.badge-gold {
    background: rgba(212, 146, 90, 0.08);
    color: var(--warmth-gold);
}

.results-main-message {
    margin: 2rem 0.5rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(42, 92, 78, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(201, 74, 42, 0.1);
}

.results-main-title {
    color: var(--warmth-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.results-main-icon {
    width: 28px;
    height: 28px;
}

.results-main-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.results-main-highlight {
    font-size: 1.1rem;
    color: var(--warmth-charcoal);
    font-weight: 600;
    margin: 0;
}

/* ==========================================================================
   DEEP LEARNING SECTION
   ========================================================================== */

.intro-card-icon {
    width: 24px;
    height: 24px;
    display: inline;
    vertical-align: middle;
    margin-right: 8px;
}

.level-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--warmth-charcoal);
}

.level-feature-item {
    margin-bottom: 0.5rem;
}

.result-icon-svg {
    width: 20px;
    height: 20px;
}

.strategic-level-highlighted {
    border: 3px solid var(--warmth-primary);
    box-shadow: 0 8px 30px rgba(201, 74, 42, 0.15);
    transform: scale(1.02);
    position: relative;
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.03) 0%, rgba(232, 180, 143, 0.03) 100%);
}

/* ==========================================================================
   EXPERT SECTION
   ========================================================================== */

.expert-highlight-box {
    background: rgba(201, 74, 42, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--warmth-primary);
}

.expert-highlight-title {
    margin: 0;
    font-weight: 600;
    color: var(--warmth-primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expert-highlight-icon {
    width: 20px;
    height: 20px;
}

.expert-highlight-text {
    margin: 0;
    line-height: 1.6;
    color: rgba(44, 38, 37, 0.9);
}

.expert-personal-note {
    font-style: italic;
    color: rgba(44, 38, 37, 0.8);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */

.portfolio-section {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.02) 0%, rgba(107, 76, 122, 0.02) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.portfolio-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid rgba(201, 74, 42, 0.1);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
}

.portfolio-description {
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.7);
}

.portfolio-summary {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(201, 74, 42, 0.05);
    border-radius: 20px;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-summary-text {
    font-size: 1.1rem;
    color: var(--warmth-charcoal);
    line-height: 1.6;
}

.portfolio-summary-highlight {
    color: var(--warmth-primary);
    font-size: 1rem;
}

/* ==========================================================================
   EXPERT VALIDATION SECTION
   ========================================================================== */

.expert-validation-section {
    background: rgba(42, 92, 78, 0.03);
    padding: 3rem 0;
}

.expert-validation {
    max-width: 800px;
    margin: 0 auto;
}

.expert-validation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.expert-validation-title {
    font-size: 1.8rem;
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.expert-validation-subtitle {
    font-size: 1rem;
    color: rgba(44, 38, 37, 0.7);
    margin: 0;
}

.expert-testimonial {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border-left: 5px solid var(--warmth-accent);
}

.expert-testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.expert-testimonial-avatar {
    flex-shrink: 0;
}

.expert-testimonial-photo {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.testimonial-expert-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-testimonial-info {
    flex: 1;
}

.expert-testimonial-name {
    margin: 0 0 0.3rem 0;
    color: var(--warmth-charcoal);
    font-size: 1.3rem;
}

.expert-testimonial-role {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: var(--warmth-accent);
    font-weight: 600;
}

.expert-testimonial-experience {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.7);
}

.expert-testimonial-quote {
    font-size: 3rem;
    color: var(--warmth-accent);
    margin-bottom: 1rem;
    line-height: 1;
}

.expert-testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(44, 38, 37, 0.9);
    font-size: 1.1rem;
}

.expert-testimonial-highlight {
    color: var(--warmth-accent);
}

.expert-testimonial-conclusion {
    font-weight: 600;
    color: var(--warmth-accent);
    font-size: 1.05rem;
    margin: 0;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
    padding: 4rem 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 2.5rem;
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: rgba(44, 38, 37, 0.7);
    margin: 0 auto;
    text-align: center;
    display: block;
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(201, 74, 42, 0.1);
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--warmth-secondary);
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(44, 38, 37, 0.9);
    font-size: 1rem;
}

.testimonial-card span[style*="JetBrains Mono"] {
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
    display: inline-block !important;
}

/* Targeted fix dla problemów z monospace URL */
.testimonials-grid .testimonial-card {
    min-width: 0; /* Pozwala flexbox/grid shrinkować */
    overflow: hidden; /* Ukrywa overflow */
}

.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important; /* minmax(0, 1fr) umożliwia shrinking */
}

/* ==========================================================================
   PACKAGE COMPONENTS SECTION
   ========================================================================== */

.package-components {
    max-width: 70rem;
    margin: 0 auto;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.package-item-primary {
    border-left: 4px solid var(--warmth-primary);
}

.package-item-accent {
    border-left: 4px solid var(--warmth-accent);
}

.package-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon-primary {
    background: rgba(201, 74, 42, 0.1);
}

.package-icon-accent {
    background: rgba(42, 92, 78, 0.1);
}

.package-icon-gold {
    background: rgba(212, 146, 90, 0.1);
}

.package-item-gold {
    border-left: 4px solid var(--warmth-gold);
}

.gold-svg {
    color: var(--warmth-gold);
}

.package-icon-plum {
    background: rgba(107, 76, 122, 0.1);
}

.package-item-plum {
    border-left: 4px solid var(--warmth-plum);
}

.plum-svg {
    color: var(--warmth-plum);
}

/* Package Summary Styles */
.package-total-value {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.08) 0%, rgba(42, 92, 78, 0.08) 100%);
    padding: 1.8rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(201, 74, 42, 0.15);
    margin-bottom: 2rem;
}

.package-total-title {
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-total-price {
    font-size: 2.5rem;
    color: var(--warmth-primary);
    font-weight: 700;
    margin: 0.5rem 0;
}

.package-total-description {
    margin: 1rem 0 0 0;
    color: rgba(44, 38, 37, 0.9);
    font-size: 1rem;
}

/* Package Guarantee Styles */
.package-guarantee {
    margin-top: 2rem;
    background: white;
    padding: 1.8rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    border: 2px solid var(--warmth-accent);
}

.package-guarantee-icon {
    margin-bottom: 0.8rem;
}

.package-guarantee-title {
    color: var(--warmth-accent);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.package-guarantee-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--warmth-charcoal);
}

.package-guarantee-highlight {
    color: var(--warmth-accent);
    font-weight: 700;
}

/* Certificates Section Styles */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 50rem;
    margin: 2rem auto;
}

.certificate-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.certificate-card-primary {
    border-top: 4px solid var(--warmth-primary);
}

.certificate-card-accent {
    border-top: 4px solid var(--warmth-accent);
}

.certificate-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.certificate-image img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.certificate-title {
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.certificate-title-primary {
    color: var(--warmth-primary);
}

.certificate-title-accent {
    color: var(--warmth-accent);
}

.certificate-subtitle {
    text-align: left;
    font-weight: 600;
    margin-bottom: 1rem;
}

.certificate-description {
    line-height: 1.6;
    color: rgba(44, 38, 37, 0.8);
}

.certificate-details {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(201, 74, 42, 0.05);
    border-radius: 10px;
    text-align: left;
}

.certificate-details-primary {
    border-top: 1px solid rgba(201, 74, 42, 0.1);
}

.certificate-details-accent {
    border-top: 1px solid rgba(42, 92, 78, 0.1);
}

.certificate-details-text {
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.7);
}

.certificate-highlight {
    color: var(--warmth-accent);
}

.certificate-check-icon {
    width: 16px;
    height: 16px;
    display: inline;
    vertical-align: middle;
    margin-right: 4px;
}

/* Comparison Section Styles */
.comparison-section {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.02) 0%, rgba(42, 92, 78, 0.01) 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 60rem;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.comparison-card-traditional {
    border-top: 4px solid #dc3545;
}

.comparison-card-ai {
    border-top: 4px solid var(--warmth-accent);
}

.comparison-title {
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-title-traditional {
    color: #dc3545;
}

.comparison-title-ai {
    color: var(--warmth-accent);
}

.comparison-icon {
    width: 24px;
    height: 24px;
    display: inline;
    vertical-align: middle;
    margin-right: 8px;
}

.comparison-items {
    margin-bottom: 1rem;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

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

.comparison-total {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.comparison-total-traditional {
    background: rgba(220, 53, 69, 0.1);
}

.comparison-total-ai {
    background: rgba(42, 92, 78, 0.1);
}

.comparison-total-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-total-price-traditional {
    color: #dc3545;
}

.comparison-total-price-ai {
    color: var(--warmth-accent);
}

.comparison-total-subtitle {
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.7);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-vs-circle {
    width: 60px;
    height: 60px;
    background: var(--warmth-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
}

.comparison-summary {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(42, 92, 78, 0.03) 100%);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem auto;
    max-width: 40rem;
    border: 1px solid rgba(201, 74, 42, 0.1);
}

.comparison-summary-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--warmth-primary);
    margin-bottom: 0.5rem;
}

.comparison-summary-text {
    font-size: 1rem;
    color: rgba(44, 38, 37, 0.8);
}

/* Investment Justification Section Styles */
.investment-section {
    background: linear-gradient(135deg, rgba(232, 180, 143, 0.08) 0%, rgba(251, 247, 242, 1) 100%);
    padding: 4rem 0;
}

.investment-justification {
    max-width: 950px;
    margin: 0 auto;
}

.investment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.investment-title {
    font-size: 2.3rem;
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.investment-subtitle {
    font-size: 1.1rem;
    color: rgba(44, 38, 37, 0.7);
    margin: 0;
}

.investment-testimonial {
    background: white;
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: var(--shadow-strong);
    border: 3px solid rgba(232, 180, 143, 0.3);
    position: relative;
}

.investment-expert {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

.investment-expert-image {
    flex-shrink: 0;
}

.investment-expert-photo {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.investment-expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investment-expert-info {
    flex: 1;
}

.investment-expert-name {
    margin: 0 0 0.3rem 0;
    color: var(--warmth-charcoal);
    font-size: 1.5rem;
}

.investment-expert-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--warmth-gold);
    font-weight: 600;
}

.investment-expert-experience {
    margin: 0;
    font-size: 1rem;
    color: rgba(44, 38, 37, 0.7);
}

.investment-quote-mark {
    font-size: 4rem;
    color: var(--warmth-gold);
    margin-bottom: 1.5rem;
    line-height: 1;
    text-align: center;
}

.investment-quote {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(44, 38, 37, 0.9);
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
}

.investment-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.investment-benefit {
    padding: 1.8rem;
    border-radius: 15px;
    border: 1px solid rgba(232, 180, 143, 0.2);
}

.investment-benefit-finance {
    background: rgba(232, 180, 143, 0.05);
}

.investment-benefit-roi {
    background: rgba(201, 74, 42, 0.05);
    border: 1px solid rgba(201, 74, 42, 0.2);
}

.investment-benefit-title {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.investment-benefit-title-finance {
    color: var(--warmth-gold);
}

.investment-benefit-title-roi {
    color: var(--warmth-primary);
}

.investment-benefit-icon {
    width: 20px;
    height: 20px;
}

.investment-benefit-text {
    margin: 0;
    color: rgba(44, 38, 37, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.investment-highlight {
    background: linear-gradient(135deg, rgba(232, 180, 143, 0.1) 0%, rgba(201, 74, 42, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    text-align: center;
}

.investment-highlight-title {
    margin: 0 0 1rem 0;
    color: var(--warmth-charcoal);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.investment-highlight-icon {
    width: 20px;
    height: 20px;
}

.investment-highlight-text {
    margin: 0;
    color: rgba(44, 38, 37, 0.9);
    line-height: 1.7;
    font-style: italic;
}

.investment-highlight-strong {
    color: var(--warmth-primary);
}

.investment-footer {
    text-align: center;
    margin-top: 2rem;
}

.investment-domains {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.investment-domain {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(232, 180, 143, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--warmth-charcoal);
}

.investment-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 180, 143, 0.3);
}

/* Pricing Section Styles */
.pricing-promo {
    /* Styles for pricing promo section */
}

.pricing-promo-icon {
    width: 20px;
    height: 20px;
    display: inline;
    vertical-align: middle;
    margin-right: 8px;
}

.pricing-badge-basic {
    background: rgba(44, 38, 37, 0.8);
}

.pricing-period-no-support {
    color: var(--warmth-charcoal);
    font-weight: 600;
}

.pricing-info-box {
    background: rgba(44, 38, 37, 0.05);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    text-align: center;
}

.pricing-info-text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.8);
}

.pricing-feature-icon {
    width: 16px;
    height: 16px;
}

.pricing-period-full-support {
    color: var(--warmth-primary);
    font-weight: 700;
}

.pricing-info-box-bestseller {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(232, 180, 143, 0.03) 100%);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(201, 74, 42, 0.1);
}

.pricing-info-text-bestseller {
    margin: 0;
    font-size: 0.9rem;
    color: var(--warmth-primary);
}

.pricing-badge-team {
    background: var(--warmth-accent);
}

.pricing-period-team {
    color: var(--warmth-accent);
    font-weight: 700;
}

.pricing-info-box-team {
    background: rgba(42, 92, 78, 0.05);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(42, 92, 78, 0.15);
}

.pricing-info-text-team {
    margin: 0;
    font-size: 0.9rem;
    color: var(--warmth-accent);
}

/* Mobile package slider should be shown on mobile */
.mobile-package-slider-hidden {
    display: none;
}

@media (max-width: 768px) {
    .mobile-package-slider-hidden {
        display: block !important;
    }
    
    .desktop-package-slider {
        display: none !important;
    }
}

/* Testimonial Section Styles */
.testimonial-highlight {
    color: var(--warmth-primary);
    font-weight: 600;
}

.testimonial-highlight-icon {
    width: 16px;
    height: 16px;
    display: inline;
    vertical-align: middle;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.testimonial-author-name {
    margin: 0 0 0.2rem 0;
    color: var(--warmth-charcoal);
    font-size: 1.1rem;
}

.testimonial-author-title {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.7);
}

.testimonial-result {
    background: rgba(201, 74, 42, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.testimonial-result-domain {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(44, 38, 37, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

/* Section Background Styles */
.section-program-overview {
    background: linear-gradient(135deg, rgba(251, 247, 242, 1) 0%, rgba(201, 74, 42, 0.02) 100%);
}

/* Package Item Content Styles */
.package-content-flex {
    flex: 1;
}

.package-content-title {
    margin: 0 0 0.3rem 0;
    color: var(--warmth-charcoal);
    font-size: 1.2rem;
}

.package-content-description {
    margin: 0;
    color: rgba(44, 38, 37, 0.8);
    font-size: 0.95rem;
}

.package-price-container {
    text-align: right;
    min-width: 100px;
}

.package-price-amount {
    color: var(--warmth-plum);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Countdown Section Styles */
.countdown-section {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.1), rgba(212, 146, 90, 0.05));
    padding: 2rem;
    border-radius: 20px;
    margin: 4rem auto 2rem;
    max-width: 800px;
    border: 2px solid rgba(201, 74, 42, 0.2);
    text-align: center;
}

.countdown-title {
    color: var(--warmth-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-title-icon {
    width: 24px;
    height: 24px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    min-width: 100px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--warmth-primary);
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.7);
    text-transform: uppercase;
}

.countdown-description {
    font-size: 1.1rem;
    color: rgba(44, 38, 37, 0.8);
    margin: 0;
    line-height: 1.5;
}

.countdown-highlight {
    color: var(--warmth-primary);
}

.countdown-note {
    font-size: 0.95rem;
    color: rgba(44, 38, 37, 0.6);
}

/* Visual Card Styles */
.visual-card-guarantee {
    max-width: 38rem;
    margin: 2rem auto 0;
    text-align: center;
}

.visual-card-icon {
    width: 32px;
    height: 32px;
    color: var(--warmth-primary);
}

.visual-card-title {
    margin: 0.5rem 0;
    color: var(--warmth-primary);
}

.visual-card-description {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.7);
}

/* Section Background Styles */
.section-ideal-for {
    background: linear-gradient(135deg, rgba(107, 76, 122, 0.03) 0%, rgba(201, 74, 42, 0.02) 100%);
}

/* Section Title Icon Styles */
.section-title-icon {
    width: 32px;
    height: 32px;
    display: inline;
    vertical-align: middle;
    margin-right: 8px;
}

/* Ideal For Grid Styles */
.ideal-for-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 50rem;
    margin: 2rem auto;
}

.ideal-for-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.ideal-for-card-primary {
    border-top: 3px solid var(--warmth-primary);
}

.ideal-for-card-gold {
    border-top: 3px solid var(--warmth-gold);
}

.ideal-for-card-accent {
    border-top: 3px solid var(--warmth-accent);
}

.ideal-for-card-plum {
    border-top: 3px solid var(--warmth-plum);
}

.ideal-for-icon-container {
    margin-bottom: 0.5rem;
}

.ideal-for-icon {
    width: 32px;
    height: 32px;
}

.ideal-for-icon-primary {
    color: var(--warmth-primary);
}

.ideal-for-icon-gold {
    color: var(--warmth-gold);
}

.ideal-for-icon-accent {
    color: var(--warmth-accent);
}

.ideal-for-icon-plum {
    color: var(--warmth-plum);
}

.ideal-for-title {
    color: var(--warmth-charcoal);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ideal-for-description {
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.8);
}

.ideal-for-roi {
    font-weight: 600;
    margin-top: 0.5rem;
}

.ideal-for-roi-primary {
    color: var(--warmth-primary);
}

.ideal-for-roi-gold {
    color: var(--warmth-gold);
}

.ideal-for-roi-accent {
    color: var(--warmth-accent);
}

.ideal-for-roi-plum {
    color: var(--warmth-plum);
}

/* Summary Section Styles */
.ideal-for-summary {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(42, 92, 78, 0.03) 100%);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem auto;
    max-width: 45rem;
    border: 1px solid rgba(201, 74, 42, 0.1);
}

.ideal-for-summary-title {
    font-size: 1.1rem;
    color: var(--warmth-charcoal);
    margin-bottom: 1rem;
}

.ideal-for-summary-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ideal-for-summary-icon {
    width: 16px;
    height: 16px;
    display: inline;
    vertical-align: middle;
    margin-right: 4px;
}

/* Yes/No Section Styles */
.yes-no-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 50rem;
    margin: 2rem auto;
}

.yes-no-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.yes-no-card-no {
    border-left: 3px solid #dc3545;
}

.yes-no-card-yes {
    border-left: 3px solid #28a745;
}

.yes-no-title {
    margin-bottom: 1rem;
}

.yes-no-title-no {
    color: #dc3545;
}

.yes-no-title-yes {
    color: #28a745;
}

.yes-no-icon {
    width: 20px;
    height: 20px;
    display: inline;
    vertical-align: middle;
    margin-right: 8px;
}

.yes-no-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.8);
}

/* FAQ Section Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(201, 74, 42, 0.1);
}

.faq-button {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
}

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Final Success Story Section Styles */
.section-success-story {
    background: linear-gradient(135deg, rgba(251, 247, 242, 1) 0%, rgba(232, 180, 143, 0.05) 100%);
    padding: 4rem 0;
}

.success-story {
    max-width: 1000px;
    margin: 0 auto;
}

.success-story-header {
    text-align: center;
    margin-bottom: 3rem;
}

.success-story-title {
    font-size: 2.2rem;
    color: var(--warmth-charcoal);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.success-story-subtitle {
    font-size: 1.1rem;
    color: rgba(44, 38, 37, 0.7);
    margin: 0;
}

.testimonial-expanded {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.author-info-expanded {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.author-photo-expanded {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
}

.author-photo-expanded img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name-expanded {
    margin: 0 0 0.3rem 0;
    color: var(--warmth-charcoal);
    font-size: 1.3rem;
}

.author-title-expanded {
    margin: 0;
    color: rgba(44, 38, 37, 0.7);
    font-size: 1rem;
}

.author-experience {
    margin: 0.2rem 0 0 0;
    color: rgba(44, 38, 37, 0.6);
    font-size: 0.9rem;
}

.story-quote-mark {
    font-size: 3rem;
    color: var(--warmth-secondary);
    margin-bottom: 1rem;
    line-height: 1;
}

.story-quote-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(44, 38, 37, 0.9);
    font-size: 1.1rem;
}

.story-text {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(44, 38, 37, 0.9);
}

.story-conclusion {
    font-weight: 600;
    color: var(--warmth-primary);
    margin-bottom: 1.5rem;
}

.website-preview-frame {
    border: 2px solid rgba(201, 74, 42, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.website-preview-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Final Section Styles */
.section-final {
    padding-bottom: 5rem;
}

/* Footer Styles */
footer {
    background: #2C2625;
    color: white;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 4rem;
    padding: 3rem 0 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #E8B48F;
    letter-spacing: -0.01em;
}

.footer-brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section-title {
    color: #E8B48F;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-coming-soon {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    text-align: center;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-brand-link {
    color: #E8B48F;
    text-decoration: none;
}

.website-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(44, 38, 37, 0.6);
}

/* Legacy Investment Quote Styles */
.investment-quote-icon {
    width: 40px;
    height: 40px;
    color: var(--warmth-accent);
}

/* Cookie Consent Styles */
.cookie-section-title {
    color: var(--warmth-cream);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Footer Cookie Button */
.footer-cookie-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    text-align: left;
}

.footer-cookie-btn:hover {
    color: #E8B48F;
}
    border-left: 4px solid var(--warmth-plum);
    margin-bottom: 2.5rem;
}

.plum-svg {
    color: var(--warmth-plum);
}

.package-total {
    text-align: center;
    margin: 2rem auto;
    max-width: 40rem;
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(42, 92, 78, 0.03) 100%);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 74, 42, 0.1);
}

.package-total-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--warmth-primary);
    margin-bottom: 0.5rem;
}

.package-total-subtitle {
    font-size: 1rem;
    color: rgba(44, 38, 37, 0.8);
}

.package-icon-svg {
    width: 28px;
    height: 28px;
    color: var(--warmth-primary);
}

.package-icon-accent .package-icon-svg {
    color: var(--warmth-accent);
}

.package-content {
    flex: 1;
}

.package-title {
    margin: 0 0 0.3rem 0;
    color: var(--warmth-charcoal);
    font-size: 1.2rem;
}

.package-description {
    margin: 0;
    color: rgba(44, 38, 37, 0.8);
    font-size: 0.95rem;
}

.package-price {
    text-align: right;
    min-width: 100px;
}

.package-price-value {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Mobile responsive for three pillars */
@media (max-width: 768px) {
    .three-pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .three-pillars-line {
        display: none !important;
    }
    .pillar-item {
        padding: 0 1rem !important;
        text-align: center !important;
    }
    .pillar-title {
        text-align: center !important;
    }
    .pillar-text {
        text-align: center !important;
    }
}

.problem-icon svg {
    width: 32px;
    height: 32px;
    color: var(--warmth-primary);
}

.problem-conclusion {
    max-width: 50rem;
    margin: 3rem auto 0;
    text-align: center;
}

.problem-conclusion-intro {
    font-size: 1.1rem;
    color: var(--warmth-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.problem-conclusion-title {
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--warmth-charcoal);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.problem-conclusion-title .highlight {
    color: var(--warmth-primary);
}

.problem-conclusion-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(44, 38, 37, 0.85);
}

/* ==========================================================================
   WEB.HTML MASTER HEADER SYSTEM - FROM INLINE STYLES
   MOVED FROM <style> BLOCK IN HTML HEAD
   ========================================================================== */

/* =================================== */
/* MASTER HEADER SYSTEM - ABSOLUTE CONTROL */
/* =================================== */
header, header * { box-sizing: border-box !important; }
header { 
    position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; z-index: 1000 !important; 
    background: rgba(251, 247, 242, 0.95) !important; backdrop-filter: blur(20px) !important; 
    border-bottom: 1px solid rgba(201, 74, 42, 0.1) !important; 
    margin: 0 !important; padding: 0 !important; /* ZERO header padding */
    height: auto !important; min-height: auto !important; max-height: none !important;
    transform: translateY(0) !important; transition: transform 0.4s ease !important;
}
.header-container { 
    max-width: 1240px !important; margin: 0 auto !important; 
    padding: 1.2rem 2rem 1.4rem 2rem !important; /* ALL padding here */
    display: flex !important; justify-content: space-between !important; align-items: center !important; 
    height: auto !important; min-height: auto !important; max-height: none !important;
}
.logo { 
    font-family: 'Playfair Display', serif !important; font-size: 1.75rem !important; font-weight: 600 !important; 
    color: #C94A2A !important; text-decoration: none !important; letter-spacing: -0.01em !important; 
    margin: 0 !important; padding: 0 !important; line-height: 1.2 !important;
}
.header-cta { 
    background: #C94A2A !important; color: white !important; padding: 0.8rem 1.5rem !important; 
    border-radius: 8px !important; text-decoration: none !important; font-weight: 600 !important; 
    transition: all 0.3s ease !important; line-height: 1.2 !important; white-space: nowrap !important;
}
.header-cta:hover { background: #2A5C4E !important; transform: translateY(-1px) !important; }

.mobile-menu-toggle {
    display: none !important;
    background: rgba(201, 74, 42, 0.05) !important;
    border: 1px solid rgba(201, 74, 42, 0.2) !important;
    cursor: pointer !important;
    padding: 8px !important;
    border-radius: 8px !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 40px !important;
    height: 36px !important;
    transition: all 0.2s ease !important;
}

.mobile-menu-toggle:hover {
    background: rgba(201, 74, 42, 0.1) !important;
    border-color: rgba(201, 74, 42, 0.3) !important;
}

.mobile-menu-toggle span {
    display: block !important;
    height: 2px !important;
    width: 20px !important;
    background: #C94A2A !important;
    border-radius: 1px !important;
    margin: 0 auto !important;
    transition: all 0.3s ease !important;
}

@media (max-width: 768px) {
    .header-container { 
        padding: 1rem 1.5rem !important; /* Mobile: ALL padding on container */
    }
}

/* Mobile Schedule Grid */
@media (min-width: 769px) {
    .schedule-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* =================================== */
/* BODY PADDING FOR FIXED HEADER */
/* =================================== */
body {
    padding-top: 5rem !important; /* Maksymalna kompensacja dla fixed header */
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 768px) {
    body {
        padding-top: 4rem !important; /* Mniejszy padding na mobile */
    }
}

/* =================================== */
/* STICKY CTA - ZAKOTWICZONE NA DOLE */
/* =================================== */
.sticky-cta {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(to top, rgba(251, 247, 242, 1) 0%, rgba(251, 247, 242, 0.98) 50%, rgba(251, 247, 242, 0.95) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 2px solid var(--warmth-primary) !important;
    padding: 1rem 2rem !important;
    z-index: 999 !important;
    box-shadow: 0 -10px 30px rgba(201, 74, 42, 0.1) !important;
    transform: translateY(100%) !important;
    transition: transform 0.4s var(--ease-organic) !important;
    display: none !important; /* Domyślnie ukryte */
}

.sticky-cta.show {
    transform: translateY(0) !important;
    display: block !important;
}

.sticky-cta-container {
    max-width: 1240px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 2rem !important;
}

.sticky-cta-text {
    flex: 1 !important;
}

.sticky-cta-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--warmth-primary) !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.2 !important;
}

.sticky-cta-subtitle {
    font-size: 0.9rem !important;
    color: rgba(44, 38, 37, 0.7) !important;
    line-height: 1.3 !important;
}

.sticky-cta-buttons {
    display: flex !important;
    gap: 1rem !important;
    align-items: center !important;
}

.sticky-cta-price {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--warmth-primary) !important;
    margin-right: 0.5rem !important;
}

.sticky-cta-price span {
    font-size: 0.9rem !important;
    text-decoration: line-through !important;
    color: rgba(44, 38, 37, 0.5) !important;
    margin-right: 0.5rem !important;
}

.sticky-cta-btn {
    background: var(--warmth-primary) !important;
    color: white !important;
    padding: 0.8rem 2rem !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s var(--ease-organic) !important;
    border: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.sticky-cta-btn:hover {
    background: #2A5C4E !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(201, 74, 42, 0.2) !important;
}

.sticky-cta-close {
    position: absolute !important;
    top: 0.5rem !important;
    right: 0.5rem !important;
    background: rgba(44, 38, 37, 0.1) !important;
    border: none !important;
    color: rgba(44, 38, 37, 0.6) !important;
    cursor: pointer !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    padding: 0.4rem !important;
    border-radius: 50% !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    z-index: 1000 !important;
}

.sticky-cta-close:hover {
    background: rgba(201, 74, 42, 0.1) !important;
    color: var(--warmth-primary) !important;
    transform: scale(1.1) !important;
}

@media (max-width: 768px) {
    .sticky-cta {
        padding: 0.8rem 1rem !important;
    }
    
    .sticky-cta-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
        position: relative !important;
        padding-right: 40px !important;
    }
    
    .sticky-cta-buttons {
        width: 100% !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .sticky-cta-title {
        font-size: 1rem !important;
    }
    
    .sticky-cta-subtitle {
        font-size: 0.85rem !important;
    }
    
    /* Fix mobile width for results section */
    .results-mobile {
        max-width: 100% !important;
        padding: 0 1rem !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .sticky-cta-btn {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .sticky-cta-close {
        top: 0.3rem !important;
        right: 0.3rem !important;
        width: 24px !important;
        height: 24px !important;
        font-size: 1rem !important;
    }
    
    /* Fix mobile package items - prices don't fit in blocks */
    .package-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .package-price {
        text-align: center !important;
        min-width: auto !important;
        order: 3 !important;
    }
    
    .package-price-value {
        font-size: 1.3rem !important;
        padding: 0.5rem 1rem !important;
        border-radius: 8px !important;
        display: inline-block !important;
    }
    
    /* Fix CAIWB voucher block - uses different classes */
    .package-price-container {
        text-align: center !important;
        min-width: auto !important;
        order: 3 !important;
    }
    
    .package-price-amount {
        font-size: 1.3rem !important;
        padding: 0.5rem 1rem !important;
        border-radius: 8px !important;
        display: inline-block !important;
    }
    
    /* Fix investment benefits section on mobile */
    .investment-benefits {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin: 2rem 0 !important;
    }
    
    .investment-benefit {
        padding: 1.5rem !important;
    }
    
    /* Hide duplicate experience info on mobile */
    .investment-expert-experience {
        display: none !important;
    }
    
    /* Improve Sylwia's section layout on mobile */
    .investment-expert {
        flex-direction: column !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    .investment-expert-image {
        margin-bottom: 1rem !important;
    }
    
    .investment-expert-info {
        text-align: center !important;
    }
    
    .investment-expert-name {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .investment-expert-title {
        font-size: 0.9rem !important;
        color: var(--warmth-charcoal) !important;
        opacity: 0.8 !important;
    }
    
    /* Certificate cards on mobile - simple centered layout */
    .certificate-card {
        padding: 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .certificate-image {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .certificate-content {
        text-align: center !important;
        width: 100% !important;
    }
    
    .certificate-title {
        text-align: center !important;
        font-size: 1.5rem !important;
    }
    
    .certificate-subtitle {
        text-align: center !important;
        font-size: 0.95rem !important;
    }
    
    .certificate-description {
        text-align: center !important;
        font-size: 0.9rem !important;
    }
    
    .certificate-details {
        text-align: center !important;
        margin-top: 1rem !important;
    }
}
/* ==========================================================================
   MOBILE PRICING SECTION FIXES
   ========================================================================== */

@media (max-width: 768px) {
    /* Fix pricing titles - ensure consistent height/alignment */
    .pricing-title {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        min-height: 3.5rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    /* Fix pricing buttons - prevent wrapping and make consistent */
    .pricing-cta {
        margin-top: auto !important;
        padding-top: 1rem !important;
    }
    
    .pricing-cta .btn-primary,
    .pricing-cta .btn-secondary {
        width: 100% !important;
        padding: 1rem 1.5rem !important;
        font-size: 0.95rem !important;
        line-height: 1.2 !important;
        min-height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        border-radius: 12px !important;
    }
    
    /* Fix pricing features list - smaller icons and better spacing */
    .pricing-features {
        margin: 1.5rem 0 !important;
    }
    
    .pricing-features li {
        padding: 0.4rem 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.8rem !important;
    }
    
    .pricing-feature-icon {
        width: 16px !important;
        height: 16px !important;
        margin-top: 0.1rem !important;
        flex-shrink: 0 !important;
    }
    
    .checkmark,
    .cross {
        flex-shrink: 0 !important;
        width: 16px !important;
        height: 16px !important;
    }
    
    /* Fix countdown timer - single row */
    .countdown-timer {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 0.3rem !important;
        margin: 1.5rem 0 !important;
        max-width: 100% !important;
        overflow-x: auto !important;
    }
    
    .countdown-item {
        flex: 1 1 auto !important;
        min-width: 65px !important;
        max-width: 80px !important;
        padding: 0.8rem 0.5rem !important;
        text-align: center !important;
        border-radius: 8px !important;
    }
    
    .countdown-number {
        font-size: 1.2rem !important;
        line-height: 1 !important;
        margin-bottom: 0.3rem !important;
    }
    
    .countdown-label {
        font-size: 0.7rem !important;
        line-height: 1 !important;
        text-transform: uppercase !important;
        opacity: 0.9 !important;
    }
    
    /* Mobile package cards consistency */
    .mobile-package-card .pricing-card {
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .mobile-package-card .pricing-header {
        flex-shrink: 0 !important;
    }
    
    .mobile-package-card .pricing-features {
        flex-grow: 1 !important;
    }
    
    .mobile-package-card .pricing-cta {
        flex-shrink: 0 !important;
        margin-top: auto !important;
    }
}

/* Extra small mobile adjustments */
@media (max-width: 480px) {
    .pricing-title {
        font-size: 1.2rem !important;
        min-height: 3rem !important;
    }
    
    .countdown-item {
        min-width: 55px !important;
        max-width: 70px !important;
        padding: 0.6rem 0.3rem !important;
    }
    
    .countdown-number {
        font-size: 1rem !important;
    }
    
    .countdown-label {
        font-size: 0.6rem !important;
    }
    
    .pricing-cta .btn-primary,
    .pricing-cta .btn-secondary {
        font-size: 0.85rem !important;
        padding: 0.8rem 1rem !important;
        min-height: 45px !important;
    }
}


/* ==========================================================================
   IDEAL FOR SECTION - MOBILE FIXES FOR EQUAL CARD WIDTHS
   ========================================================================== */

@media (max-width: 768px) {
    .ideal-for-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        margin: 1.5rem auto !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }
    
    .ideal-for-card {
        padding: 1.2rem 1rem !important;
        min-height: 200px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .ideal-for-icon-container {
        margin-bottom: 0.8rem !important;
        flex-shrink: 0 !important;
    }
    
    .ideal-for-icon {
        width: 28px !important;
        height: 28px !important;
    }
    
    .ideal-for-title {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
        flex-shrink: 0 !important;
    }
    
    .ideal-for-description {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        flex-grow: 1 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .ideal-for-roi {
        margin-top: auto !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        flex-shrink: 0 !important;
        text-align: center !important;
        padding: 0.4rem 0.8rem !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.7) !important;
        border: 1px solid currentColor !important;
        opacity: 0.9 !important;
    }
}

/* Extra small mobile - single column if needed */
@media (max-width: 480px) {
    .ideal-for-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .ideal-for-card {
        min-height: 180px !important;
        padding: 1rem !important;
    }
    
    .ideal-for-title {
        font-size: 0.95rem !important;
    }
    
    .ideal-for-description {
        font-size: 0.8rem !important;
    }
    
    .ideal-for-roi {
        font-size: 0.8rem !important;
    }
}


/* ==========================================================================
   HIDE SECTIONS ON MOBILE - IDEAL FOR SUMMARY AND YES/NO GRID
   ========================================================================== */

@media (max-width: 768px) {
    /* Hide "Co ich łączy?" section on mobile */
    .ideal-for-summary {
        display: none !important;
    }
    
    /* Hide YES/NO grid section on mobile */
    .yes-no-grid {
        display: none !important;
    }
}


/* ==========================================================================
   FOOTER MOBILE RESPONSIVE REDESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    /* Mobile footer main - single column layout */
    .footer-main {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        margin-bottom: 1.5rem !important;
        padding-bottom: 1.5rem !important;
        text-align: center !important;
    }
    
    /* Footer brand - centered on mobile */
    .footer-brand {
        text-align: center !important;
        gap: 0.8rem !important;
        order: 1 !important;
    }
    
    .footer-brand-name {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-brand-description {
        font-size: 0.9rem !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    /* Footer links - single column stack on mobile */
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        order: 2 !important;
    }
    
    .footer-links > div {
        text-align: center !important;
    }
    
    .footer-section-title {
        font-size: 1rem !important;
        margin-bottom: 0.8rem !important;
        color: #E8B48F !important;
    }
    
    .footer-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: center !important;
    }
    
    .footer-list li {
        margin: 0 !important;
        text-align: center !important;
    }
    
    .footer-link {
        font-size: 0.9rem !important;
        display: inline-block !important;
        padding: 0.3rem 0 !important;
    }
    
    .footer-coming-soon {
        font-size: 0.9rem !important;
        display: inline-block !important;
        padding: 0.3rem 0 !important;
    }
    
    .footer-cookie-btn {
        font-size: 0.9rem !important;
        display: inline-block !important;
        padding: 0.3rem 0 !important;
        text-align: center !important;
    }
    
    /* Footer bottom - mobile responsive credits */
    .footer-bottom {
        padding-top: 1rem !important;
        text-align: center !important;
    }
    
    .footer-credits {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.3rem !important;
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-credits span {
        display: block !important;
    }
    
    /* Hide bullet separators on mobile */
    .footer-credits span:nth-child(even) {
        display: none !important;
    }
    
    .footer-brand-link {
        color: #E8B48F !important;
        font-weight: 500 !important;
    }
}

/* Extra small mobile adjustments */
@media (max-width: 480px) {
    .footer-container {
        padding: 0 0.5rem !important;
    }
    
    .footer-brand-name {
        font-size: 1.2rem !important;
    }
    
    .footer-brand-description {
        font-size: 0.85rem !important;
        max-width: 250px !important;
    }
    
    .footer-links {
        gap: 1.2rem !important;
    }
    
    .footer-section-title {
        font-size: 0.95rem !important;
    }
    
    .footer-link,
    .footer-coming-soon,
    .footer-cookie-btn {
        font-size: 0.85rem !important;
    }
    
    .footer-credits {
        font-size: 0.75rem !important;
    }
}

