     a{ text-decoration: none;
     }
     /* about-about-hero Section */   
        .about-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
        }

        .about-hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(196, 255, 57, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-30px, 30px) rotate(180deg); }
        }

        .about-hero-content {
            text-align: center;
            z-index: 2;
            opacity: 0;
            animation: fadeInUp 1s forwards 0.3s;
        }

        .about-hero-content h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .about-hero-content .highlight {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }
        @keyframes expandWidth {
            to { transform: scaleX(1); }
        }

        .about-hero-content p {
            font-size: 1.3rem;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator::before {
            content: '';
            width: 2px;
            height: 40px;
            background: var(--accent);
            display: block;
            margin: 0 auto;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

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

        /* Section Styling */
        section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--accent);
            text-align: center;
            margin-bottom: 4rem;
            font-weight: 500;
        }

        /* Problem Section */
        .problem {
            background: var(--dark-bg);
        }

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

        .problem-card {
            background: var(--secondary);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid var(--light-gray);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .problem-card.animate {
            animation: fadeInUp 0.8s forwards;
        }

        .problem-card:nth-child(2).animate {
            animation-delay: 0.2s;
        }

        .problem-card:nth-child(3).animate {
            animation-delay: 0.4s;
        }

        .problem-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(196, 255, 57, 0.1);
        }

        .problem-icon {
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .problem-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .problem-card p {
            color: var(--text);
            line-height: 1.8;
        }

        /* Approach Section */
        .approach {
            background: var(--background);
        }

        .approach-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .approach-text {
            opacity: 0;
        }

        .approach-text.animate {
            animation: fadeInLeft 1s forwards;
        }

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

        .approach-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .approach-text p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--text);
            line-height: 1.8;
        }

        .approach-features {
            opacity: 0;
        }

        .approach-features.animate {
            animation: fadeInRight 1s forwards;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--secondary);
            border-radius: 15px;
            border-left: 4px solid var(--accent);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            background: var(--dark-bg);
        }

        .feature-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            margin-right: 1.5rem;
            min-width: 40px;
        }

        .feature-content h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .feature-content p {
            color: var(--text);
            margin: 0;
        }

        /* Timeline Section */
        .timeline-section {
            background: var(--dark-bg);
            overflow: hidden;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
            top: 0;
        }

        .timeline.animate::before {
            animation: growLine 2s forwards;
        }

        @keyframes growLine {
            to { height: 100%; }
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            padding-bottom: 4rem;
            position: relative;
            opacity: 0;
        }

        .timeline-item.animate {
            animation: fadeInLeft 0.8s forwards;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-left: 50%;
            padding-right: 0;
        }

        .timeline-item:nth-child(even).animate {
            animation: fadeInRight 0.8s forwards;
        }

        .timeline-item:nth-child(1).animate { animation-delay: 0.2s; }
        .timeline-item:nth-child(2).animate { animation-delay: 0.4s; }
        .timeline-item:nth-child(3).animate { animation-delay: 0.6s; }
        .timeline-item:nth-child(4).animate { animation-delay: 0.8s; }

        .timeline-content {
            background: var(--secondary);
            padding: 2rem;
            border-radius: 15px;
            width: 90%;
            border: 1px solid var(--light-gray);
            position: relative;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            border-color: var(--accent);
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(196, 255, 57, 0.2);
        }

        .timeline-year {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .timeline-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--accent);
            border-radius: 50%;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            border: 4px solid var(--background);
            z-index: 10;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(196, 255, 57, 0.7); }
            50% { box-shadow: 0 0 0 15px rgba(196, 255, 57, 0); }
        }

        /* Trust Section */
        .trust {
            background: var(--background);
        }

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

        .trust-stat {
            text-align: center;
            opacity: 0;
        }

        .trust-stat.animate {
            animation: scaleIn 0.8s forwards;
        }

        .trust-stat:nth-child(2).animate { animation-delay: 0.2s; }
        .trust-stat:nth-child(3).animate { animation-delay: 0.4s; }
        .trust-stat:nth-child(4).animate { animation-delay: 0.6s; }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            font-size: 1.2rem;
            color: var(--text);
        }

   /* Testimonials Section - Stacked Card Style */
.testimonials {
    background: var(--background);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.testimonials-container {
    perspective: 1500px;
    position: relative;
    min-height: 480px;
}

.testimonials-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    max-width: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* Active card - center front */
.testimonial-card.active {
    opacity: 1;
    z-index: 10;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    pointer-events: all;
}

/* Next card - slightly right and back */
.testimonial-card.next {
    opacity: 0.6;
    z-index: 5;
    transform: translate(-35%, -50%) scale(0.92) rotateY(-8deg);
    filter: blur(1px);
}

/* Previous card - slightly left and back */
.testimonial-card.prev {
    opacity: 0.6;
    z-index: 5;
    transform: translate(-65%, -50%) scale(0.92) rotateY(8deg);
    filter: blur(1px);
}

/* Far cards - hidden */
.testimonial-card.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
}

.quote-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 2rem;
    min-height: 140px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(196, 255, 57, 0.3);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.95rem;
    color: var(--light-gray);
    opacity: 0.8;
}

.rating {
    display: flex;
    gap: 0.3rem;
}

.star {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

/* Navigation Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.testimonial-dot:hover {
    background: rgba(196, 255, 57, 0.6);
    transform: scale(1.3);
}

.testimonial-dot.active {
    background: var(--accent);
    width: 36px;
    border-radius: 6px;
}

.testimonial-dot.active::after {
    border-color: var(--accent);
    opacity: 0.3;
}

/* Click areas for navigation */
.testimonials-container::before,
.testimonials-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 20;
    cursor: pointer;
    opacity: 0;
}

.testimonials-container::before {
    left: 0;
}

.testimonials-container::after {
    right: 0;
}

/* Hover effect on cards */
.testimonial-card.active:hover {
    transform: translate(-50%, -50%) scale(1.02) rotateY(0deg);
    box-shadow: 0 25px 70px rgba(196, 255, 57, 0.2);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .testimonials-container {
        min-height: 520px;
    }

    .testimonial-card {
        max-width: 500px;
        padding: 2.5rem;
    }

    .testimonial-card.next,
    .testimonial-card.prev {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.85);
        filter: blur(2px);
    }
}

