/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'SolaimanLipi', 'Kalpurush', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-light: #FF3366;
    --primary-dark: #FF6699;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-light: '#11181C';
    --text-dark: '#ECEDEE';
    --bg-light: '#fff';
    --bg-dark: '#151718';
    --icon-light: '#687076';
    --icon-dark: '#9BA1A6';
    --border-radius: 12px;
    --box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #FF3366 0%, #FF6699 100%);
    --gradient-dark: linear-gradient(135deg, #151718 0%, #1a1d1e 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    color: #11181C;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
    transition: var(--transition);
}

body.dark-mode {
    color: #ECEDEE;
    background: #151718;
}

.bangla-text {
    font-family: 'SolaimanLipi', 'Kalpurush', 'Segoe UI', sans-serif;
    line-height: 1.8;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.section-title p {
    color: #687076;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.dark-mode .section-title p {
    color: #9BA1A6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 51, 102, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.btn-secondary:hover {
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
}

.dark-mode .btn-outline {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.dark-mode header {
    background: rgba(21, 23, 24, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #11181C;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.dark-mode .nav-links a {
    color: #ECEDEE;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.dark-mode .nav-links a:hover {
    color: var(--primary-dark);
}

.theme-toggle {
    background: none;
    border: none;
    color: #687076;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: rgba(255, 51, 102, 0.1);
    color: var(--primary-light);
}

.dark-mode .theme-toggle {
    color: #9BA1A6;
}

.dark-mode .theme-toggle:hover {
    background: rgba(255, 102, 153, 0.1);
    color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #11181C;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.dark-mode .mobile-menu-btn {
    color: #ECEDEE;
}

.mobile-menu-btn:hover {
    background: rgba(255, 51, 102, 0.1);
}

/* Mobile menu active state */
@media (max-width: 768px) {
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        gap: 10px;
        animation: slideDown 0.3s ease-out;
    }

    .dark-mode .nav-links.mobile-active {
        background: rgba(21, 23, 24, 0.98);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff 0%, #fff5f7 100%);
    padding: 180px 0 120px;
    overflow: hidden;
    position: relative;
}

.dark-mode .hero {
    background: var(--gradient-dark);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.1) 0%, rgba(255, 102, 153, 0.05) 50%, transparent 70%);
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #11181C 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dark-mode .hero-text h1 {
    background: linear-gradient(135deg, #ECEDEE 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    font-size: 1.3rem;
    color: #687076;
    margin-bottom: 36px;
    max-width: 600px;
}

.dark-mode .hero-text p {
    color: #9BA1A6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-item {
    position: relative;
    padding-left: 20px;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.stat-item h3 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    color: #687076;
    font-size: 1rem;
}

.dark-mode .stat-item p {
    color: #9BA1A6;
}

.hero-image {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
    border: 3px solid transparent;
    background: linear-gradient(45deg, var(--primary-light), var(--primary-dark)) border-box;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Problem Section */
.problem {
    background: #fff5f7;
}

.dark-mode .problem {
    background: #1a1d1e;
}

.problem-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.problem-image {
    flex: 1;
    position: relative;
}

.problem-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transform: translateZ(0);
    transition: var(--transition);
}

.problem-image img:hover {
    transform: translateZ(20px);
}

.problem-content {
    flex: 1;
}

.problem-content h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #11181C 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dark-mode .problem-content h3 {
    background: linear-gradient(135deg, #ECEDEE 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.problem-list {
    list-style: none;
    margin-top: 36px;
}

.problem-list li {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-left: 4px solid #FF3366;
}

.dark-mode .problem-list li {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #FF6699;
}

.problem-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow);
}

.problem-list i {
    color: #FF3366;
    margin-right: 20px;
    margin-top: 5px;
    font-size: 1.4rem;
}

.dark-mode .problem-list i {
    color: #FF6699;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 36px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.dark-mode .feature-card {
    background: #1a1d1e;
    border: 1px solid rgba(255, 102, 153, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1) 0%, rgba(255, 102, 153, 0.1) 100%);
    color: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.2rem;
    transition: var(--transition);
}

.dark-mode .feature-icon {
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2) 0%, rgba(255, 102, 153, 0.2) 100%);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
}

.feature-card h3 {
    margin-bottom: 20px;
    color: #11181C;
    font-size: 1.5rem;
}

.dark-mode .feature-card h3 {
    color: #ECEDEE;
}

