/* 
 * Zestaw Mistrzowski (Master Set) Landing Page Styles
 * Mobile-first approach
 */

/* Hero Section */
.zestaw-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a3c61 100%);
    color: #fff;
    padding: 2.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.zestaw-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/hero-pattern.png');
    opacity: 0.1;
    z-index: 0;
}

.zestaw-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
}

.exclusive-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 152, 0, 0.25);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 152, 0, 0.5);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
    transform: translateY(0);
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.exclusive-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    color: #FF9800;
}

.exclusive-headline {
    font-size: 0.85rem;
    font-weight: 800;
    margin: 0;
    color: #FF9800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-headline-container {
    margin-bottom: 2rem;
}

.hero-headline {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.highlight-text {
    background: rgba(255, 87, 34, 0.25);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    color: #FF5722;
    white-space: nowrap;
    display: inline-block;
}

.hero-subheadline {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.hero-benefits {
    margin: 1.5rem 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.benefit:last-child {
    margin-bottom: 0;
}

.benefit-checkmark {
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 0.5rem;
    line-height: 1.2;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.3;
}

.hero-countdown-container {
    margin-bottom: 1.5rem;
}

.hero-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 87, 34, 0.15);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.countdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: #FF5722;
}

.countdown-text {
    font-size: 1rem;
    margin: 0;
    color: #fff;
    font-weight: 600;
}

#countdown {
    font-weight: 700;
    color: #FF5722;
    background: rgba(255, 87, 34, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    margin-left: 0.25rem;
    animation: countdown-blink 1s infinite;
    display: inline-block;
}

.hero-cta {
    margin: 1.8rem 0 1.5rem;
}

.cta-button {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.cta-button.primary:hover {
    background: #E64A19;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}

.cta-guarantee {
    font-size: 0.9rem;
    color: #4CAF50;
    margin-top: 0.5rem;
    font-weight: 600;
}

.social-proof-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.social-proof-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-proof-pill p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.section-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 2;
}

.divider-img {
    width: 100%;
    display: block;
}

/* Empathy Section */
.empathy-section {
    padding: 3rem 1rem;
    background-color: #f8f9fa;
}

.empathy-content {
    max-width: 100%;
    margin: 0 auto;
}

.empathy-lead {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #333;
}

.empathy-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.text-highlight {
    background: linear-gradient(transparent 50%, rgba(255, 193, 7, 0.3) 50%);
    padding: 0 0.25rem;
    font-weight: 500;
}

/* Reality Check Section */
.reality-section {
    padding: 3rem 1rem;
    background-color: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.reality-content {
    max-width: 100%;
    margin: 0 auto;
}

.section-headline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #333;
}

.reality-points {
    margin-top: 1.5rem;
}

.reality-point {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.reality-point:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF5722;
    font-size: 1.5rem;
    line-height: 1;
}

/* Pain Points Section */
.pain-points-section {
    padding: 3rem 1rem;
    background-color: #f8f9fa;
}

.pain-points-content {
    max-width: 100%;
    margin: 0 auto;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pain-point-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pain-point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
    color: #FF5722;
}

.pain-point-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}

.pain-point-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0;
}

.pain-conclusion {
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: #555;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

/* Special Offer Section */
.special-offer-section {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #1a3c61 0%, #0a2540 100%);
    color: #fff;
    position: relative;
}

.special-offer-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: #FF5722;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.offer-subheadline {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.attention-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 2rem;
}

.attention-box p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Product Bundle Section */
.product-bundle-section {
    padding: 3rem 1rem;
    background-color: #fff;
}

.product-bundle-content {
    max-width: 100%;
    margin: 0 auto;
}

.bundle-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bundle-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    margin: 0;
    position: relative;
    display: inline-block;
}

.bundle-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FF5722;
    border-radius: 2px;
}

.bundle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.bundle-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.bundle-item:hover {
    transform: translateY(-5px);
}

.bundle-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(26, 60, 97, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: #1a3c61;
}

.bundle-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.bundle-item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.bundle-item-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.03);
    padding: 0.75rem 1rem;
    border-radius: 6px;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    margin: 0;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.pricing-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    margin: 0;
}

.pricing-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.savings .pricing-value {
    color: #4CAF50;
}

.special-price .pricing-label,
.special-price .pricing-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FF5722;
}

.pricing-message {
    text-align: center;
    margin-top: 1.5rem;
}

.pricing-message p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