@media (max-width: 640px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonials-container {
        min-height: 560px;
    }

    .testimonial-card {
        max-width: 100%;
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
        min-height: 160px;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 1.1rem;
    }

    .author-role {
        font-size: 0.85rem;
    }

    .testimonial-card.next,
    .testimonial-card.prev {
        opacity: 0;
    }

    .testimonial-dots {
        margin-top: 2rem;
    }
}
        /* Values Section */
        .values {
            background: var(--background);
        }

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

        .value-card {
            text-align: center;
            padding: 2.5rem;
            background: var(--secondary);
            border-radius: 20px;
            border: 1px solid var(--light-gray);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .value-card.animate {
            animation: fadeInUp 0.8s forwards;
        }

        .value-card:nth-child(2).animate { animation-delay: 0.1s; }
        .value-card:nth-child(3).animate { animation-delay: 0.2s; }
        .value-card:nth-child(4).animate { animation-delay: 0.3s; }

        .value-card:hover {
            transform: translateY(-15px);
            border-color: var(--accent);
            background: var(--dark-bg);
        }

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

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .value-card p {
            color: var(--text);
            line-height: 1.8;
        }

        /* Vision Section */
        .vision {
            background: var(--dark-bg);
            text-align: center;
        }

        .vision-content {
            max-width: 900px;
            margin: 0 auto;
            opacity: 0;
        }

        .vision-content.animate {
            animation: fadeInUp 1s forwards;
        }

        .vision-quote {
            font-size: 2rem;
            font-weight: 500;
            line-height: 1.6;
            color: var(--white);
            margin-bottom: 2rem;
            position: relative;
            padding: 2rem;
        }

        .vision-quote::before,
        .vision-quote::after {
            content: '"';
            font-size: 6rem;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
        }

        .vision-quote::before {
            top: -20px;
            left: -10px;
        }

        .vision-quote::after {
            bottom: -60px;
            right: -10px;
        }

        .vision-text {
            font-size: 1.2rem;
            color: var(--text);
            line-height: 1.8;
            margin-top: 3rem;
        }


        /* Responsive */
        @media (max-width: 968px) {
            .approach-content {
                grid-template-columns: 1fr;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                padding-left: 50px;
                padding-right: 0;
                justify-content: flex-start;
            }

            .timeline::before {
                left: 10px;
            }

            .timeline-dot {
                left: 10px;
            }

            .timeline-content {
                width: 100%;
            }

        }

        @media (max-width: 640px) {
            section {
                padding: 80px 0;
            }

            .container {
                padding: 0 1.5rem;
            }

            .about-hero-content h1 {
                font-size: 2.5rem;
            }

            .about-hero-content p {
                font-size: 1.1rem;
            }
        }

/* Testimonials Section Styles */
:root {
    --testimonial-primary: #000000;
    --testimonial-secondary: #1a1a1a;
    --testimonial-accent: #c4ff39;
    --testimonial-background: #0a0a0a;
    --testimonial-text: #e5e5e5;
    --testimonial-white: #FFFFFF;
    --testimonial-light-gray: #404040;
    --testimonial-accent-light: #d4ff5c;
    --testimonial-accent-dark: #a8cc2e;
    --testimonial-dark-bg: #141414;
}

/* Testimonials Section */
.marwaripay-testimonials-section {
    width: 100%;
    max-width: 1400px;
    padding: 80px 20px;
    margin: 0 auto;
}

.marwaripay-testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.marwaripay-testimonials-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--testimonial-white);
    margin-bottom: 1rem;
}

.marwaripay-testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--testimonial-accent);
    font-weight: 500;
}

/* Carousel Container */
.marwaripay-testimonial-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.marwaripay-carousel-wrapper {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
}

.marwaripay-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Testimonial Card */
.marwaripay-testimonial-card {
    min-width: 700px;
    background: var(--testimonial-white);
    border-radius: 20px;
    padding: 0rem 3rem;
    box-sizing: border-box;
}

.marwaripay-quote-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    opacity: 0.15;
}

.marwaripay-testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
    margin-bottom: 2rem;
    min-height: 140px;
}

.marwaripay-author-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.marwaripay-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--testimonial-accent);
    object-fit: cover;
    flex-shrink: 0;
}

.marwaripay-author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--testimonial-primary);
    margin-bottom: 0.2rem;
}

.marwaripay-author-info p {
    font-size: 0.95rem;
    color: #6b7280;
}

.marwaripay-rating {
    display: flex;
    gap: 0.3rem;
}

.marwaripay-star {
    font-size: 1.3rem;
}

/* Navigation Controls */
.marwaripay-carousel-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.marwaripay-nav-buttons {
    display: flex;
    gap: 0.8rem;
}

.marwaripay-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--testimonial-secondary);
    border: 2px solid var(--testimonial-accent);
    color: var(--testimonial-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
}

.marwaripay-nav-btn:hover {
    background: var(--testimonial-accent);
    color: var(--testimonial-primary);
    transform: scale(1.1);
}

.marwaripay-nav-btn:active {
    transform: scale(0.95);
}

.marwaripay-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: var(--testimonial-light-gray);
    color: var(--testimonial-light-gray);
}

.marwaripay-nav-btn:disabled:hover {
    background: var(--testimonial-secondary);
    color: var(--testimonial-light-gray);
    transform: scale(1);
}

/* Dots Indicator */
.marwaripay-carousel-dots {
    display: flex;
    gap: 0.6rem;
    margin-left: auto;
}

.marwaripay-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--testimonial-light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.marwaripay-dot:hover {
    background: rgba(196, 255, 57, 0.5);
    transform: scale(1.2);
}

