/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b6b 50%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
    border: none;
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #26c6da 50%, #42a5f5 100%);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, #2d1b69 0%, #11998e 50%, #0f0f23 100%);
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: #ff6b6b;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.highlight {
    color: #00ff88;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-cta-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit-card p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #2d1b69 50%, #16213e 100%);
}

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

.about-avatar {
    margin-bottom: 2rem;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

.about-name {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.about-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.about-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.badge-green {
    background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%);
}

/* Restore badge color backgrounds */
.badge-red {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.badge-blue {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.about-experience {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    text-align: left;
}

.about-experience p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.about-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

/* Right aligned quote in About */
.about-quote {
    margin-top: 1.2rem;
    text-align: right;
}

.about-quote .quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #e0e0e0;
}

.about-quote .quote-author {
    margin-top: 0.25rem;
    color: #4ecdc4;
    font-weight: 600;
}

/* Links inside About */
.about-experience a {
    color: #4ecdc4;
    text-decoration: underline;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: left;
    backdrop-filter: blur(10px);
}

.result-item strong {
    color: #4ecdc4;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.result-item {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Distinct colors for result items */
.result-meaning {
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.15);
}
.result-meaning strong {
    color: #ff6b6b;
}

.result-outcome {
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.15);
}
.result-outcome strong {
    color: #4ecdc4;
}

.result-expertise {
    border-color: rgba(69, 183, 209, 0.5);
    box-shadow: 0 8px 24px rgba(69, 183, 209, 0.15);
}
.result-expertise strong {
    color: #45b7d1;
}

.result-approach {
    border-color: rgba(150, 201, 61, 0.5);
    box-shadow: 0 8px 24px rgba(150, 201, 61, 0.15);
}
.result-approach strong {
    color: #96c93d;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #16213e 0%, #0f3460 50%, #2d1b69 100%);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(78, 205, 196, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.testimonial-stars {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #4ecdc4;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.4);
}

.testimonial-author span {
    color: #b0b0b0;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, #2d1b69 0%, #11998e 50%, #0f0f23 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

/* Final feedback block on results */
.final-feedback {
    margin-top: 3rem;
    padding-bottom: 2.5rem;
    text-align: center;
}

.final-feedback .final-note {
    color: #b0f0e6;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.final-feedback .cta-button {
    display: inline-block;
    margin-top: 8px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Utility: cancel uppercase for specific buttons */
.no-transform {
    text-transform: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .avatar-circle {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .about-name {
        font-size: 1.6rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about-cta { text-align: center; }
}