/* Key Benefits Section */
.key-benefits-section {
    padding: 3rem 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.key-benefits-content {
    max-width: 100%;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0;
}

/* Connection & Vision Section */
.connection-section {
    padding: 3rem 1rem;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.connection-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.connection-points p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

/* Fear of Missing Out Section */
.fomo-section {
    padding: 3rem 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.fomo-content {
    max-width: 100%;
    margin: 0 auto;
}

.fomo-scenarios {
    margin-bottom: 2.5rem;
}

.fomo-scenario {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.fomo-scenario:before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #F44336;
    font-size: 1.2rem;
    font-weight: bold;
}

.vision-alternative {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.vision-alternative h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.timeline {
    margin-top: 1.5rem;
}

.timeline-item {
    display: flex;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

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

.timeline-marker {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: #1a3c61;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    margin-right: 0.75rem;
    white-space: nowrap;
}

.timeline-description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
    padding-top: 0.25rem;
}

/* Final Call to Action Section */
.final-cta-section {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #0a2540 0%, #1a3c61 100%);
    color: #fff;
}

.final-cta-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.cta-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button-container {
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    width: 100%;
}

.cta-button.primary {
    background: #FF5722;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.cta-button.primary:hover {
    background: #E64A19;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.alternative-choice {
    margin-top: 2rem;
}

.alternative-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.alternative-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-content {
        max-width: 90%;
        padding: 2rem 0;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subheadline {
        font-size: 1.3rem;
    }
    
    .empathy-content,
    .reality-content,
    .pain-points-content,
    .special-offer-content,
    .product-bundle-content,
    .key-benefits-content,
    .connection-content,
    .fomo-content,
    .final-cta-content {
        max-width: 90%;
    }
    
    .pain-points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bundle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-button {
        width: auto;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .hero-content {
        max-width: 80%;
        padding: 3rem 0;
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .hero-subheadline {
        font-size: 1.5rem;
    }
    
    .empathy-content,
    .reality-content,
    .pain-points-content,
    .special-offer-content,
    .product-bundle-content,
    .key-benefits-content,
    .connection-content,
    .fomo-content,
    .final-cta-content {
        max-width: 80%;
    }
    
    .pain-points-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animation Effects */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.cta-button.primary {
    animation: pulse 2s infinite;
}

/* Countdown Animation */
@keyframes countdown-blink {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

#countdown {
    animation: countdown-blink 1s infinite;
}

/* Focus on Mobile Experience */
@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .section-headline {
        font-size: 1.4rem;
    }
    
    .bundle-title {
        font-size: 1.5rem;
    }
    
    .bundle-item {
        padding: 1.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-marker {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .timeline-description {
        padding-left: 0;
    }
}

/* Problem Amplification Section */
.problem-section {
    padding: 4rem 1rem;
    background-color: #fff;
}

.problem-content {
    max-width: 100%;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #FF5722;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-align: center;
}

.problem-content .section-headline {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    color: #222;
    text-align: center;
}

.text-underline {
    position: relative;
    display: inline-block;
}

.text-underline:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FF5722;
    border-radius: 3px;
}

.problem-scenario {
    display: flex;
    margin-bottom: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
}

.scenario-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(26, 60, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    color: #1a3c61;
}

.scenario-content {
    flex-grow: 1;
}

.scenario-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a3c61;
}

.scenario-description {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 1rem;
}

.scenario-stat {
    background: rgba(255, 87, 34, 0.08);
    border-left: 3px solid #FF5722;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF5722;
    margin-right: 0.8rem;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    line-height: 1.3;
    color: #555;
}

.problem-divider {
    text-align: center;
    position: relative;
    margin: 3rem 0 2rem;
}

.problem-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
    z-index: 0;
}

.divider-text {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #777;
    letter-spacing: 1px;
}

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

.consequence-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.consequence-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #1a3c61;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.consequence-content {
    flex-grow: 1;
}

.consequence-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: #444;
}

.problem-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 87, 34, 0.08);
    border-radius: 8px;
}

.cta-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .problem-content .section-headline {
        font-size: 2rem;
    }
    
    .consequences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .problem-content {
        max-width: 80%;
    }
    
    .problem-content .section-headline {
        font-size: 2.2rem;
    }
}

/* Solution Bridge Section */
.solution-bridge-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #1a3c61 0%, #0a2540 100%);
    color: #fff;
    position: relative;
}

.solution-bridge-content {
    max-width: 100%;
    margin: 0 auto;
}

.bridge-top {
    text-align: center;
    margin-bottom: 3rem;
}

.bridge-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.bridge-badge svg {
    margin-right: 0.6rem;
}

.bridge-headline {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: #fff;
}

.bridge-subheadline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.key-components {
    margin: 2.5rem 0;
}