.marwaripay-dot.active {
    background: var(--testimonial-accent);
    width: 32px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .marwaripay-testimonials-section {
        padding: 60px 20px;
    }

    .marwaripay-carousel-wrapper {
        padding: 1.5rem;
    }

    .marwaripay-testimonial-card {
        padding: 2rem;
    }

    .marwaripay-testimonial-text {
        font-size: 1rem;
        min-height: 160px;
    }

    .marwaripay-author-image {
        width: 50px;
        height: 50px;
    }

    .marwaripay-author-info h4 {
        font-size: 1.1rem;
    }

    .marwaripay-author-info p {
        font-size: 0.85rem;
    }

    .marwaripay-carousel-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .marwaripay-carousel-dots {
        margin-left: 0;
    }

    .marwaripay-nav-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .marwaripay-testimonials-header {
        margin-bottom: 3rem;
    }

    .marwaripay-carousel-wrapper {
        padding: 1rem;
    }

    .marwaripay-testimonial-card {
        padding: 1.5rem;
    }

    .marwaripay-testimonial-text {
        font-size: 0.95rem;
    }

    .marwaripay-star {
        font-size: 1.1rem;
    }
}



        .talktous-container {
                  font-family: 'DM Sans', sans-serif;
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        /* talktous-hero Section */
        .talktous-hero {
            margin-top: 80px;
            padding: 2rem 0 0rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .talktous-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(196, 255, 57, 0.03) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

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

        .talktous-hero h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
            animation: fadeInUp 0.8s ease-out;
        }

        .talktous-hero h1 span {
            color: var(--accent);
            display: block;
            margin-top: 0.5rem;
        }

        .talktous-hero p {
            font-size: 1.2rem;
            max-width: 650px;
            margin: 0 auto 2rem;
            color: var(--text);
            opacity: 0.9;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

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

        /* Main Content */
        .talktous-main-content {
            padding: 0rem 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            margin-bottom: 6rem;
        }

        /* Get in Touch Section */
        .get-in-touch {
            background: var(--secondary);
            border: 1px solid var(--light-gray);
            border-radius: 20px;
            padding: 3rem;
            height: fit-content;
            position: sticky;
            top: 120px;
        }

        .section-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-label::before {
            content: '●';
            font-size: 0.5rem;
        }

        .get-in-touch h2 {
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .contact-item {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--light-gray);
        }

        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .contact-item-label {
            font-size: 0.85rem;
            color: var(--light-gray);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .contact-item-value {
            font-size: 1.1rem;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: color 0.3s ease;
        }

        .contact-item-value:hover {
            color: var(--accent);
        }

        .contact-item-value svg {
            width: 20px;
            height: 20px;
            stroke: var(--accent);
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--secondary);
            border: 1px solid var(--light-gray);
            border-radius: 20px;
            padding: 3rem;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            background: var(--dark-bg);
            border: 1px solid var(--light-gray);
            border-radius: 12px;
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(196, 255, 57, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 1.25rem;
            background: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'DM Sans', sans-serif;
        }

        .submit-btn:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(196, 255, 57, 0.3);
        }

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

        /* FAQ Section */
        .faq-section {
            margin-top: 0rem;
            padding: 0rem 0;
        }

        .faq-section h2 {
            font-size: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 700;
            letter-spacing: -1.5px;
        }

        .faq-grid {
            display: grid;
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--secondary);
            border: 1px solid var(--light-gray);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.15rem;
            font-weight: 600;
            user-select: none;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
            color: var(--accent);
        }

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

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

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.5rem;
        }

        .faq-answer p {
            color: var(--text);
            opacity: 0.9;
            line-height: 1.7;
        }

        /* Availability Section */
        .talktous-availability-section {
            padding: 0rem 0;
            text-align: center;
        }

        .talktous-availability-section h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            font-weight: 700;
            letter-spacing: -1px;
        }

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

        .feature-card {
            background: var(--secondary);
            border: 1px solid var(--light-gray);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(196, 255, 57, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
            stroke: var(--accent);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--text);
            opacity: 0.9;
            line-height: 1.6;
        }

        .response-time {
            background: var(--accent);
            color: var(--primary);
            padding: 2rem 3rem;
            border-radius: 20px;
            display: inline-block;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 2rem;
        }

        .response-time span {
            font-size: 2rem;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .get-in-touch {
                position: relative;
                top: 0;
            }

            .nav-links {
                gap: 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .talktous-hero {
                padding: 4rem 0 3rem;
            }

            .talktous-hero h1 {
                font-size: 2.5rem;
            }

            .get-in-touch,
            .contact-form-wrapper {
                padding: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .talktous-availability-section h2,
            .faq-section h2 {
                font-size: 2rem;
            }
        }

       /* Services Page Styles - All prefixed with services- */
/* Hero Section */
.services-hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
    padding: 120px 0 80px;
}

.services-hero-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 255, 57, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: services-float 8s ease-in-out infinite;
}

@keyframes services-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(180deg); }
}

.services-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    opacity: 0;
    animation: services-fadeInUp 1s forwards 0.3s;
}

@keyframes services-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-hero-badge {
    display: inline-block;
    background: rgba(196, 255, 57, 0.1);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(196, 255, 57, 0.3);
}

.services-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.services-hero-highlight {
    color: var(--accent);
    position: relative;
}

.services-hero-description {
    font-size: 1.3rem;
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.services-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.services-hero-stat-label {
    font-size: 1rem;
    color: var(--text);
    opacity: 0.8;
}

/* Services Navigator Section */
.services-navigator-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.services-navigator-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: var(--secondary);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.services-nav-sidebar {
    background: var(--background);
    padding: 2rem;
    border-right: 1px solid var(--light-gray);
}

.services-nav-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-nav-list {
    list-style: none;
}

.services-nav-item {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.services-nav-item:hover {
    background: var(--secondary);
    border-color: var(--light-gray);
}

.services-nav-active {
   
    border-color: var(--accent);
}


.services-nav-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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


.services-nav-text {
    flex: 1;
    font-weight: 600;
    font-size: 1.1rem;
}

.services-nav-arrow {
    font-size: 1.5rem;
    opacity: 0.5;
}

.services-nav-active .services-nav-arrow {
    opacity: 1;
}

/* Content Area */
.services-content-area {
    padding: 3rem;
    position: relative;
}

.services-content-panel {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.services-content-active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: services-slideIn 0.5s ease;
}

@keyframes services-slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.services-content-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.services-content-title {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

.services-content-badge {
    background: var(--accent);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.services-content-description {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

.services-feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-bg);
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.services-feature-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 255, 57, 0.1);
}

.services-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.services-feature-text h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.services-feature-text p {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.5;
}

.services-pricing-hint {
    background: rgba(196, 255, 57, 0.05);
    border: 1px solid rgba(196, 255, 57, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.services-pricing-label {
    font-weight: 700;
    color: var(--accent);
    margin-right: 0.5rem;
}

.services-pricing-value {
    color: var(--text);
}

/* Service Blocks Section */
.services-blocks-section {
    padding: 100px 0;
    background: var(--background);
}

.services-blocks-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-blocks-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 4rem;
}

.services-block-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;

    /* animation */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-block-item.services-block-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reverse layout for right blocks */
.services-block-right {
    direction: rtl;
}

.services-block-right > * {
    direction: ltr;
}


.services-block-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.services-block-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.services-block-item:hover .services-block-image img {
    transform: scale(1.05);
}

.services-block-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.services-block-tag {
    background: var(--accent);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-block-content {
    padding: 2rem;
}

.services-block-heading {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.services-block-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.services-block-list li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 1rem;
}

.services-block-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.services-block-link:hover {
    gap: 0.5rem;
    color: var(--accent-light);
}

/* Who Uses This Section */
.services-users-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.services-users-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-users-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 4rem;
}

.services-users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.services-user-card {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--light-gray);
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.services-user-card.services-user-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-user-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(196, 255, 57, 0.15);
}

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

.services-user-heading {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-user-description {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.services-user-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.services-user-tag {
    background: rgba(196, 255, 57, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(196, 255, 57, 0.3);
}

/* Flow Diagram Section */
.services-flow-section {
    padding: 100px 0;
    background: var(--background);
}

.services-flow-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-flow-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 4rem;
}

.services-flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.services-flow-step {
    text-align: center;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.services-flow-step.services-flow-visible {
    opacity: 1;
    transform: scale(1);
}

.services-flow-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.services-flow-step:hover .services-flow-circle {
    transform: scale(1.1);
    border-color: var(--accent);
}


.services-flow-success {
    background: #10b981;
    border-color: #10b981;
}

.services-flow-icon {
    font-size: 2rem;
}
.services-flow-icon-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-flow-icon-logo img {
      width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
}
.services-flow-icon-logo {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-flow-icon-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.services-flow-heading {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.services-flow-text {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
    max-width: 120px;
    margin: 0 auto;
}

.services-flow-line {
    width: 60px;
    height: 3px;
    background: var(--light-gray);
    position: relative;
    flex-shrink: 0;
}

.services-flow-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--accent);
    animation: services-flowProgress 2s ease-in-out infinite;
}

@keyframes services-flowProgress {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

.services-flow-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.services-flow-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--secondary);
    border-radius: 50px;
    border: 1px solid var(--light-gray);
}

.services-flow-feature-icon {
    font-size: 1.5rem;
}

.services-flow-feature-text {
    color: var(--text);
    font-weight: 500;
}

/* Pricing Section */
.services-pricing-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.services-pricing-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 4rem;
}

.services-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.services-pricing-card {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--light-gray);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.services-pricing-card.services-pricing-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(196, 255, 57, 0.15);
}

.services-pricing-featured {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(196, 255, 57, 0.2);
}

.services-pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.services-pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-pricing-heading {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-pricing-description {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.services-pricing-points {
    list-style: none;
    margin-bottom: 1.5rem;
}

.services-pricing-points li {
    padding: 0.5rem 0;
    color: var(--text);
    position: relative;
    padding-left: 1.5rem;
}

.services-pricing-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.services-pricing-tag {
    background: rgba(196, 255, 57, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid rgba(196, 255, 57, 0.2);
}

.services-pricing-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-pricing-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.services-pricing-btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.services-pricing-btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 255, 57, 0.3);
}

.services-pricing-btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.services-pricing-btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Final CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    text-align: center;
}

.services-cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-cta-description {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.services-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-cta-btn {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.services-cta-primary {
    background: var(--primary);
    color: var(--accent);
}

.services-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.services-cta-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.services-cta-secondary:hover {
    background: var(--primary);
    color: var(--accent);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-navigator-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }

    .services-flow-diagram {
        flex-direction: column;
    }

    .services-flow-line {
        width: 3px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .services-navigator-wrapper {
        grid-template-columns: 1fr;
    }

    .services-nav-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
    }


    .services-block-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .services-block-right {
        direction: ltr;
    }



    .services-hero-stats {
        gap: 2rem;
    }

    .services-content-area {
        padding: 2rem;
    }

    .services-pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-section {
        padding: 100px 0 60px;
    }

    .services-blocks-section,
    .services-users-section,
    .services-flow-section,
    .services-pricing-section,
    .services-cta-section {
        padding: 60px 0;
    }

    .services-cta-buttons,
    .services-pricing-cta {
        flex-direction: column;
        align-items: center;
    }

    .services-cta-btn,
    .services-pricing-btn {
        width: 100%;
        max-width: 300px;
    }
}









:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: #c4ff39;
    --background: #0a0a0a;
    --text: #e5e5e5;
    --white: #FFFFFF;
    --light-gray: #404040;
    --accent-light: #d4ff5c;
    --accent-dark: #a8cc2e;
    --dark-bg: #141414;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== COMMON ANIMATIONS ===== */
@keyframes mwpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mwpSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mwpSlideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mwpScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes mwpFloatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.mwp-animate-in {
    animation: mwpFadeInUp 0.8s ease-out forwards;
}

/* ===== SECTION 1: PAY ONLY WHEN YOU EARN ===== */
.mwp-earn-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}
.mwp-earn-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 12px auto 10px;
    display: block;

    /* subtle fintech feel */
    filter: drop-shadow(0 4px 10px var(--accent));
}

.mwp-earn-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 255, 57, 0.05) 0%, transparent 70%);
    animation: mwpPulse 6s ease-in-out infinite;
}

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

