/* Launch Special Page Styles */

/* Launch Hero Section */
.launch-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.475) 0%, rgba(30, 41, 59, 0.55) 100%),
                url('static/spp.webp') center center / cover no-repeat;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.launch-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 1;
}

.launch-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #dc2626 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    animation: pulse-badge 2s infinite;
}

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

.launch-badge .rocket-emoji {
    font-size: 1.5rem;
    animation: rocket-bounce 3s infinite ease-in-out;
}

.launch-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.launch-title .highlight-text {
    color: var(--accent-color);
    display: block;
    font-size: 0.9em;
    margin-top: 0.5rem;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-original {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.price-original .strikethrough {
    text-decoration: line-through;
    opacity: 0.8;
}

.price-special {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--accent-color);
    font-weight: 800;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price-special .currency {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.price-special .amount {
    font-size: 5rem;
    line-height: 1;
}

.price-special .cents {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.launch-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
}

.launch-subtitle {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-large i {
    margin-right: 0.5rem;
}

/* What's Included Section */
.whats-included {
    padding: 100px 20px;
    background: var(--light-surface);
}

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

.included-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.included-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.included-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.included-icon i {
    font-size: 2rem;
    color: white;
}

.included-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.included-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* After 3 Months Section */
.after-three-months {
    padding: 100px 20px;
    background: white;
}

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

.option-card {
    background: white;
    border: 3px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.option-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
}

.option-a {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.02) 0%, white 50%);
}

.option-b {
    border-color: #a855f7;
}

.option-c {
    border-color: #10b981;
}

.option-letter {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
}

.option-b .option-letter {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.option-c .option-letter {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.option-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
}

.option-price {
    text-align: center;
    margin: 1.5rem 0;
}

.option-price .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.option-b .option-price .price-amount {
    color: #a855f7;
}

.option-c .option-price .price-amount {
    color: #10b981;
}

.option-price .price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.option-card > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.option-features {
    list-style: none;
    padding: 0;
}

.option-features li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.option-features i {
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.option-b .option-features i {
    color: #a855f7;
}

.option-c .option-features i {
    color: #10b981;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 20px;
    background: var(--gradient-dark);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-text h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.why-text > p {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.why-points {
    display: grid;
    gap: 2rem;
}

.why-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-point:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.why-point i {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.why-point h4 {
    color: var(--text-light);
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.why-point p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Claim Your Spot Section */
.claim-spot {
    padding: 100px 20px;
    background: var(--light-surface);
}

.urgency-box {
    background: linear-gradient(135deg, #ff6b35 0%, #dc2626 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

.urgency-box i {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: fire-flicker 2s infinite;
}

@keyframes fire-flicker {
    0%, 100% { transform: scale(1) rotate(-5deg); opacity: 1; }
    25% { transform: scale(1.1) rotate(0deg); opacity: 0.9; }
    75% { transform: scale(1.05) rotate(5deg); opacity: 0.95; }
}

.urgency-box h4 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.urgency-box p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.form-note i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .launch-title {
        font-size: 2.5rem;
    }

    .launch-title .highlight-text {
        font-size: 1em;
        margin-top: 0.25rem;
    }

    .price-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .price-special .amount {
        font-size: 3.5rem;
    }

    .price-special .currency,
    .price-special .cents {
        font-size: 1.875rem;
    }

    .price-label {
        font-size: 0.875rem;
    }

    .launch-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 1.5rem 0 2rem;
    }

    .feature-item {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .feature-item span {
        white-space: normal;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .why-text h2 {
        font-size: 1.875rem;
    }

    .why-text > p {
        font-size: 1.125rem;
    }

    .why-point {
        flex-direction: column;
        text-align: center;
    }

    .why-point i {
        font-size: 2rem;
    }

    .urgency-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .launch-hero {
        padding: 100px 15px 60px;
    }

    .launch-title {
        font-size: 2rem;
    }

    .launch-title .highlight-text {
        font-size: 0.9em;
    }

    .launch-badge {
        font-size: 0.75rem;
        padding: 10px 18px;
    }

    .price-section {
        padding: 1.25rem;
    }

    .price-special .amount {
        font-size: 3rem;
    }

    .price-special .currency,
    .price-special .cents {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .included-card,
    .option-card {
        padding: 2rem 1.5rem;
    }
}

/* CRM Page Specific Styles */

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #dc2626;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.problem-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Industry Solutions */
.industry-solutions {
    padding: 80px 20px;
    background: var(--background-primary);
}

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

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--accent-color);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.industry-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Success Stories */
.success-stories {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

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

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.story-quote {
    margin-bottom: 2rem;
}

.story-quote i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.story-quote p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.story-author h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.story-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.story-results {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.result {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.5rem;
}

/* Responsive adjustments for CRM sections */
@media (max-width: 768px) {
    .problems-grid,
    .industries-grid,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card,
    .industry-card,
    .story-card {
        padding: 1.5rem;
    }
    
    .problem-icon,
    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}
