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

/* Animated Gradient Background */
.animated-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    will-change: transform;
    animation: blobMoveX 18s ease-in-out infinite, blobMoveY 22s ease-in-out infinite;
}

.blob1 {
    top: -140px;
    left: -160px;
    background: radial-gradient(circle at 30% 30%, rgba(51,55,232,0.9), rgba(107,110,255,0.45) 60%, transparent 70%);
}

.blob2 {
    bottom: -160px;
    right: -120px;
    background: radial-gradient(circle at 70% 20%, rgba(255,82,173,0.9), rgba(255,140,199,0.45) 60%, transparent 70%);
    animation-delay: 1.2s;
}

.blob3 {
    top: 55%;
    left: 60%;
    background: radial-gradient(circle at 50% 80%, rgba(0,214,162,0.9), rgba(128,238,217,0.45) 60%, transparent 70%);
    animation-delay: 2.4s;
}

.blob4 {
    top: 20%;
    right: 35%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle at 40% 60%, rgba(255,196,0,0.85), rgba(255,220,120,0.4) 60%, transparent 70%);
    animation-delay: 0.6s;
}

@keyframes blobMoveX {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(60px); }
}

@keyframes blobMoveY {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.06); }
}

/* Expert Page Styles */
.content-page {
    background: white;
    min-height: 100vh;
    padding: 80px 0 100px;
    transition: background 0.3s ease;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-header {
    text-align: center;
    margin-bottom: 60px;
}

.content-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.content-title {
    font-size: 48px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.content-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.download-btn-section {
    text-align: center;
    margin: 40px 0;
}

.benefits-section {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    transition: background 0.3s ease;
}

.benefits-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #3337E8;
    margin-bottom: 20px;
    text-align: center;
}

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

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
    text-align: center;
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #3337E8;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.benefit-card p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.steps-section {
    margin: 50px 0;
}

.steps-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #3337E8;
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    counter-increment: step-counter;
    margin-bottom: 30px;
    padding-left: 70px;
    position: relative;
}

.step-item:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #3337E8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.step-item p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.cta-section {
    text-align: center;
    margin: 60px 0 40px;
    padding: 40px;
    background: linear-gradient(135deg, #3337E8, #6b6eff);
    border-radius: 12px;
    color: white;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Earnings Calculator Styles */
.earnings-calculator-section {
    margin: 50px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.earnings-calculator-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #3337E8;
    margin-bottom: 10px;
    text-align: center;
}

.earnings-calculator-section p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.calculator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.calculator-form {
    flex: 1;
    min-width: 300px;
}

.calculator-result {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0a0a0a;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3337E8;
    box-shadow: 0 0 0 3px rgba(51, 55, 232, 0.1);
}

.form-group input::placeholder {
    color: #aaa;
}

.result-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
}

.result-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 20px;
}

.earnings-amount {
    font-size: 36px;
    font-weight: 700;
    color: #3337E8;
    margin-bottom: 20px;
}

.earnings-details p {
    margin: 10px 0;
    color: #333;
    font-size: 16px;
}