.mwp-earn-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mwp-rupee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--secondary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: mwpFloatUpDown 3s ease-in-out infinite;
}

.mwp-rupee-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.mwp-earn-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.mwp-earn-subtitle {
    font-size: 1.25rem;
    color: var(--text);
}

.mwp-earn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mwp-earn-card {
    background: var(--secondary);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mwp-earn-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(196, 255, 57, 0.2);
}

.mwp-earn-highlight {
    background: linear-gradient(135deg, var(--secondary) 0%, #1f1f1f 100%);
    border-color: var(--accent);
}

.mwp-earn-badge {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.mwp-earn-badge.mwp-green {
    color: var(--accent);
}

.mwp-earn-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.mwp-earn-card p {
    color: var(--text);
}

.mwp-trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.mwp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mwp-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.mwp-trust-item span {
    color: var(--text);
    font-weight: 500;
}

.mwp-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.mwp-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 3rem;
}


.mwp-highlight-value {
    color: var(--accent-dark);
    font-size: 1.5rem;
}


/* ===== SECTION 3: PRICING BY BUSINESS SIZE ===== */
.mwp-business-size-section {
    padding: 120px 0;
    background: var(--secondary);
}

.mwp-size-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mwp-size-card {
    background: var(--dark-bg);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mwp-size-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(196, 255, 57, 0.15);
}

.mwp-size-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1f1f1f 100%);
    transform: scale(1.05);
}

