/* Grand Slam Offer Specific Styles */

/* Hero Adjustments for Grand Slam */
.grand-slam-hero {
    padding-top: 120px;
    min-height: 100vh;
}

.grand-slam-badge {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 1rem 0;
    opacity: 0.9;
}

/* Grand Slam CTA Buttons */
.grand-slam-cta {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border: none;
}

.grand-slam-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.grand-slam-primary {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.grand-slam-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

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

.problem-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
}

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

.offer-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-header {
    margin-bottom: 1.5rem;
}

.offer-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-value {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 0.9rem;
}

.offer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.offer-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.delivery-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Special Card */
.special-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(245, 158, 11, 0.05));
}

.special-badge {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
}

.comparison-box {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.comparison-item {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.comparison-item.bad {
    background: rgba(239, 68, 68, 0.1);
}

.comparison-item.good {
    background: rgba(34, 197, 94, 0.1);
}

.comparison-item span {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.comparison-item p {
    font-style: italic;
    color: var(--text-secondary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.result-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.result-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Bonuses Section */
.bonuses-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.03), transparent);
}

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

.bonus-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.bonus-number {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bonus-value {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.bonus-card ul {
    list-style: none;
    padding: 0;
}

.bonus-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
}

.pricing-card {
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(245, 158, 11, 0.1));
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.price-old {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-new {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.price-savings {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 1rem;
}

.price-after {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 1rem;
}

.discount-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.exchange-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
}

.exchange-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.exchange-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

/* ROI Section */
.roi-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
}

.roi-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
}

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

.roi-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.roi-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.roi-value {
    font-weight: 600;
    color: var(--text-primary);
}

.roi-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 2px solid var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.roi-result {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.roi-metric {
    text-align: center;
}

.roi-metric.featured {
    transform: scale(1.1);
}

.metric-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
}

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

.guarantee-card {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.guarantee-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.05), transparent);
}

.urgency-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
}

.urgency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.urgency-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.urgency-item ul {
    list-style: none;
    padding: 0;
}

.urgency-item li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.urgency-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.seats-counter {
    text-align: center;
}

.seats-taken {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #f59e0b;
}

.seats-label {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
}

.seats-remaining {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.big-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deadline {
    text-align: center;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
}

.deadline-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.deadline-date {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ef4444;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    padding: 2rem;
}

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

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05));
}

.cta-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.steps-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
}

.final-cta {
    margin-top: 3rem;
}

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

.grand-slam-final {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
}

.grand-slam-final:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4);
}

.cta-alternatives {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.ps-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
    text-align: left;
}

.ps-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.ps-text strong {
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .problems-grid,
    .offer-grid,
    .bonuses-grid,
    .guarantee-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-content {
        grid-template-columns: 1fr;
    }
    
    .roi-columns {
        grid-template-columns: 1fr;
    }
    
    .roi-result {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .steps-timeline {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .cta-alternatives {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-30px) translateX(20px);
    }
    66% {
        transform: translateY(20px) translateX(-20px);
    }
}

@keyframes liquidMove {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    33% {
        transform: rotate(120deg) scale(1.1);
    }
    66% {
        transform: rotate(240deg) scale(0.9);
    }
}

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