.component-card {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.component-card:last-child {
    margin-bottom: 0;
}

.component-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
}

.component-icon.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.component-content {
    flex-grow: 1;
}

.component-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    color: #ff0000;
}

.strikethrough {
    position: relative;
    display: inline-block;
}

.strikethrough:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #FF5722;
    top: 50%;
    left: 0;
    transform: rotate(-5deg);
}

.component-solution {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.component-solution strong {
    color: #4CAF50;
}

.bridge-offer-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-box-header {
    background: rgba(255, 87, 34, 0.9);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-box-header svg {
    margin-right: 0.8rem;
}

.offer-box-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.offer-box-content {
    padding: 1.5rem;
    text-align: center;
}

.offer-message {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #fff;
}

.offer-price {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #fff;
}

.regular-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 1rem;
    margin-left: 10px;
}

.discount-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF5722;
    margin-bottom: 0px;
}

.offer-savings {
    margin-top: 1rem;
}

.savings-badge {
    display: inline-block;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #4CAF50;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .solution-bridge-content {
        max-width: 90%;
    }
    
    .bridge-headline {
        font-size: 2.2rem;
    }
    
    .bridge-subheadline {
        font-size: 1.2rem;
    }
    
    .component-card {
        padding: 2rem;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .solution-bridge-content {
        max-width: 80%;
    }
    
    .bridge-headline {
        font-size: 2.6rem;
    }
    
    .key-components {
        display: flex;
        gap: 2rem;
    }
    
    .component-card {
        width: 50%;
        margin-bottom: 0;
    }
    
    .offer-box-content {
        padding: 2rem;
    }
}

/* Value Proposition Showcase Section */
.value-showcase-section {
    padding: 4rem 1rem;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.value-showcase-content {
    max-width: 100%;
    margin: 0 auto;
}

.value-showcase-content .section-headline {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.3;
    color: #222;
}

.product-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.product-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
    position: relative;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbe1e7;
}

.product-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FF5722;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(255, 87, 34, 0.3);
}

.product-separator {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #1a3c61;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(26, 60, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.product-image img {
    max-width: 50px;
    max-height: 50px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a3c61;
    line-height: 1.3;
}

.product-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

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

.detail-icon {
    flex-shrink: 0;
    margin-right: 0.8rem;
    color: #4CAF50;
}

.detail-text {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #444;
}

.detail-item.highlight {
    background: rgba(255, 152, 0, 0.1);
    padding: 0.8rem;
    border-radius: 6px;
    border-left: 3px solid #FF9800;
}

.detail-item.highlight .detail-icon {
    color: #FF9800;
}

.product-value {
    text-align: center;
    margin-top: 1.5rem;
}

.value-tag {
    display: inline-block;
    background: rgba(26, 60, 97, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    color: #1a3c61;
}

.value-tag span {
    font-weight: 700;
    font-size: 1.1rem;
}

.total-value-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px dashed #ccc;
    margin: 0 auto;
    max-width: 500px;
}

.total-row {
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.total-row:last-of-type {
    border-bottom: none;
}

.total-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.total-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.total-row.special {
    background: rgba(255, 87, 34, 0.05);
    margin: 0.5rem -1.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 87, 34, 0.2);
    border-bottom: 1px solid rgba(255, 87, 34, 0.2);
}

.total-row.highlight .total-label,
.total-row.highlight .total-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FF5722;
}

.total-row.savings .total-value {
    color: #4CAF50;
}

.value-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.8rem;
}

.countdown-inline {
    background: rgba(255, 87, 34, 0.1);
    color: #FF5722;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    animation: countdown-blink 1s infinite;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .value-showcase-content {
        max-width: 90%;
    }
    
    .value-showcase-content .section-headline {
        font-size: 2rem;
    }
    
    .product-grid {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
    }
    
    .product-card {
        width: 45%;
    }
    
    .product-separator {
        margin: 0 1.5rem;
    }
    
    .total-value-summary {
        padding: 2rem;
        max-width: 650px;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .value-showcase-content {
        max-width: 80%;
    }
    
    .value-showcase-content .section-headline {
        font-size: 2.2rem;
    }
    
    .product-card {
        padding: 2.5rem;
    }
}

/* Social Proof Section */
.social-proof-section {
    padding: 4rem 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.social-proof-content {
    max-width: 100%;
    margin: 0 auto;
}

.social-proof-content .section-headline {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    color: #222;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-width: 120px;
    flex: 1;
}

.trust-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a3c61;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.3;
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #eee;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    color: rgba(26, 60, 97, 0.1);
    position: absolute;
    top: -5px;
    left: -5px;
    width: 32px;
    height: 32px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    font-style: italic;
}