.mwp-size-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.mwp-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mwp-size-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(196, 255, 57, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mwp-size-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.mwp-size-name {
    text-align: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.mwp-size-desc {
    text-align: center;
    color: var(--text);
    margin-bottom: 2rem;
}

.mwp-size-price {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 2rem;
}

.mwp-price-rate {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.mwp-price-label {
    color: var(--text);
    font-size: 0.9rem;
}

.mwp-size-features {
    list-style: none;
    margin-bottom: 2rem;
}

.mwp-size-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.mwp-size-features svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.mwp-size-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid var(--light-gray);
    background: transparent;
    color: var(--white);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mwp-size-btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.mwp-btn-primary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.mwp-btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    box-shadow: 0 10px 30px rgba(196, 255, 57, 0.3);
}

/* ===== SECTION 4: SERVICE-WISE PRICING GRID ===== */

      
        /* Section Header */
        .mwp-section-title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #ffffff 0%, #8b92a7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .mwp-section-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 60px;
            font-weight: 400;
        }

        /* Service Grid */
        .mwp-service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        /* Service Card */
        .mwp-service-card {
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px 32px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 320px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .mwp-service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .mwp-service-card::after {
            content: '';
            position: absolute;
            inset: -1px;
            background: linear-gradient(135deg, var(--accent), transparent);
            border-radius: 16px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s ease;
        }

        .mwp-service-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-hover);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                        0 0 0 1px var(--accent-glow);
        }

        .mwp-service-card:hover::before {
            opacity: 1;
        }

        .mwp-service-card:hover::after {
            opacity: 0.3;
        }

        /* Service Image Container */
        .mwp-service-image-container {
            width: 150px;
            height: 150px;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 24px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid var(--border);
            background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
        }

        .mwp-service-card:hover .mwp-service-image-container {
            transform: scale(0.85);
            border-color: var(--accent);
            box-shadow: 0 0 30px var(--accent-glow);
        }

        .mwp-service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .mwp-service-card:hover .mwp-service-image {
            transform: scale(1.1);
        }

        /* Service Name */
        .mwp-service-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 8px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .mwp-service-card:hover .mwp-service-name {
            color: var(--accent);
            transform: translateY(-4px);
        }

        /* Service Description (Default State) */
        .mwp-service-description {
            font-size: 0.95rem;
            color: var(--text-secondary);
            text-align: center;
            opacity: 1;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            margin-top: 8px;
        }

        .mwp-service-card:hover .mwp-service-description {
            opacity: 0;
            transform: translateY(-10px);
        }

        /* Pricing Info (Hover State) */
        .mwp-pricing-info {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%) translateY(30px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            z-index: 1;
        }

        .mwp-service-card:hover .mwp-pricing-info {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .mwp-service-charge {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 8px;
            line-height: 1;
            text-shadow: 0 0 20px var(--accent-glow);
        }

        .mwp-service-detail {
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Glow Effect on Hover */
        .mwp-service-card:hover .mwp-service-charge {
            animation: pulse-glow 2s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% {
                text-shadow: 0 0 20px var(--accent-glow);
            }
            50% {
                text-shadow: 0 0 30px var(--accent-glow), 0 0 40px var(--accent-glow);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mwp-section-title {
                font-size: 2rem;
            }

            .mwp-section-subtitle {
                font-size: 1rem;
            }

            .mwp-service-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .mwp-service-card {
                height: 300px;
                padding: 32px 24px;
            }

            .mwp-service-image-container {
                width: 100px;
                height: 100px;
            }

            .mwp-service-name {
                font-size: 1.25rem;
            }

            .mwp-service-charge {
                font-size: 2rem;
            }
        }

        /* Additional Micro-interactions */
        .mwp-service-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .mwp-service-card:nth-child(1) { animation-delay: 0.1s; }
        .mwp-service-card:nth-child(2) { animation-delay: 0.2s; }
        .mwp-service-card:nth-child(3) { animation-delay: 0.3s; }
        .mwp-service-card:nth-child(4) { animation-delay: 0.4s; }
        .mwp-service-card:nth-child(5) { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
            from {
                opacity: 0;
                transform: translateY(20px);
            }
        }

        /* Shimmer effect on image border */
        @keyframes shimmer {
            0% {
                background-position: -100% 0;
            }
            100% {
                background-position: 100% 0;
            }
        }

        .mwp-service-card:hover .mwp-service-image-container::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(
                90deg,
                transparent,
                var(--accent),
                transparent
            );
            background-size: 200% 100%;
            animation: shimmer 2s infinite;
            opacity: 0.5;
            z-index: 1;
            border-radius: 16px;
        }
  
/* ===== SECTION 5: NO HIDDEN CHARGES TRUST BLOCK ===== */
.mwp-trust-block-section {
    padding: 80px 0;
    background: var(--secondary);
}

.mwp-trust-block {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--dark-bg);
    border: 2px solid var(--light-gray);
    border-radius: 24px;
    padding: 3rem;
}

.mwp-trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mwp-shield-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(196, 255, 57, 0.1);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mwp-shield-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.mwp-trust-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.mwp-trust-subtitle {
    font-size: 1.1rem;
    color: var(--text);
}

.mwp-trust-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mwp-check-item {
    display: flex;
    gap: 1rem;
}

.mwp-check-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 255, 57, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mwp-check-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.mwp-check-content h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.mwp-check-content p {
    color: var(--text);
    font-size: 0.95rem;
}

/* ===== SECTION 6: SETTLEMENT SPEED COMPARISON ===== */
.mwp-settlement-section {
    padding: 80px 0;
    background: var(--background);
}

.mwp-settlement-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.mwp-settlement-card {
    background: var(--secondary);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.mwp-settlement-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(196, 255, 57, 0.15);
}

.mwp-settlement-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--secondary) 0%, #1f1f1f 100%);
}

.mwp-instant-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.mwp-settlement-timeline {
    flex-shrink: 0;
}

.mwp-timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(196, 255, 57, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mwp-timeline-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.mwp-timeline-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
    margin: 0 auto;
}

