:root {
    --primary-color: #6A1B9A;
    --secondary-color: #9C27B0;
    --accent-color: #E91E63;
    --background-color: #F5F5F5;
    --text-color: #333;
    --text-light: #666;
    --gradient-primary: linear-gradient(135deg, #6A1B9A 0%, #9C27B0 100%);
    --gradient-accent: linear-gradient(135deg, #E91E63 0%, #FF4081 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header Styles */
header {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(233, 30, 99, 0.05) 100%);
}

header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.subheader {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* CTA Button Styles */
.cta-button, 
.secondary-cta,
.calculator-block .secondary-cta {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
}

.secondary-cta {
    background: var(--gradient-accent);
    color: white;
    font-size: 0.9rem;
}

.cta-button::before,
.secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
}

.cta-button:hover::before,
.secondary-cta:hover::before {
    left: 100%;
}

.cta-button:hover,
.secondary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/* Sections General Styles */
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    padding: 40px 0;
}

section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Steps Section Centering */
.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

/* Benefits Section Centering */
.benefits ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
    padding: 0;
}

.benefits li {
    text-align: center;
    max-width: 600px;
    margin-bottom: 10px;
}

/* Sample Result Section */
.sample-result {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(156, 39, 176, 0.1);
    position: relative;
    overflow: hidden;
}

.sample-result::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(156, 39, 176, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.chakra-graph {
    flex: 1.2;
    background-color: #F9FAFB;
    border-radius: 15px;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 15px 30px rgba(156, 39, 176, 0.1);
    position: relative;
    overflow: hidden;
}

.result-explanation {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
}

.chakra-insight {
    background-color: #F3F4F6;
    border-left: 5px solid var(--secondary-color);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.chakra-insight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(156, 39, 176, 0.1);
}

.chakra-insight h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.chakra-insight p {
    color: var(--text-light);
    line-height: 1.6;
}

.sample-result .secondary-cta {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.sample-result .secondary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

.sample-result .secondary-cta::after {
    content: '→';
    font-size: 1.2rem;
    margin-left: 10px;
}

.cta-subtitle {
    color: var(--text-light);
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Testimonials Section Centering */
.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    max-width: 300px;
}

/* Additional Calculators */
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.calculator-block {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.1);
    transition: all 0.3s ease;
}

.calculator-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(156, 39, 176, 0.15);
}

.calculator-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Additional Calculators Centering */
.additional-calculators {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.additional-cta {
    text-align: center;
    max-width: 600px;
    margin-top: 30px;
}

/* Final CTA Section Centering */
.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* FAQs Centering */
.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

details {
    width: 100%;
    margin-bottom: 15px;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

footer .footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}

footer .footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sample-result {
        flex-direction: column;
    }
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .cta-button, 
    .secondary-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .steps {
        flex-direction: column;
    }

    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Additional Responsive Typography */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    header h1 {
        font-size: 2rem;
    }

    .subheader {
        font-size: 1rem;
    }
}