.testimonial-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid rgba(26, 60, 97, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.author-business {
    font-size: 0.8rem;
    color: #666;
}

.testimonial-rating {
    padding: 0.5rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 20px;
}

.stars {
    color: #FFC107;
    font-size: 1.2rem;
    line-height: 1;
}

.verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    width: fit-content;
    margin: 0 auto;
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.2);
    font-size: 0.9rem;
}

.verified-badge svg {
    margin-right: 0.5rem;
}

/* Tablet Styles for Social Proof */
@media (min-width: 768px) {
    .social-proof-content {
        max-width: 90%;
    }
    
    .social-proof-content .section-headline {
        font-size: 2rem;
    }
    
    .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-item {
        flex: 0 1 calc(33% - 1.5rem);
    }
}

/* Desktop Styles for Social Proof */
@media (min-width: 992px) {
    .social-proof-content {
        max-width: 80%;
    }
    
    .social-proof-content .section-headline {
        font-size: 2.2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
}

/* Decision Accelerator Section */
.decision-accelerator-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #0a2540 0%, #1a3c61 100%);
    color: #fff;
    position: relative;
}

.decision-accelerator-content {
    max-width: 100%;
    margin: 0 auto;
}

.urgent-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 87, 34, 0.9);
    padding: 0.8rem 1rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
    animation: pulse 2s infinite;
}

.urgent-banner svg {
    margin-right: 0.8rem;
}

.urgent-banner span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.decision-accelerator-content .section-headline {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #fff;
}

.risk-reversal-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.risk-reversal-header {
    background: rgba(76, 175, 80, 0.2);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(76, 175, 80, 0.3);
}

.risk-reversal-header svg {
    color: #4CAF50;
    margin-right: 0.8rem;
}

.risk-reversal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #4CAF50;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.risk-reversal-body {
    padding: 1.5rem;
    text-align: center;
}

.risk-reversal-body p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.two-paths-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.path-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.path-column {
    border-radius: 10px;
    overflow: hidden;
}

.path-column.success {
    border: 1px solid rgba(76, 175, 80, 0.3);
    background: rgba(76, 175, 80, 0.05);
}

.path-column.negative {
    border: 1px solid rgba(244, 67, 54, 0.3);
    background: rgba(244, 67, 54, 0.05);
}

.path-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.path-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.path-icon.positive {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.path-icon.negative {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
}

.path-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
}

.path-benefits,
.path-consequences {
    padding: 1.5rem;
    margin: 0;
    list-style-type: none;
}

.path-benefits li,
.path-consequences li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.path-benefits li:last-child,
.path-consequences li:last-child {
    margin-bottom: 0;
}

.path-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.path-consequences li:before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #F44336;
    font-weight: bold;
}

.final-offer-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.final-price-tag {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF5722;
    margin-bottom: 0.5rem;
}

.price-savings {
    display: inline-block;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.final-timer {
    margin-bottom: 2rem;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 8px;
    padding: 0.8rem;
}

.final-timer p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

#countdown-final {
    color: #FF5722;
    background: rgba(255, 87, 34, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    margin-left: 0.25rem;
    animation: countdown-blink 1s infinite;
    display: inline-block;
}

.final-cta {
    margin-bottom: 1.5rem;
}

.cta-button.jumbo {
    font-size: 1.2rem;
    padding: 1.2rem 1rem;
    width: 100%;
}

.payment-options {
    margin-top: 1rem;
}

.payment-options img {
    max-width: 200px;
    opacity: 0.8;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.security-badge {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.security-badge svg {
    margin-right: 0.4rem;
}

.decline-option {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.decline-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

.decline-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Tablet Styles for Decision Accelerator */
@media (min-width: 768px) {
    .decision-accelerator-content {
        max-width: 90%;
    }
    
    .decision-accelerator-content .section-headline {
        font-size: 2.2rem;
    }
    
    .two-paths-container {
        flex-direction: row;
    }
    
    .path-column {
        width: 50%;
    }
    
    .path-separator {
        padding: 0 1rem;
    }
    
    .cta-button.jumbo {
        width: auto;
        padding: 1.2rem 3rem;
    }
}

/* Desktop Styles for Decision Accelerator */
@media (min-width: 992px) {
    .decision-accelerator-content {
        max-width: 80%;
    }
    
    .decision-accelerator-content .section-headline {
        font-size: 2.6rem;
    }
    
    .final-offer-box {
        padding: 3rem;
    }
}