.mwp-settlement-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.mwp-settlement-time {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mwp-settlement-desc {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.mwp-settlement-fee {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mwp-fee-label {
    color: var(--text);
    font-size: 0.9rem;
}

.mwp-fee-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.mwp-settlement-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mwp-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mwp-feature svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.mwp-feature span {
    color: var(--text);
    font-size: 0.95rem;
}

.mwp-settlement-note {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--secondary);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.mwp-settlement-note svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.mwp-settlement-note span {
    color: var(--text);
    font-size: 0.95rem;
}

/* ===== SECTION 7: VOLUME-BASED DISCOUNT ===== */
.mwp-volume-discount-section {
    padding: 80px 0;
    background: var(--secondary);
}

.mwp-discount-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.mwp-discount-header {
    margin-bottom: 3rem;
}

.mwp-discount-visual {
    background: var(--dark-bg);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.mwp-volume-tiers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.mwp-tier-item {
    flex: 1;
    min-width: 200px;
    background: var(--secondary);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.mwp-tier-item:hover {
    transform: scale(1.05);
    border-color: var(--accent);
}

.mwp-tier-best {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--secondary) 0%, #1f1f1f 100%);
}

.mwp-best-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.mwp-tier-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: rgba(196, 255, 57, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mwp-tier-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.mwp-tier-volume {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mwp-tier-rate {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.mwp-tier-label {
    color: var(--text);
    font-size: 0.9rem;
}

.mwp-tier-arrow {
    width: 40px;
    height: 40px;
    background: rgba(196, 255, 57, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mwp-tier-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.mwp-progress-container {
    margin-top: 2rem;
}

.mwp-progress-bar {
    width: 100%;
    height: 12px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.mwp-progress-fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 100%);
    border-radius: 10px;
    animation: mwpProgressFill 2s ease-out;
}

@keyframes mwpProgressFill {
    from { width: 0; }
    to { width: 70%; }
}

.mwp-progress-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text);
    font-size: 0.9rem;
}

.mwp-discount-cta {
    text-align: center;
}

.mwp-discount-cta p {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.mwp-discount-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mwp-discount-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 255, 57, 0.3);
}

/* ===== SECTION 8: ENTERPRISE CUSTOM PRICING CTA ===== */
.mwp-enterprise-cta-section {
    padding: 80px 0;
    background: var(--background);
}

.mwp-enterprise-card {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: 2px solid var(--accent);
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.mwp-enterprise-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.mwp-enterprise-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.mwp-enterprise-desc {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2rem;
    max-width: 500px;
}

.mwp-enterprise-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mwp-ent-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mwp-ent-feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.mwp-ent-feature span {
    color: var(--text);
    font-size: 1rem;
}

.mwp-enterprise-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mwp-enterprise-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(196, 255, 57, 0.4);
}

.mwp-enterprise-btn svg {
    width: 20px;
    height: 20px;
}

.mwp-enterprise-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mwp-enterprise-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;

    /* subtle enterprise polish */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
    border-radius: 16px;
}


/* ===== SECTION 9: LOCAL RETAILER FOCUS BLOCK ===== */
.mwp-retailer-section {
    padding: 80px 0;
    background: var(--secondary);
}

.mwp-retailer-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mwp-retailer-visual {
    flex: 1;
}

.mwp-shop-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mwp-shop-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;

    border-radius: 18px;

    /* premium look */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}


.mwp-retailer-content {
    flex: 1;
}

.mwp-retailer-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.mwp-retailer-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 3rem;
}

.mwp-retailer-benefits {
    margin-bottom: 3rem;
}

.mwp-benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mwp-benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(196, 255, 57, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mwp-benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.mwp-benefit-text h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.mwp-benefit-text p {
    color: var(--text);
}

.mwp-retailer-cta {
    text-align: left;
}

.mwp-retailer-btn {
    padding: 1.25rem 2.5rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.mwp-retailer-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(196, 255, 57, 0.3);
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .mwp-earn-title,
    .mwp-section-title,
    .mwp-retailer-title {
        font-size: 2rem;
    }

    .mwp-enterprise-card {
        flex-direction: column;
        text-align: center;
    }

    .mwp-enterprise-content {
        width: 100%;
    }

    .mwp-enterprise-desc {
        max-width: 100%;
    }

    .mwp-retailer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .mwp-retailer-cta {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .mwp-earn-section
    .mwp-business-size-section,
    .mwp-service-grid-section,
    .mwp-trust-block-section,
    .mwp-settlement-section,
    .mwp-volume-discount-section,
    .mwp-enterprise-cta-section,
    .mwp-retailer-section {
        padding: 60px 0;
    }

    .mwp-earn-title {
        font-size: 1.75rem;
    }

    .mwp-section-title {
        font-size: 1.75rem;
    }

    .mwp-settlement-comparison {
        grid-template-columns: 1fr;
    }

    .mwp-settlement-card {
        flex-direction: column;
    }

    .mwp-timeline-line {
        display: none;
    }

    .mwp-volume-tiers {
        flex-direction: column;
    }

    .mwp-tier-arrow {
        transform: rotate(90deg);
    }

    .mwp-enterprise-card {
        padding: 2.5rem;
    }

    .mwp-enterprise-title {
        font-size: 1.75rem;
    }

    .mwp-enterprise-visual {
        width: 200px;
        height: 200px;
    }

    .mwp-circle-1 {
        width: 150px;
        height: 150px;
    }

    .mwp-circle-2 {
        width: 100px;
        height: 100px;
    }

    .mwp-circle-3 {
        width: 60px;
        height: 60px;
    }
    .mwp-enterprise-img{
        height: 250px;
    }
    .mwp-shop-img{
        height: 300px;
    }
    .mwp-retailer-btn{
            padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .mwp-earn-grid {
        grid-template-columns: 1fr;
    }

    .mwp-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .mwp-size-cards {
        grid-template-columns: 1fr;
    }

    .mwp-size-featured {
        transform: scale(1);
    }

    .mwp-service-grid {
        grid-template-columns: 1fr;
    }

    .mwp-trust-checklist {
        grid-template-columns: 1fr;
    }

    .mwp-trust-block {
        padding: 2rem;
    }
}







.login-section {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* ========================================
   BACKGROUND
   ======================================== */

.auth-background {
    position: fixed;
    inset: 0;
    z-index: 0;
background: linear-gradient(
    135deg,
    rgba(196, 255, 57, 0.15) 0%,
    var(--bg-dark) 45%,
    var(--background) 100%
);


}



/* ========================================
   AUTH CONTAINER
   ======================================== */

.auth-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 480px;
    padding: 20px;
    animation: fadeInUp 0.8s ease;
}

.auth-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.8;
}

/* ========================================
   TABS
   ======================================== */

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    background: var(--input-bg);
    padding: 6px;
    border-radius: 12px;
    position: relative;
}

.auth-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.auth-tab.active {
    color: var(--bg-dark);
}

.auth-tab:hover:not(.active) {
    color: var(--text-primary);
}

.auth-tab-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 10px);
    height: calc(100% - 12px);
    background: var(--accent);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.auth-tabs:has(.auth-tab[data-tab="signup"].active) .auth-tab-indicator {
    left: calc(50% + 2px);
}

/* ========================================
   FORM CONTAINERS
   ======================================== */

.auth-form-container {
    display: none;
    animation: fadeIn 0.5s ease;
}

.auth-form-container.active {
    display: block;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.auth-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ========================================
   FORMS
   ======================================== */

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
    color: var(--accent);
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"] {
    width: 100%;
    padding: 14px 16px 14px 46px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

input::placeholder {
    color: var(--text-secondary);
}

input:focus {
    outline: none;
    background: var(--input-bg-focus);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.toggle-password {
    position: absolute;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--accent);
}

.toggle-password.active i::before {
    content: "\f070"; /* eye-slash icon */
}

/* ========================================
   PASSWORD STRENGTH
   ======================================== */

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: var(--text-secondary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-fill.weak {
    width: 33%;
    background: var(--error);
}

.strength-fill.medium {
    width: 66%;
    background: #f39c12;
}

.strength-fill.strong {
    width: 100%;
    background: var(--success);
}

.strength-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ========================================
   FORM OPTIONS
   ======================================== */

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -8px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.forgot-password,
.terms-link {
    font-size: 0.875rem;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover,
.terms-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* ========================================
   SUBMIT BUTTON
   ======================================== */

.auth-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.auth-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.auth-submit-btn:hover::before {
    transform: translateX(100%);
}

.auth-submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

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

.auth-submit-btn i {
    transition: transform 0.3s ease;
}

.auth-submit-btn:hover i {
    transform: translateX(4px);
}

/* ========================================
   DIVIDER
   ======================================== */

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ========================================
   SOCIAL LOGIN
   ======================================== */

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--input-bg-focus);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 1.1rem;
}

.google-btn:hover {
    border-color: #ea4335;
}

.facebook-btn:hover {
    border-color: #1877f2;
}

/* ========================================
   SWITCH TEXT
   ======================================== */

.auth-switch-text {
    text-align: center;
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.switch-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.switch-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* ========================================
   SUCCESS MESSAGE
   ======================================== */

.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--success);
    border-radius: 12px;
    padding: 20px 24px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.success-content i {
    font-size: 1.5rem;
    color: var(--success);
}

.success-content h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.success-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .auth-logo {
        top: 20px;
        left: 20px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .auth-container {
        padding: 16px;
    }

    .auth-card {
        padding: 28px 24px;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .auth-subtitle {
        font-size: 0.875rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .success-message {
        top: 10px;
        right: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .auth-tabs {
        gap: 4px;
    }

    .auth-tab {
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    input[type="email"],
    input[type="password"],
    input[type="text"],
    input[type="tel"] {
        font-size: 0.875rem;
    }
}

/* ========================================
   INPUT VALIDATION STATES
   ======================================== */

input.error {
    border-color: var(--error);
}

input.error:focus {
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.2);
}

input.success {
    border-color: var(--success);
}

input.success:focus {
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

.error-message {
    font-size: 0.75rem;
    color: var(--error);
    margin-top: 4px;
    display: none;
}

.error-message.show {
    display: block;
}











/* ========================================
   MARWADIPAY - POLICY PAGES STYLES
   All classes uniquely prefixed to avoid conflicts
   ======================================== */

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

:root {
    --bg-dark: #0a0e1a;
    --bg-darker: #070a13;
    --bg-card: #0f1420;
    --bg-card-hover: #151b2b;
    --accent: #c4ff39;
    --accent-hover: #d4ff59;
    --accent-glow: rgba(196, 255, 57, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #8b92a7;
    --text-muted: #5a6174;
    --border: #1e2433;
    --border-hover: #2a3448;
    --success: #2ecc71;
    --error: #ff4757;
    --warning: #f39c12;
    --info: #3498db;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   TERMS OF USE STYLES
   ======================================== */

.terms-container,
.privacy-container,
.refund-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Sections */
.terms-hero,
.privacy-hero,
.refund-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(196, 255, 57, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
}

.terms-hero-icon,
.privacy-hero-icon,
.refund-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    font-size: 2rem;
    color: var(--accent);
}

.terms-title,
.privacy-title,
.refund-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #8b92a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-subtitle,
.privacy-subtitle,
.refund-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Quick Navigation */
.terms-quick-nav-section,
.privacy-quick-nav-section,
.refund-quick-nav-section {
    padding: 40px 0;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border);
}

.terms-quick-nav h3,
.privacy-quick-nav h3,
.refund-quick-nav h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.terms-nav-links,
.privacy-nav-links,
.refund-nav-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.terms-nav-links a,
.privacy-nav-links a,
.refund-nav-links a {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.terms-nav-links a:hover,
.privacy-nav-links a:hover,
.refund-nav-links a:hover,
.terms-nav-links a.active,
.privacy-nav-links a.active,
.refund-nav-links a.active {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Content Sections */
.terms-content,
.privacy-content,
.refund-content {
    padding: 60px 0 100px;
}

.terms-content .terms-container,
.privacy-content .privacy-container,
.refund-content .refund-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.terms-content-wrapper,
.privacy-content-wrapper,
.refund-content-wrapper {
    max-width: 900px;
}

/* Content Blocks */
.terms-content-block,
.privacy-content-block,
.refund-content-block {
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease;
}

.terms-intro-block,
.privacy-intro-block,
.refund-intro-block {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 60px;
}

.terms-block-icon,
.privacy-block-icon,
.refund-block-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 12px;
    font-size: 1.75rem;
    color: var(--accent);
    flex-shrink: 0;
}

.terms-block-content h2,
.privacy-block-content h2,
.refund-block-content h2 {
    margin-bottom: 12px;
}

.terms-section-number,
.privacy-section-number,
.refund-section-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.terms-content-block h2,
.privacy-content-block h2,
.refund-content-block h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.terms-content-block h4,
.privacy-content-block h4,
.refund-content-block h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.terms-content-block p,
.privacy-content-block p,
.refund-content-block p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Policy Lists */
.terms-policy-list,
.privacy-policy-list,
.refund-policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-policy-list li,
.privacy-policy-list li,
.refund-policy-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.terms-policy-list li::before,
.privacy-policy-list li::before,
.refund-policy-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.terms-policy-list li strong,
.privacy-policy-list li strong,
.refund-policy-list li strong {
    color: var(--text-primary);
}

/* Highlight Boxes */
.terms-highlight-box,
.privacy-highlight-box,
.refund-highlight-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(196, 255, 57, 0.05);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    margin: 24px 0;
}

.terms-highlight-box i,
.privacy-highlight-box i,
.refund-highlight-box i {
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.terms-highlight-box.terms-info,
.privacy-highlight-box.privacy-info,
.refund-highlight-box.refund-info {
    background: rgba(52, 152, 219, 0.05);
    border-left-color: var(--info);
}

.terms-highlight-box.terms-info i,
.privacy-highlight-box.privacy-info i,
.refund-highlight-box.refund-info i {
    color: var(--info);
}

/* Info Boxes */
.terms-info-box,
.privacy-info-box,
.refund-info-box {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 24px 0;
}

.terms-info-box h4,
.privacy-info-box h4,
.refund-info-box h4 {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-info-box i,
.privacy-info-box i,
.refund-info-box i {
    color: var(--accent);
}

.terms-info-box a,
.privacy-info-box a,
.refund-info-box a {
    color: var(--accent);
    text-decoration: none;
}

.terms-info-box a:hover,
.privacy-info-box a:hover,
.refund-info-box a:hover {
    text-decoration: underline;
}

/* Warning Boxes */
.terms-warning-box,
.privacy-warning-box,
.refund-warning-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 71, 87, 0.05);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 12px;
    margin: 24px 0;
}

.terms-warning-box i,
.privacy-warning-box i,
.refund-warning-box i {
    color: var(--error);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.terms-warning-box.terms-info,
.privacy-warning-box.privacy-info,
.refund-warning-box.refund-info {
    background: rgba(52, 152, 219, 0.05);
    border-color: rgba(52, 152, 219, 0.2);
}

.terms-warning-box.terms-info i,
.privacy-warning-box.privacy-info i,
.refund-warning-box.refund-info i {
    color: var(--info);
}

/* Service Grids */
.terms-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.terms-service-item {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.terms-service-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.terms-service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.terms-service-item h4 {
    margin-bottom: 8px;
}

.terms-service-item p {
    font-size: 0.9rem;
    margin: 0;
}

.terms-note-text,
.privacy-note-text,
.refund-note-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
}

.terms-highlight-text,
.privacy-highlight-text,
.refund-highlight-text {
    color: var(--accent);
    font-weight: 600;
}

/* Privacy Specific Styles */
.privacy-info-category {
    margin: 24px 0;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.privacy-info-category h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--accent);
}

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

.privacy-usage-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.privacy-usage-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.privacy-usage-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 10px;
    margin-bottom: 16px;
}

.privacy-usage-icon i {
    color: var(--accent);
    font-size: 1.5rem;
}

.privacy-usage-item h4 {
    margin-bottom: 8px;
}

.privacy-usage-item p {
    font-size: 0.95rem;
    margin: 0;
}

.privacy-security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.privacy-security-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.privacy-security-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.privacy-security-item h4 {
    margin-bottom: 8px;
}

.privacy-security-item p {
    font-size: 0.9rem;
    margin: 0;
}

.privacy-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.privacy-right-item {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.privacy-right-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.privacy-right-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.privacy-right-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.privacy-right-item p {
    font-size: 0.875rem;
    margin: 0;
}

.privacy-cookie-types {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.privacy-cookie-type {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.privacy-cookie-type h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.privacy-cookie-type i {
    color: var(--accent);
}

.privacy-cookie-type p {
    margin: 0;
    font-size: 0.95rem;
}

/* Refund Specific Styles */
.refund-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.refund-overview-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.refund-overview-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.refund-overview-item h4 {
    margin-bottom: 8px;
}

.refund-overview-item p {
    font-size: 0.9rem;
    margin: 0;
}

.refund-eligibility-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 30px 0;
}

.refund-eligible-item {
    padding: 24px;
    border-radius: 12px;
    border: 2px solid;
}

.refund-eligible-item.refund-success {
    background: rgba(46, 204, 113, 0.05);
    border-color: rgba(46, 204, 113, 0.3);
}

.refund-eligible-item.refund-error {
    background: rgba(255, 71, 87, 0.05);
    border-color: rgba(255, 71, 87, 0.3);
}

.refund-eligible-item > i {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: block;
}

.refund-eligible-item.refund-success > i {
    color: var(--success);
}

.refund-eligible-item.refund-error > i {
    color: var(--error);
}

.refund-eligible-item h4 {
    margin-bottom: 16px;
}

.refund-process-steps {
    margin: 30px 0;
}

.refund-step-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    margin-bottom: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.refund-step-item:hover {
    border-color: var(--accent);
}

.refund-step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    flex-shrink: 0;
}

.refund-step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 1.5rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.refund-step-content h4 {
    margin-bottom: 8px;
}

.refund-step-content p {
    margin: 0;
    font-size: 0.95rem;
}

.refund-timeline-table {
    margin: 30px 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.refund-timeline-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-darker);
    font-weight: 600;
    color: var(--text-primary);
}

.refund-timeline-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}

.refund-timeline-row > div:first-child {
    display: flex;
    flex-direction: column;
}

.refund-timeline-row strong {
    color: var(--text-primary);
    margin-bottom: 4px;
}

.refund-timeline-row span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.refund-service-card {
    margin: 24px 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.refund-service-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.refund-service-header h4 {
    margin: 0;
}

.refund-service-card .refund-policy-list {
    padding: 24px;
    margin: 0;
}

/* Contact Sections */
.terms-contact-block,
.privacy-contact-block,
.refund-contact-block {
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
}

.terms-contact-header,
.privacy-contact-header,
.refund-contact-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.terms-contact-header i,
.privacy-contact-header i,
.refund-contact-header i {
    font-size: 2rem;
    color: var(--accent);
}

.terms-contact-header h2,
.privacy-contact-header h2,
.refund-contact-header h2 {
    margin: 0;
}

.terms-contact-grid,
.privacy-contact-grid,
.refund-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 24px;
}

.terms-contact-item,
.privacy-contact-item,
.refund-contact-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.terms-contact-item i,
.privacy-contact-item i,
.refund-contact-item i {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.terms-contact-item h4,
.privacy-contact-item h4,
.refund-contact-item h4 {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.terms-contact-item a,
.privacy-contact-item a,
.refund-contact-item a {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.terms-contact-item a:hover,
.privacy-contact-item a:hover,
.refund-contact-item a:hover {
    color: var(--accent);
}

.terms-support-hours,
.privacy-support-hours,
.refund-support-hours {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.terms-support-hours i,
.privacy-support-hours i,
.refund-support-hours i {
    color: var(--accent);
    font-size: 1.25rem;
}

.terms-support-hours p,
.privacy-support-hours p,
.refund-support-hours p {
    margin: 0;
    font-size: 0.95rem;
}

/* Sidebars */
.terms-sidebar,
.privacy-sidebar,
.refund-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.terms-sidebar-card,
.privacy-sidebar-card,
.refund-sidebar-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 24px;
}

.terms-sidebar-card h3,
.privacy-sidebar-card h3,
.refund-sidebar-card h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.terms-sidebar-link,
.privacy-sidebar-link,
.refund-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.terms-sidebar-link:hover,
.privacy-sidebar-link:hover,
.refund-sidebar-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateX(4px);
}

.terms-sidebar-link i:first-child,
.privacy-sidebar-link i:first-child,
.refund-sidebar-link i:first-child {
    color: var(--accent);
}

.terms-sidebar-link i:last-child,
.privacy-sidebar-link i:last-child,
.refund-sidebar-link i:last-child {
    margin-left: auto;
    font-size: 0.875rem;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .terms-content .terms-container,
    .privacy-content .privacy-container,
    .refund-content .refund-container {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .terms-content .terms-container,
    .privacy-content .privacy-container,
    .refund-content .refund-container {
        grid-template-columns: 1fr;
    }

    .terms-sidebar,
    .privacy-sidebar,
    .refund-sidebar {
        position: static;
    }

    .terms-title,
    .privacy-title,
    .refund-title {
        font-size: 2.5rem;
    }

    .terms-nav-links,
    .privacy-nav-links,
    .refund-nav-links {
        justify-content: center;
    }

    .refund-timeline-header,
    .refund-timeline-row {
        grid-template-columns: 1fr;
    }

    .refund-timeline-header div:not(:first-child),
    .refund-timeline-row > div:not(:first-child) {
        padding-left: 24px;
    }
}

@media (max-width: 768px) {
    .terms-hero,
    .privacy-hero,
    .refund-hero {
        padding: 120px 0 40px;
    }

    .terms-title,
    .privacy-title,
    .refund-title {
        font-size: 2rem;
    }

    .terms-subtitle,
    .privacy-subtitle,
    .refund-subtitle {
        font-size: 1rem;
    }

    .terms-content-block h2,
    .privacy-content-block h2,
    .refund-content-block h2 {
        font-size: 1.5rem;
    }

    .terms-intro-block,
    .privacy-intro-block,
    .refund-intro-block {
        flex-direction: column;
        padding: 24px;
    }

    .terms-service-grid,
    .privacy-usage-grid,
    .privacy-security-features,
    .privacy-rights-grid,
    .refund-overview-grid {
        grid-template-columns: 1fr;
    }

    .terms-contact-grid,
    .privacy-contact-grid,
    .refund-contact-grid {
        grid-template-columns: 1fr;
    }

    .refund-step-item {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .terms-title,
    .privacy-title,
    .refund-title {
        font-size: 1.75rem;
    }

    .terms-quick-nav-section,
    .privacy-quick-nav-section,
    .refund-quick-nav-section {
        padding: 24px 0;
    }

    .terms-nav-links,
    .privacy-nav-links,
    .refund-nav-links {
        flex-direction: column;
    }

    .terms-nav-links a,
    .privacy-nav-links a,
    .refund-nav-links a {
        width: 100%;
        text-align: center;
    }

    .terms-content-block,
    .privacy-content-block,
    .refund-content-block {
        margin-bottom: 40px;
    }

    .terms-section-number,
    .privacy-section-number,
    .refund-section-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--bg-dark);
}