/* Downsell Page Styles */

/* Top Bar Styles */
.special-offer-bar {
    background-color: #FF5400;
    color: white;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    font-family: 'Oswald', sans-serif;
    position: relative;
    z-index: 100;
}

.special-offer-bar span {
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .special-offer-bar span {
        font-size: 14px;
    }
}

/* Hero Section Styles */
.downsell-hero {
    background-color: #0A071B;
    padding: 5px 0 5px;
    position: relative;
}

.downsell-hero .hero-badge {
    display: inline-block;
    background-color: #FF5400;
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    display: none; /* Hide the original badge */
}

.downsell-hero .hero-headline {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    max-width: 800px;
}

@media (max-width: 768px) {
    .downsell-hero .hero-headline {
        font-size: 36px;
    }
}

/* Main Content Section Styles */
.downsell-content-section {
    background-color: white;
    padding: 30px 0;
}

.downsell-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Sora', sans-serif;
}

.downsell-paragraph {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #333;
}

.downsell-paragraph.highlight {
    font-weight: 700;
    color: #FF5400;
    font-size: 1.3rem;
}

.downsell-paragraph.emphasis {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #000;
    text-align: center;
}

.downsell-offer {
    background-color: #f9f9f9;
    border: 2px solid #FF5400;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
}

.downsell-offer p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 600;
    color: #222;
}

.downsell-offer p:last-child {
    font-size: 32px;
    font-weight: 700;
    color: #FF5400;
    text-align: center;
}

/* CTA Styles */
.cta-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #FF5400;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(255, 84, 0, 0.3);
}

.cta-button:hover {
    background-color: #e64c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 84, 0, 0.4);
}

.secondary-link {
    font-size: 16px;
    color: #777;
    text-decoration: underline;
    margin-top: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.secondary-link:hover {
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .downsell-content-section {
        padding: 40px 20px;
    }
    
    .downsell-paragraph {
        font-size: 18px;
    }
    
    .downsell-paragraph.emphasis {
        font-size: 20px;
    }
    
    .downsell-offer p {
        font-size: 18px;
    }
    
    .downsell-offer p:last-child {
        font-size: 26px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 15px 30px;
    }
}

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

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

/* Summary AI Toolkit Section Styles */
.summary-ai-toolkit {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.summary-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffe4da;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid #FF5400;
}

.summary-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.summary-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #0a2540, #1a3c61);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    gap: 8px;
}

.summary-headline {
    font-size: 28px;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.summary-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.summary-point {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #FF5400;
}

.summary-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.summary-point.highlight {
    border: 2px solid #FF5400;
    background: #ffffff;
}

.point-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(26, 60, 97, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #1a3c61;
    position: relative;
}

.point-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: #FF5400;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.point-content {
    flex: 1;
}

.point-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #1a3c61;
    font-weight: 700;
}

.point-content p {
    margin: 0 0 15px;
    font-size: 16px;
    color: #505050;
    line-height: 1.5;
}

.point-value {
    display: inline-block;
    background: rgba(255, 69, 0, 0.1);
    color: #FF5400;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
}

.hot-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FF5400;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(255, 69, 0, 0.3);
    transform: rotate(2deg);
}

/* Final CTA Section Styles */
.final-cta-section {
    padding: 30px 0 60px;
    background-color: #f8f9fa;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

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

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

.green-underline {
    height: 4px;
    width: 100px;
    background-color: #4CAF50;
    margin: 15px auto 40px;
    border-radius: 2px;
}

.price-box {
    max-width: 650px;
    margin: 0 auto 40px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: none !important;
    border: 0px solid !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none !important;
}

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

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

.price-discount {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.price-value-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.price-line {
    height: 3px;
    width: 80px;
    background-color: #FF0000;
    display: inline-block;
    margin: 0 15px;
}

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

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

@media (max-width: 768px) {
    .summary-content {
        padding: 25px;
    }
    
    .summary-point {
        flex-direction: column;
        padding: 20px;
    }
    
    .point-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .hot-badge {
        right: 10px;
    }
    
    .final-cta-headline {
        font-size: 2rem;
    }

    .green-underline {
        width: 100px;
        margin: 15px auto 30px;
    }
    
    .price-value {
        font-size: 56px;
    }
    
    .price-label {
        font-size: 16px;
    }
    
    .price-discount {
        font-size: 12px;
        padding: 5px 10px;
    }

    .price-line {
    }
    
    .price-tagline {
        font-size: 16px;
    }
    
    .button-content {
        flex-direction: column;
    }
    
    .button-main {
        font-size: 18px;
    }
    
    .button-sub {
        font-size: 14px;
    }
} 