body {
    font-family: 'Inter', sans-serif;
    color: #111;
    background-color: #fff;
}

.bg-light-gray {
    background-color: #f5f5f7;
}

.neon-green-badge {
    background-color: #c7fb55;
    color: #000;
    padding: 3px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.try-free-btn {
    background: linear-gradient(to bottom, #1e1e1e, #000000);
    border-radius: 9999px;
    color: white;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
}

.plus-icon {
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
}

.grid-icon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
    width: 20px;
    height: 20px;
}

.grid-cell {
    background-color: #eee;
    border-radius: 1px;
}

.service-card {
    background-color: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 110px;
    height: 110px;
    margin: 0 8px;
    position: relative;
}

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

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.api-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 16px;
    border-radius: 20px;
    background-color: transparent;
    font-weight: 500;
    color: #333;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.get-started-btn {
    background-color: #000;
    color: white;
    border-radius: 9999px;
    padding: 10px 20px;
    font-weight: 300;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    font-size: 14px;
    color: #555;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    width: 100px;
}

.feature-icon {
    background-color: white;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: black;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar {
    background-color: #f5f5f5;
    border-radius: 999px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    position: relative;
    margin: 0 auto 30px;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

/* Menu toggle button styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 100;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.bar {
    height: 2px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Close icon styles */
.close-icon {
    display: none;
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 101;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.close-icon::before {
    transform: rotate(45deg);
}

.close-icon::after {
    transform: rotate(-45deg);
}

.close-icon.active {
    display: block;
}

/* Active state for menu toggle */
.menu-toggle.active {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    position: absolute;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(8px) rotate(-45deg);
    position: absolute;
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-20px);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: -40px; /* Added to move links up */
}

.mobile-menu-link {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.mobile-menu-link:hover::after {
    width: 100%;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 60px; /* Increased from 40px to 60px to move buttons up */
    display: flex;
    gap: 16px;
}

/* Responsive styles */
@media (max-width: 1023px) {
    .menu-toggle {
        display: flex;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .login-button {
        display: none;
    }
    
    .cart-icon {
        margin-right: 0;
    }
    
    .mx-14 {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .feature-box-container {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .feature-box {
        width: 80px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 639px) {
    .mx-14 {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .rounded-40px {
        border-radius: 24px;
    }
    
    .feature-box-container {
        gap: 15px;
    }
    
    .feature-box {
        width: 70px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
}

.mobile-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-close-btn:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
}

.mobile-close-btn svg {
    stroke: #000;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover svg {
    stroke: #333;
}