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

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6366f1;
}

.download-btn {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    color: white;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    letter-spacing: 0.01em;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    line-height: 1.6;
    height: 50px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
}

.download-btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.download-btn:hover:after {
    transform: translateX(100%);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.mobile-nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6366f1, #3b82f6, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    color: white;
    border: none;
    padding: 0.3rem 1.1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
    position: relative;
    overflow: hidden;
    line-height: 1.4;
    height: 36px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
}

.btn-primary:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover:after {
    transform: translateX(100%);
}

.btn-primary.white {
    background: white;
    color: #6366f1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary.white:hover {
    background: #f9fafb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
    padding: 0.3rem 1.1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    line-height: 1.4;
    height: 36px;
}

.btn-secondary:hover {
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary.white {
    border-color: white;
    color: white;
}

.btn-secondary.white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

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

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-weight: 500;
}

.stat-icon {
    font-size: 1.2rem;
}

.hero-phone {
    display: flex;
    justify-content: center;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.phone-mockup {
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    padding: 2rem;
    border-radius: 2rem;
    transform: rotate(3deg);
    transition: transform 0.5s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: 0 auto;
}

.phone-mockup:hover {
    transform: rotate(0deg);
}

.phone-screen {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    width: 300px;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-preview {
    background: linear-gradient(135deg, #f3e8ff, #dbeafe);
    height: 100%;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.app-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.app-preview h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.app-preview p {
    color: #6b7280;
}

/* Features Section */
.features {
    padding: 80px 0;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e8ff, #dbeafe);
}

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

.screenshot-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.screenshot-mockup {
    background: linear-gradient(135deg, #f3e8ff, #dbeafe);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mockup-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.screenshot-card:hover .mockup-icon {
    transform: scale(1.1);
}

.mockup-content {
    width: 80%;
    height: 80px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.mockup-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.mockup-line.long {
    width: 75%;
}

.mockup-line.short {
    width: 50%;
}

.screenshot-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.screenshot-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, #6366f1, #3b82f6, #4f46e5);
    color: white;
    text-align: center;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.btn-icon {
    font-size: 0.9rem;
    display: inline-block;
    vertical-align: middle;
}

.download-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.download-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.download-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-stat {
    text-align: center;
}

.download-stat .stat-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.download-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-main {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #a855f7;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary,
    .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.25rem 1.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .stat {
        justify-content: center;
    }

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

    .feature-card {
        padding: 2rem;
    }

    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .download-stats {
        gap: 2rem;
        flex-direction: column;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .download-buttons .btn-primary,
    .download-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .phone-screen {
        width: 250px;
        height: 350px;
    }

    .phone-mockup {
        padding: 1.5rem;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section-description {
        font-size: 1.1rem;
    }

    .download-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .download-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        margin-bottom: 2rem;
    }

    .stat {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary,
    .download-btn {
        font-size: 0.85rem;
        padding: 0.2rem 1rem;
        max-width: 250px;
    }

    .download-btn {
        height: 34px;
        font-size: 0.8rem;
        padding: 0.25rem 0.9rem;
    }

    .features,
    .screenshots,
    .testimonials,
    .download {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .phone-screen {
        width: 200px;
        height: 280px;
    }

    .phone-mockup {
        padding: 1rem;
    }

    .app-icon {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }

    .app-preview h3 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .app-preview p {
        font-size: 0.9rem;
    }

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

    .download-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .download-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .download-stats {
        margin-bottom: 2rem;
    }

    .download-stat .stat-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .download-buttons {
        margin-bottom: 1.5rem;
        max-width: 250px;
    }

    .download-note {
        font-size: 0.8rem;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        margin-bottom: 2rem;
    }

    .footer-main {
        margin-bottom: 2rem;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        font-size: 1.3rem;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-column a {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 12vw, 2.5rem);
    }

    .phone-screen {
        width: 180px;
        height: 250px;
    }

    .phone-mockup {
        padding: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .feature-card,
    .testimonial-card {
        padding: 1.2rem;
    }

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

/* Large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: clamp(4rem, 8vw, 7rem);
    }

    .section-title {
        font-size: clamp(3rem, 5vw, 4rem);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .screenshots-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .phone-screen {
        width: 350px;
        height: 450px;
    }

    .phone-mockup {
        padding: 2.5rem;
    }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .features,
    .screenshots,
    .testimonials,
    .download {
        padding: 100px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse-animate {
    animation: pulse-download 2s infinite;
}

@keyframes pulse-download {
    0% {
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
    }
    50% {
        box-shadow: 0 4px 25px rgba(99, 102, 241, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
    }
}