.feature-card p {
    color: #687076;
}

.dark-mode .feature-card p {
    color: #9BA1A6;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
}

.dark-mode .how-it-works {
    background: linear-gradient(135deg, #1a1d1e 0%, #151718 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 100px;
    height: 100px;
    background: white;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--primary-light), var(--primary-dark)) border-box;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    transition: var(--transition);
}

.dark-mode .step-number {
    background: #1a1d1e;
    background: linear-gradient(#1a1d1e, #1a1d1e) padding-box,
        linear-gradient(135deg, var(--primary-dark), var(--primary-light)) border-box;
    color: var(--primary-dark);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
}

.step h3 {
    margin-bottom: 16px;
    color: #11181C;
    font-size: 1.4rem;
}

.dark-mode .step h3 {
    color: #ECEDEE;
}

.step p {
    color: #687076;
    padding: 0 15px;
}

.dark-mode .step p {
    color: #9BA1A6;
}

/* Testimonials */
.testimonials-slider {
    max-width: 900px;
    margin: 60px auto 0;
    overflow: hidden;
    position: relative;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.dark-mode .testimonial-card {
    background: linear-gradient(135deg, rgba(26, 29, 30, 0.9) 0%, rgba(21, 23, 24, 0.95) 100%);
    border: 1px solid rgba(255, 102, 153, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 120px;
    color: var(--primary-light);
    opacity: 0.1;
    font-family: serif;
}

.dark-mode .testimonial-card::before {
    color: var(--primary-dark);
}

.testimonial-text {
    font-size: 1.2rem;
    color: #687076;
    font-style: italic;
    margin-bottom: 36px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.dark-mode .testimonial-text {
    color: #9BA1A6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.author-info h4 {
    color: #11181C;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.dark-mode .author-info h4 {
    color: #ECEDEE;
}

.author-info p {
    color: #687076;
    font-size: 1rem;
}

.dark-mode .author-info p {
    color: #9BA1A6;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.dark-mode .nav-dot {
    background: #4a5568;
}

.nav-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.3);
}

/* Pricing */
.pricing {
    background: #fff5f7;
}

.dark-mode .pricing {
    background: #1a1d1e;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--box-shadow);
    text-align: center;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.dark-mode .pricing-card {
    background: #1a1d1e;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-light);
}

.dark-mode .pricing-card:hover {
    border-color: var(--primary-dark);
}

.pricing-card.popular {
    background: linear-gradient(135deg, white 0%, #fff5f7 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.dark-mode .pricing-card.popular {
    background: linear-gradient(135deg, #1a1d1e 0%, #2a1d24 100%);
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: #ddd;
}

.popular-badge {
    position: absolute;
    top: 30px;
    right: -45px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #11181C;
}

.dark-mode .pricing-card h3 {
    color: #ECEDEE;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.price-period {
    color: #687076;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.dark-mode .price-period {
    color: #9BA1A6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 50px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #687076;
}

.dark-mode .pricing-features li {
    color: #9BA1A6;
}

.pricing-features i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 50px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta .btn {
    background: white;
    color: var(--primary-light);
    font-size: 1.2rem;
    padding: 20px 50px;
    position: relative;
    z-index: 1;
}

.cta .btn:hover {
    background: #f1f5f9;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: #11181C;
    color: white;
    padding: 100px 0 40px;
    position: relative;
}

.dark-mode footer {
    background: #0a0c0d;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: white;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.9rem;
    opacity: 0.7;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 15px;
    color: var(--primary-light);
    margin-top: 5px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .problem-container {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .cta h2 {
        font-size: 2.3rem;
    }

    .cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .stat-item {
        padding-left: 15px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .cta {
        padding: 80px 0;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

/* Animation for elements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--primary-light);
}

.dark-mode .faq-item {
    background: #1a1d1e;
    border-left-color: var(--primary-dark);
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.faq-question i {
    font-size: 1.8rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.dark-mode .faq-question i {
    color: var(--primary-dark);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #11181C;
    margin: 0;
}

.dark-mode .faq-question h3 {
    color: #ECEDEE;
}

.faq-answer {
    color: #687076;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    padding-left: 50px;
}

.dark-mode .faq-answer {
    color: #9BA1A6;
}

/* App Screenshots Gallery */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 20px;
}

.screenshot-item {
    text-align: center;
}

.screenshot-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    background: linear-gradient(135deg, #f3f4f6, #ffffff);
    padding: 8px;
    cursor: pointer;
}

.dark-mode .screenshot-frame {
    background: linear-gradient(135deg, #1a1d1e, #252829);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.screenshot-frame::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 10;
}

.dark-mode .screenshot-frame::before {
    background: rgba(255, 255, 255, 0.1);
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    transition: var(--transition);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.9), rgba(255, 102, 153, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 16px;
}

.screenshot-overlay i {
    font-size: 3rem;
    color: white;
    transform: scale(0);
    transition: var(--transition);
}

.screenshot-item:hover .screenshot-frame {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 51, 102, 0.3);
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-item:hover .screenshot-overlay i {
    transform: scale(1);
}

.screenshot-item:hover .screenshot-frame img {
    transform: scale(1.05);
}

.screenshot-caption {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #11181C;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dark-mode .screenshot-caption {
    color: #ECEDEE;
}

/* Responsive for screenshots */
@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 85vh;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(255, 51, 102, 0.4);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    margin-top: 20px;
    font-size: 1.3rem;
    color: white;
    text-align: center;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 51, 102, 0.9);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.5);
}

.lightbox-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--gradient-primary);
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.5);
}

.lightbox-prev {
    margin-right: 20px;
}

.lightbox-next {
    margin-left: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        flex-direction: column;
        width: 95%;
        height: 95vh;
    }

    .lightbox-nav {
        position: absolute;
        bottom: 100px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 20px;
        margin-right: 0;
    }

    .lightbox-next {
        right: 20px;
        margin-left: 0;
    }

    .lightbox-close {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }

    .lightbox-image-container img {
        max-height: 70vh;
        gap: 30px;
    }
}

/* Social Media Community Section */
.social-community {
    background: linear-gradient(135deg, #fff5f7 0%, #fff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.dark-mode .social-community {
    background: linear-gradient(135deg, #1a1d1e 0%, #151718 50%, #1a1d1e 100%);
}

.social-community::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.social-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: fadeInUp calc(0.5s + var(--delay)) ease-out backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dark-mode .social-card {
    background: #1a1d1e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 51, 102, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-card:hover::before {
    opacity: 1;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.dark-mode .social-card:hover {
    border-color: var(--primary-dark);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    transition: all 0.4s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    animation: pulse-facebook 2s infinite;
}

.social-icon.facebook-page {
    background: linear-gradient(135deg, #3b5998, #2d4373);
    animation: pulse-facebook-page 2s infinite 0.2s;
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077b5, #005582);
    animation: pulse-linkedin 2s infinite 0.4s;
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    animation: pulse-youtube 2s infinite 0.6s;
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
    animation: pulse-whatsapp 2s infinite 0.8s;
}

.social-icon.playstore {
    background: linear-gradient(135deg, #34a853, #1e8e3e);
    animation: pulse-playstore 2s infinite 1s;
}

@keyframes pulse-facebook {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(24, 119, 242, 0);
    }
}

@keyframes pulse-facebook-page {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 89, 152, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(59, 89, 152, 0);
    }
}

@keyframes pulse-linkedin {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 119, 181, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(0, 119, 181, 0);
    }
}

@keyframes pulse-youtube {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-playstore {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(52, 168, 83, 0);
    }
}

.social-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #11181C;
}

.dark-mode .social-card h3 {
    color: #ECEDEE;
}

.social-card p {
    color: #687076;
    margin-bottom: 20px;
    line-height: 1.6;
}

.dark-mode .social-card p {
    color: #9BA1A6;
}

.social-link-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.dark-mode .social-link-text {
    color: var(--primary-dark);
}

.social-card:hover .social-link-text {
    gap: 12px;
}

.social-link-text i {
    transition: transform 0.3s ease;
}

.social-card:hover .social-link-text i {
    transform: translateX(5px);
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    position: relative;
    padding: 20px;
}

.stat-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.stat-box h3 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-box p {
    color: #687076;
    font-size: 1rem;
}

.dark-mode .stat-box p {
    color: #9BA1A6;
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .social-card {
        padding: 30px 20px;
    }

    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .community-stats {
        gap: 40px;
    }

    .stat-box h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }

    .community-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.scroll-to-top i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.scroll-to-top:hover i {
    animation: none;
    transform: translateY(-3px);
}

/* Responsive Scroll to Top */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 15px;
        right: 15px;
    }
}