/* How It Works Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Syne', sans-serif;
    background-image: url('../images/background-website.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 4rem;
    max-width: 1500px;
    margin: 0 auto;
}

.hero-bg-decoration {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #b0bec5;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64b5f6;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0bec5;
    margin-top: 0.5rem;
}

/* Process Overview Section */
.process-overview-section {
    padding: 2rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.process-overview-section::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.process-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.process-overview-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(100, 181, 246, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}

.process-overview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 181, 246, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 181, 246, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(100, 181, 246, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
}

.process-overview-card:hover .card-icon {
    background: rgba(100, 181, 246, 0.2);
    border-color: rgba(100, 181, 246, 0.5);
    transform: scale(1.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1rem;
    color: #b0bec5;
    line-height: 1.6;
}

/* Detailed Steps Section */
.detailed-steps-section {
    padding: 2rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.detailed-steps-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(100, 181, 246, 0.1) 100%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 1;
}

.steps-container {
    position: relative;
    z-index: 2;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-item:hover {
    transform: translateY(-3px);
    border-color: rgba(100, 181, 246, 0.3);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    min-width: 100px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.1rem;
    color: #b0bec5;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
}

.step-features li {
    color: #b0bec5;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #64b5f6;
    font-weight: bold;
}

/* Features Section */
.features-section {
    padding: 2rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(100, 181, 246, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 181, 246, 0.1);
    border-radius: 12px;
    color: #ffffff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: #b0bec5;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 2rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 181, 246, 0.3);
}

.testimonial-text {
    font-size: 1rem;
    color: #b0bec5;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #64b5f6, #9c27b0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #b0bec5;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 2rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(100, 181, 246, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: #b0bec5;
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-toggle {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    padding: 2rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    color: #b0bec5;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #64b5f6 0%, #9c27b0 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Syne', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(100, 181, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
    }
    
    .process-overview-section,
    .detailed-steps-section,
    .features-section,
    .testimonials-section,
    .faq-section,
    .cta-section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .process-overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-item,
    .step-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .step-number {
        font-size: 3rem;
        min-width: auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .process-overview-section,
    .detailed-steps-section,
    .features-section,
    .testimonials-section,
    .faq-section,
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .process-overview-card,
    .step-item,
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