.final-earnings {
    font-weight: 700;
    font-size: 18px !important;
    color: #3337E8;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px !important;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .calculator-container {
        flex-direction: column;
    }
    
    .earnings-calculator-section {
        padding: 20px;
    }
    
    .result-box {
        padding: 20px;
    }
    
    .earnings-amount {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .content-container {
        padding: 0 20px;
    }
    
    .content-title {
        font-size: 32px;
    }
    
    .content-subtitle {
        font-size: 16px;
    }
    
    .benefits-section {
        padding: 25px;
    }
    
    .benefits-section h2,
    .steps-section h2 {
        font-size: 24px;
    }
    
    .step-item {
        padding-left: 60px;
    }
    
    .step-item:before {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
    padding-top: 70px;
}

/* Navigation */
.navbar {
    background: white;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #3337E8;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: #0a0a0a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.nav-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: #3337E8;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: #3337E8;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2529c4;
}

/* Theme toggle button styles removed */

/* Hero Section */
.hero {
    background: white;
    padding: 40px 0 0;
    min-height: 85vh;
    position: relative;
    transition: background 0.3s ease;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.hero-content {
    flex: 1;
    padding-top: 40px;
}

.ratings {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0.7;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars span:first-child {
    color: #ffd700;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 50px;
    letter-spacing: -2px;
    color: #0a0a0a;
    transition: color 0.3s ease;
}

.hero-title .highlight {
    color: #3337E8;
}

/* Phone Mockup */
.hero-image {
    position: relative;
    flex: 0 0 450px;
    height: 600px;
}

.iphone-mockup {
    position: relative;
    z-index: 10;
    width: 325px;
    height: 660px;
    background-image: url('assets/iphone.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 20px 60px 20px;
    margin: 0 auto;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    padding: 10px;
}

.iphone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Decorative Elements */
.trophy-decoration {
    position: absolute;
    bottom: -50px;
    left: -80px;
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

.trophy-img {
    width: 180px;
    height: 180px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    100% {
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 40px rgba(255, 215, 0, 1)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.8));
    }
}

.phone-decoration {
    position: absolute;
    top: -30px;
    right: -60px;
    z-index: 1;
}

.phone-small {
    width: 100px;
    height: 200px;
    background: linear-gradient(135deg, #3337E8, #6b6eff);
    border-radius: 15px;
    transform: rotate(15deg);
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Investors Section */
.investors {
    background: white;
    padding: 100px 0;
    text-align: center;
    transition: background 0.3s ease;
}

.investors-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.investors-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
    transition: color 0.3s ease;
}

.investors-title .highlight-text {
    font-weight: 600;
}

/* Fixed Bottom Button */
.fixed-bottom-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background 0.3s ease;
    display: none;
}

.btn-subtitle {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #3337E8;
    margin: 0 0 10px 0;
    letter-spacing: 0.3px;
}

.btn-download {
    width: 100%;
    background: #3337E8;
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-download:hover {
    background: #2529c4;
    transform: translateY(-2px);
}

.btn-download:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 40px 0 20px;
    margin-top: 60px;
    transition: background 0.3s ease;
    border-top: 1px solid #eaeaea;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #3337E8;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #3337E8;
    border-radius: 3px;
}

.footer-section p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: #3337E8;
    font-size: 10px;
    line-height: 20px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #3337E8;
    transform: translateX(3px);
}

/* Contact info specific styling */
.footer-section ul li:nth-child(1),
.footer-section ul li:nth-child(2),
.footer-section ul li:nth-child(3) {
    padding-left: 0;
}

.footer-section ul li:nth-child(1)::before,
.footer-section ul li:nth-child(2)::before,
.footer-section ul li:nth-child(3)::before {
    content: '';
}

.footer-section ul li:nth-child(3) {
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.footer-bottom a {
    color: #3337E8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Dark Mode - Removed */

/* Custom Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s ease;
    transform: translateY(0);
}

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

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.close-popup {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.close-popup:hover,
.close-popup:focus {
    color: #000;
    background-color: #f0f0f0;
    text-decoration: none;
    cursor: pointer;
}

.popup-message {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.popup-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.popup-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.popup-btn-primary {
    background: #3337E8;
    color: white;
}

.popup-btn-primary:hover {
    background: #2529c4;
    transform: translateY(-2px);
}

.popup-btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.popup-btn-secondary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Dark mode for popup - Removed */

/* Responsive */
@media (max-width: 968px) {
    .nav-container,
    .hero-container,
    .investors-container,
    .footer-container { padding: 0 20px; }
    .hero { padding: 60px 0 0; }
    .hero-content { padding-top: 20px; }
    .hero-title { font-size: 60px; }
    .hero-container { flex-direction: column; align-items: center; }
    .hero-image { flex: none; }
    .nav-links { gap: 20px; }
    .investors { padding: 60px 0; }
}

@media (max-width: 640px) {
    .nav-container,
    .hero-container,
    .investors-container,
    .footer-container { padding: 0 15px; }
    .hero { padding: 40px 0 0; }
    .hero-content { padding-top: 10px; }
    .hero-title { font-size: 48px; margin-bottom: 30px; }
    .ratings { margin-bottom: 25px; }
    .iphone-mockup { width: 280px; height: 570px; padding: 50px 15px 50px 15px }
    .nav-links a,
    .nav-cta-wrapper { display: none; }
    .fixed-bottom-btn { display: block; padding: 12px 15px; }
    body { padding-bottom: 80px; }
    .investors { padding: 50px 0; }
    .btn-download { padding: 14px 20px; font-size: 15px; }
    .investors-title { font-size: 24px; }
    .trophy-decoration { left: -60px; bottom: -30px; }
    .trophy-img { width: 120px; height: 120px; }
    .phone-decoration { right: -40px; }
    .phone-small { width: 70px; height: 140px; }
    
    /* Mobile specific footer adjustments */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .footer-section:first-child {
        grid-column: span 2;
    }
}

/* Unmute Button */
.unmute-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding: 10px 20px;
    background: #3337E8;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(51, 55, 232, 0.3);
}

.unmute-button:hover {
    background: #2529c4;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 55, 232, 0.4);
}

.unmute-button::before {
    content: "🔊 ";
    margin-right: 8px;
}

/* Dark mode for unmute button - Removed */

/* Mute Toggle Button */
.mute-toggle-button {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    animation: pulse 2s infinite;
}

.mute-toggle-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    animation: none;
}

/* Animation for the mute button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(51, 55, 232, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(51, 55, 232, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(51, 55, 232, 0);
    }
}

/* Dark mode for mute toggle button - Removed */

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-date {
    color: #666;
}

.blog-category {
    background: #3337E8;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #0a0a0a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #3337E8;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-post-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.blog-post-meta {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.blog-post-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-body {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.blog-post-body h2 {
    font-size: 30px;
    margin: 30px 0 20px;
    color: #0a0a0a;
}

.blog-post-body h3 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: #0a0a0a;
}

.blog-post-body p {
    margin-bottom: 20px;
}

.blog-post-body ul, 
.blog-post-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-body li {
    margin-bottom: 10px;
}

.blog-post-body a {
    color: #3337E8;
    text-decoration: none;
    font-weight: 600;
}

.blog-post-body a:hover {
    text-decoration: underline;
}

.blog-post-body blockquote {
    border-left: 4px solid #3337E8;
    padding: 20px;
    margin: 30px 0;
    background: #f9f9f9;
    border-radius: 0 8px 8px 0;
}

.blog-post-body blockquote p {
    margin: 0;
    font-style: italic;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-title {
        font-size: 20px;
    }
    
    .blog-post-title {
        font-size: 28px;
    }
    
    .blog-post-image {
        height: 250px;
    }
    
    .blog-post-body {
        font-size: 16px;
    }
    
    .blog-post-body h2 {
        font-size: 24px;
    }
    
    .blog-post-body h3 {
        font-size: 20px;
    }
}

/* End Blog Styles */

/* Remove old unmute button styles */
.unmute-button {
    display: none;
}
/* New Expert Page Styles */

/* Trust Strip */
.trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.trust-item {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    border: 2px solid #3337E8;
    color: #3337E8;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #3337E8;
    color: white;
    transform: translateY(-2px);
}

/* Why Section */
.why-section {
    margin: 60px 0;
}

.why-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

/* Services Section */
.services-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(51,55,232,0.05), rgba(107,110,255,0.05));
    border-radius: 12px;
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    color: #333;
}

