/* TAROT Institute - Landing Styles */
/* Created: 13.10.2025 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4A148C;
    --secondary: #FFD700;
    --accent: #FF6B6B;
    --dark: #1A1A2E;
    --light: #F8F9FA;
    --gradient-hero: linear-gradient(135deg, #4A148C 0%, #1A1A2E 100%);
    --gradient-cta: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 100%);
    --gradient-gold: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    --shadow-card: 0 10px 30px rgba(74, 20, 140, 0.2);
    --shadow-button: 0 5px 15px rgba(255, 107, 107, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(255,215,0);stop-opacity:0.1" /><stop offset="100%" style="stop-color:rgb(255,107,107);stop-opacity:0.1" /></linearGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23grad)"/><circle cx="1100" cy="500" r="100" fill="url(%23grad)"/><circle cx="600" cy="50" r="60" fill="url(%23grad)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

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

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero .subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.stars {
    color: var(--secondary);
    font-size: 20px;
}

/* CTA Buttons - УВЕЛИЧЕНЫ В 2+ РАЗА */
.cta-button {
    display: inline-block;
    background: var(--gradient-cta);
    color: white;
    padding: 24px 60px;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button);
    animation: fadeInUp 1s ease 0.6s both, pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.cta-button-secondary {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 22px 60px;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    margin: 30px auto;
    text-align: center;
}

.cta-button-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.urgency {
    margin-top: 20px;
    font-size: 18px;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
}

.countdown-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

/* Problem Section */
.problems {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Solution Section */
.solution {
    padding: 80px 20px;
    background: white;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-content h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 30px;
}

.solution-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent);
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: var(--gradient-hero);
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    font-size: 40px;
    color: var(--secondary);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.benefit-text p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Course Program */
.program {
    padding: 80px 20px;
    background: white;
}

.modules {
    max-width: 900px;
    margin: 50px auto 0;
}

.module {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 16px;
    border-left: 5px solid var(--secondary);
    transition: all 0.3s ease;
}

.module:hover {
    box-shadow: var(--shadow-card);
    transform: translateX(5px);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.module-title {
    font-size: 24px;
    color: var(--primary);
}

.module-duration {
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.module-content ul {
    list-style: none;
    padding-left: 0;
}

.module-content li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.module-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-rating {
    color: var(--secondary);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    color: #555;
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    background: white;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: var(--gradient-hero);
    z-index: 0;
}

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

.pricing .section-title {
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.price-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.price-card.featured {
    border: 3px solid var(--secondary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-cta);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.price-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 30px;
}

.price-old {
    font-size: 20px;
    text-decoration: line-through;
    color: #999;
}

.price-new {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin: 10px 0;
}

.price-save {
    color: #28a745;
    font-weight: 600;
    font-size: 16px;
}

.price-features {
    list-style: none;
    margin: 30px 0;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

.price-features li.disabled {
    opacity: 0.3;
}

.price-features li.disabled::before {
    content: '✗';
    color: #dc3545;
}

.price-button {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient-cta);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button);
}

.price-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

/* FAQ */
.faq {
    padding: 80px 20px;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer-content {
    padding: 0 25px 25px;
    line-height: 1.8;
    color: #555;
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta .cta-button {
    font-size: 24px;
    padding: 20px 50px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 20px 30px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive - MOBILE FIRST */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 12px 8px;
    }
    
    .countdown-number {
        font-size: 28px;
    }
    
    .countdown-label {
        font-size: 11px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-button, .cta-button-secondary {
        width: 100%;
        padding: 20px 30px;
        font-size: 18px;
    }
    
    .problem-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .module {
        padding: 20px;
    }
    
    .module-title {
        font-size: 20px;
    }
    
    .price-features li {
        font-size: 14px;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    .final-cta .cta-button {
        font-size: 18px;
        padding: 16px 30px;
    }
}

/* TODO: Add your custom styles below */