.services-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

/* Earnings Section */
.earnings-section {
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.earnings-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.earnings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.earnings-features li {
    padding: 12px 0;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.earnings-example {
    background: linear-gradient(135deg, #3337E8, #6b6eff);
    padding: 30px;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.earnings-example h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.earnings-example p {
    font-size: 18px;
    margin: 10px 0;
}

.earnings-example strong {
    font-size: 24px;
    font-weight: bold;
}

/* Trust & Safety Section */
.trust-safety-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0,214,162,0.05), rgba(128,238,217,0.05));
    border-radius: 12px;
}

.trust-safety-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-feature {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.trust-feature p {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

/* Who Should Join Section */
.who-section {
    margin: 60px 0;
}

.who-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.who-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #3337E8, #6b6eff);
    color: white;
}

.who-note {
    text-align: center;
    font-size: 20px;
    color: #666;
    font-style: italic;
    margin-top: 30px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255,82,173,0.05), rgba(255,140,199,0.05));
    border-radius: 12px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    text-align: right;
}

/* CTA Note */
.cta-note {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.9;
}

/* Social Proof & Badge Row */
.social-proof {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin: 25px 0 20px;
    font-weight: 500;
}

.badge-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 25px 0 30px;
}

.badge-item {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    padding: 10px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Steps Freedom */
.steps-freedom {
    text-align: center;
    font-size: 18px;
    color: #3337E8;
    font-weight: 600;
    margin-top: 30px;
    padding: 20px;
    background: rgba(51, 55, 232, 0.05);
    border-radius: 8px;
}

/* Service Popular Card */
.service-popular {
    position: relative;
    border: 2px solid #FF52AD;
    background: linear-gradient(135deg, rgba(255, 82, 173, 0.05), rgba(255, 140, 199, 0.05));
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FF52AD, #FF8CC7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 82, 173, 0.4);
}

.service-desc {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* Calculator Disclaimer & CTA */
.calculator-disclaimer {
    text-align: center;
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

.calculator-cta {
    text-align: center;
    margin-top: 25px;
}

/* Trust Subtitle */
.trust-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin: -20px 0 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Who Filter */
.who-filter {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin: -20px 0 30px;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    padding: 25px;
    background: linear-gradient(135deg, rgba(51, 55, 232, 0.02), rgba(107, 110, 255, 0.02));
    border-radius: 8px;
    border-left: 4px solid #3337E8;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: linear-gradient(135deg, rgba(51, 55, 232, 0.05), rgba(107, 110, 255, 0.05));
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .trust-strip {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-item {
        font-size: 14px;
    }
    
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .social-proof {
        font-size: 14px;
    }
    
    .badge-row {
        gap: 15px;
    }
    
    .badge-item {
        font-size: 13px;
        padding: 8px 15px;
    }
    
    .steps-freedom {
        font-size: 16px;
    }
    
    .popular-badge {
        top: -8px;
        right: -8px;
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .why-section h2,
    .services-section h2,
    .earnings-section h2,
    .trust-safety-section h2,
    .who-section h2,
    .testimonials-section h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .earnings-content {
        grid-template-columns: 1fr;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
    .faq-grid {
        grid-template-columns: 1fr;
    }

/* ===========================
   MINIMAL EXPERT PAGE STYLES
   =========================== */

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 80px 0;
}

/* Expert Section Container */
.expert-section {
    margin: 60px 0;
}

/* Section Title Wrapper */
.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.section-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #3337E8, #6b6eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    line-height: 1;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Trust Strip Minimal */
.trust-strip-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.trust-strip-minimal span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Benefits Cards Minimal */
.benefit-card-minimal {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 3px solid #3337E8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.benefit-card-minimal:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-card-minimal h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-card-minimal p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Steps Grid Minimal */
.steps-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step-minimal {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.step-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-num {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #3337E8, #6b6eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.7;
    margin-bottom: 15px;
}

.step-minimal h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-minimal p {
    font-size: 14px;
    color: #666;
}

/* Services List Minimal */
.services-list-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.service-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.service-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-item:hover {
    border-color: #3337E8;
    transform: scale(1.05);
}

/* Earnings Minimal */
.earnings-minimal {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.earning-point {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.earnings-example-minimal {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(51, 55, 232, 0.05), rgba(107, 110, 255, 0.05));
    border-radius: 8px;
}

.earnings-example-minimal p {
    font-size: 18px;
    color: #333;
}

.earnings-example-minimal strong {
    color: #3337E8;
    font-size: 24px;
}

/* Trust List Minimal */
.trust-list-minimal {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-list-minimal span {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Who List Minimal */
.who-list-minimal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.who-list-minimal span {
    padding: 12px 24px;
    background: white;
    border-radius: 25px;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
    border: 1px solid #d0d0d0;
    transition: all 0.3s ease;
}

.who-list-minimal span:hover {
    border-color: #3337E8;
    background: #3337E8;
    color: white;
}

/* Testimonials Minimal */
.testimonials-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-minimal {
    padding: 30px;
    background: white;
    border-radius: 8px;
    border-top: 3px solid #3337E8;
}

.testimonial-minimal p {
    font-size: 16px;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-minimal span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* FAQ List Minimal */
.faq-list-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.faq-minimal {
    padding: 25px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #3337E8;
}

.faq-minimal h3 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-minimal p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* CTA Section Minimal */
.cta-section-minimal {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #3337E8, #6b6eff);
    border-radius: 12px;
    color: white;
    margin: 60px 0;
}

.cta-section-minimal h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section-minimal p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content-page {
        padding: 80px 0 100px;
    }
    
    .content-container {
        padding: 0 20px;
    }
    
    .content-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .content-subtitle {
        font-size: 16px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-cta-wrapper {
        display: none;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-divider {
        margin: 50px 0;
    }
    
    .section-title-wrapper {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .section-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .trust-strip-minimal {
        gap: 15px;
        flex-direction: column;
        padding: 15px;
    }
    
    .steps-grid-minimal {
        grid-template-columns: 1fr;
    }
    
    .services-list-minimal {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .earnings-minimal {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-list-minimal,
    .who-list-minimal {
        gap: 10px;
    }
    
    .testimonials-minimal,
    .faq-list-minimal {
        grid-template-columns: 1fr;
    }
    
    .cta-section-minimal {
        padding: 40px 20px;
    }
    
    .cta-section-minimal h2 {
        font-size: 28px;
    }
    
    .calculator-container {
        flex-direction: column;
    }
    
    .calculator-form,
    .calculator-result {
        width: 100%;
    }
    
    .btn-primary {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .who-list-minimal {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Show fixed bottom button on mobile */
    .fixed-bottom-btn {
        display: block;
    }
    
    body {
        padding-bottom: 100px;
    }
}

/* ===========================
   CARD OVERLAPPING ANIMATIONS
   =========================== */

/* Container needs relative positioning for overlap effect */
.benefits-grid,
.steps-grid-minimal,
.services-list-minimal,
.testimonials-minimal,
.faq-list-minimal {
    position: relative;
}

/* Benefit Cards Overlapping Animation */
.benefit-card-minimal {
    opacity: 0;
    position: relative;
    animation: cardOverlapSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.benefit-card-minimal:nth-child(1) {
    animation-delay: 0s;
    z-index: 5;
}

.benefit-card-minimal:nth-child(2) {
    animation-delay: 0.15s;
    z-index: 4;
}

.benefit-card-minimal:nth-child(3) {
    animation-delay: 0.3s;
    z-index: 3;
}

.benefit-card-minimal:nth-child(4) {
    animation-delay: 0.45s;
    z-index: 2;
}

/* Step Cards Cascading Overlap Animation */
.step-minimal {
    opacity: 0;
    position: relative;
    animation: cardStackPop 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.step-minimal:nth-child(1) {
    animation-delay: 0s;
    z-index: 4;
}

.step-minimal:nth-child(2) {
    animation-delay: 0.12s;
    z-index: 3;
}

.step-minimal:nth-child(3) {
    animation-delay: 0.24s;
    z-index: 2;
}

.step-minimal:nth-child(4) {
    animation-delay: 0.36s;
    z-index: 1;
}

/* Service Items Wave Overlap */
.service-item {
    opacity: 0;
    position: relative;
    animation: cardWaveIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.service-item:nth-child(1) { animation-delay: 0s; z-index: 6; }
.service-item:nth-child(2) { animation-delay: 0.08s; z-index: 5; }
.service-item:nth-child(3) { animation-delay: 0.16s; z-index: 4; }
.service-item:nth-child(4) { animation-delay: 0.24s; z-index: 3; }
.service-item:nth-child(5) { animation-delay: 0.32s; z-index: 2; }
.service-item:nth-child(6) { animation-delay: 0.4s; z-index: 1; }

/* Testimonial Cards Layered Cascade */
.testimonial-minimal {
    opacity: 0;
    position: relative;
    animation: cardLayerSlide 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.testimonial-minimal:nth-child(1) {
    animation-delay: 0s;
    z-index: 3;
}

.testimonial-minimal:nth-child(2) {
    animation-delay: 0.2s;
    z-index: 2;
}

.testimonial-minimal:nth-child(3) {
    animation-delay: 0.4s;
    z-index: 1;
}

/* FAQ Cards Staggered Overlap */
.faq-minimal {
    opacity: 0;
    position: relative;
    animation: cardFanOut 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.faq-minimal:nth-child(1) { animation-delay: 0s; z-index: 4; }
.faq-minimal:nth-child(2) { animation-delay: 0.15s; z-index: 3; }
.faq-minimal:nth-child(3) { animation-delay: 0.3s; z-index: 2; }
.faq-minimal:nth-child(4) { animation-delay: 0.45s; z-index: 1; }

/* Keyframe Animations - Overlapping Card Effects */

/* Card Overlap Slide - Creates stacking effect from left */
@keyframes cardOverlapSlide {
    0% {
        opacity: 0;
        transform: translateX(-60px) translateY(-20px) scale(0.9) rotateY(-15deg);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-20px) translateY(-10px) scale(0.95) rotateY(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) rotateY(0);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

/* Card Stack Pop - Cards pop up with overlap */
@keyframes cardStackPop {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.85) rotateX(15deg);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.02) rotateX(-3deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
}

/* Card Wave In - Wave-like cascade effect */
@keyframes cardWaveIn {
    0% {
        opacity: 0;
        transform: translateY(-40px) translateX(-30px) scale(0.8) rotate(-8deg);
    }
    50% {
        opacity: 0.6;
        transform: translateY(10px) translateX(-10px) scale(1.05) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1) rotate(0);
    }
}

/* Card Layer Slide - Sliding layers effect */
@keyframes cardLayerSlide {
    0% {
        opacity: 0;
        transform: translateX(-80px) translateY(30px) scale(0.85);
        filter: blur(4px);
    }
    40% {
        opacity: 0.4;
        transform: translateX(-30px) translateY(10px) scale(0.92);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Card Fan Out - Cards fan out from center */
@keyframes cardFanOut {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.7) rotate(-10deg);
        transform-origin: center left;
    }
    60% {
        opacity: 0.7;
        transform: translateX(5px) scale(1.03) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0);
    }
}

/* Additional depth effect on hover */
.benefit-card-minimal:hover,
.step-minimal:hover,
.service-item:hover,
.testimonial-minimal:hover,
.faq-minimal:hover {
    z-index: 100 !important;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(51, 55, 232, 0.2);
}

/* Scroll-triggered Animation Enhancement */
@media (prefers-reduced-motion: no-preference) {
    .benefit-card-minimal,
    .step-minimal,
    .service-item,
    .testimonial-minimal,
    .faq-minimal {
        will-change: transform, opacity;
    }
}

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
    .benefit-card-minimal,
    .step-minimal,
    .service-item,
    .testimonial-minimal,
    .faq-minimal {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Earning Point Icons */
.earning-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.earning-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Trust Item Icons */
.trust-item-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.trust-item-minimal span {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Who Item Icons */
.who-item-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: white;
    border-radius: 25px;
    border: 1px solid #d0d0d0;
    transition: all 0.3s ease;
}

.who-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.who-item-minimal span {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.who-item-minimal:hover {
    border-color: #3337E8;
    background: #3337E8;
    transform: scale(1.05);
}

.who-item-minimal:hover span {
    color: white;
}
/* Enhanced Who Section */
.section-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.who-list-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.who-item-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.who-item-enhanced:hover {
    border-color: #3337E8;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(51, 55, 232, 0.15);
}

.who-item-enhanced .who-icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.who-item-enhanced h3 {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 8px;
}

.who-item-enhanced p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cta-join-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f0f2ff 0%, #e8ebff 100%);
    border-radius: 16px;
    margin-top: 30px;
}

.cta-join-text {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Mobile responsive for enhanced section */
@media (max-width: 768px) {
    .who-list-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .who-item-enhanced {
        padding: 25px 15px;
    }
    
    .who-item-enhanced .who-icon-img {
        width: 60px;
        height: 60px;
    }
    
    .cta-join-section {
        padding: 30px 20px;
    }
    
    .cta-join-text {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .who-list-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}
